* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --term-bg: #0b0f14;
    --term-fg: #d6dde5;
    --term-dim: #7d8a99;
    --term-green: #8aff80;
    --term-accent: #1f6feb;
    
    /* Theme colors */
    --bg-primary: #000;
    --bg-secondary: #111;
    --bg-tertiary: #2f3336;
    --text-primary: #fff;
    --text-secondary: #71767b;
    --border-color: #2f3336;
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f9fa;
    --bg-tertiary: #eff3f4;
    --text-primary: #0f1419;
    --text-secondary: #536471;
    --border-color: #ccd6dd;
}

body[data-theme="light"],
[data-theme="light"] body,
html[data-theme="light"] body {
    background-color: #ffffff !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
    color: var(--text-primary);
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Desktop box shadow effect */
@media (min-width: 768px) {
    body {
        background-color: #000;
        padding: 20px;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    [data-theme="light"] body {
        background-color: #ffffff !important;
    }
    
    .container {
        box-shadow: 
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 8px 25px rgba(0, 0, 0, 0.4);
        border-radius: 0;
        overflow: hidden;
    }
    
    .header-banner {
        width: calc(100% + 26px);
        margin: 0 -13px;
    }
}

.terminal {
    width: min(500px, 90vw);
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.05);
    background: linear-gradient(180deg, #0c1117, #0a0e13 60%);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    margin: 10px auto 30px auto;
}

.term-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 12px;
    background: #0f141a;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.tb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tb-dot.red { background: #ff5f56; }
.tb-dot.yellow { background: #ffbd2e; }
.tb-dot.green { background: #27c93f; }

.tb-title {
    margin-left: 6px;
    font-size: 12px;
    color: var(--term-dim);
}

.term-screen {
    background: var(--term-bg);
    color: var(--term-fg);
    height: calc(100% - 35px);
    padding: 12px;
    overflow: auto;
    line-height: 1.45;
    font-size: 14px;
}

.line { white-space: pre-wrap; word-break: break-word; }
.prompt { color: var(--term-green); }
.path { color: #86b6ff; }
.inputline { display: inline; }

#hidden-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 1.1em;
    vertical-align: -0.15em;
    background: var(--term-fg);
    margin-left: 2px;
    animation: blink 1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.terminal-hints {
    text-align: center;
    margin-top: 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.hint-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.help-text {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.8;
}

@media (max-width: 480px) {
    .terminal-hints {
        margin-top: 8px;
    }
    
    .hint-text {
        font-size: 12px;
    }
    
    .help-text {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .terminal {
        width: 95vw;
        margin: 15px auto;
        display: block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .terminal {
        width: 98vw;
        height: 240px;
        margin: 10px auto;
    }
    .term-screen {
        font-size: 13px;
        padding: 10px;
    }
    .term-titlebar {
        padding: 0 10px;
    }
}

@media (max-width: 380px) {
    .terminal {
        height: 220px;
        width: 99vw;
    }
    .term-screen {
        font-size: 12px;
        padding: 8px;
    }
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-primary);
    min-height: 100vh;
    padding: 0 20px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

/* Header Banner */
.header-banner {
    height: 150px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    position: relative;
    overflow: hidden;
    width: calc(100% + 26px);
    margin: 0 -13px;
}

.header-banner img {
    transition: opacity 0.6s ease-in-out;
}

@media (max-width: 767px) {
    .header-banner {
        width: calc(100% + 26px);
        margin: 0 -13px;
    }
}

.newspaper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><rect width="800" height="200" fill="%23f5f5f5"/><text x="50" y="30" font-family="serif" font-size="14" fill="%23333">Boundary-breaking dress</text><text x="50" y="45" font-family="serif" font-size="12" fill="%23666">versus tradition in Nigeria</text><text x="50" y="70" font-family="serif" font-size="10" fill="%23333">MODERN LOVE</text><text x="50" y="85" font-family="serif" font-size="10" fill="%23666">Using TV to escape a health</text><text x="50" y="95" font-family="serif" font-size="10" fill="%23666">scare. BY SOPHIE MACKINTOSH</text><text x="400" y="160" font-family="serif" font-size="32" font-weight="bold" fill="%23333">SundayStyle</text><text x="400" y="180" font-family="serif" font-size="14" fill="%23666">The New York Times</text></svg>');
    opacity: 0.8;
    background-size: cover;
    background-position: center;
}


/* Profile Section */
.profile-section {
    padding: 0 16px;
    position: relative;
}

.profile-avatar {
    width: 134px;
    height: 134px;
    border-radius: 50%;
    border: 4px solid #000;
    margin-top: -67px;
    background: #333;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.profile-avatar.flip {
    animation: flipAvatar 0.3s ease-in-out;
}

@keyframes flipAvatar {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

@media (max-width: 480px) {
    .profile-avatar {
        width: 100px;
        height: 100px;
        margin-top: -50px;
    }
}

.avatar-image {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #444 30%, #222 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #888;
    object-fit: cover;
}

@media (max-width: 480px) {
    .avatar-image {
        font-size: 36px;
    }
}

.profile-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-left: 10px;
}

@media (max-width: 480px) {
    .profile-actions {
        gap: 10px;
        right: 0;
    }
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #536471;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-left: 20px;
}

@media (max-width: 480px) {
    .action-btn {
        width: 32px;
        height: 32px;
        margin-left: 10px;
    }
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.follow-btn {
    background: #1d9bf0;
    border: none;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 480px) {
    .follow-btn {
        padding: 6px 18px;
        font-size: 14px;
    }
}

.follow-btn:hover {
    background: #1a8cd8;
}

.theme-toggle-btn {
    background: none;
    border: 1px solid #536471;
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

[data-theme="light"] .theme-toggle-btn {
    color: white;
    border-color: white;
}

@media (max-width: 480px) {
    .theme-toggle-btn {
        padding: 6px 12px;
        font-size: 14px;
        gap: 4px;
    }
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle-btn .icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Year Collapsible */
.year-collapsible {
    margin: 20px 0 30px 0;
}

@media (max-width: 768px) {
    .year-collapsible {
        margin: 20px -20px 30px -20px;
    }
}

.collapsible-btn {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    transition: all 0.2s;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.collapsible-btn:hover {
    background: var(--bg-tertiary);
}

.arrow {
    transition: transform 0.6s ease-in-out;
}

.collapsible-btn.active .arrow {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 0 24px;
}

.collapsible-content.active {
    max-height: 600px;
    padding: 24px;
}

.year-summary {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

@media (max-width: 768px) {
    .year-summary {
        text-align: justify;
    }
}

.article-link {
    color: #1d9bf0;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.article-link:hover {
    color: #1a8cd8;
}

.memory-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.memory-card:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.memory-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.memory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memory-text {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background 0.2s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.image-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.image-popup.active {
    display: flex;
}

.image-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* GitHub Profile Card */
.github-profile-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.github-profile-card:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.github-profile {
    display: flex;
    gap: 16px;
    align-items: center;
}

.github-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.github-info {
    flex: 1;
}

.github-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.github-username {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.github-bio {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.github-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.github-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-secondary);
}

.profile-loading {
    text-align: center;
    color: var(--text-secondary);
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 480px) {
    .github-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .github-avatar {
        width: 60px;
        height: 60px;
    }
    
    .github-stats {
        justify-content: center;
    }
}

/* Profile Info */
.profile-info {
    margin-top: 12px;
}

.profile-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.social-icon {
    color: var(--text-secondary);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: var(--text-primary);
}

.social-icon svg {
    fill: currentColor;
}

.name {
    font-size: 25px;
    font-weight: 900;
    color: var(--text-primary);
    flex-shrink: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .name {
        font-size: 22px;
        max-width: 50%;
    }
    
    .social-icons {
        gap: 6px;
    }
}

.verified-badge {
    color: #1d9bf0;
    font-size: 20px;
}

@media (max-width: 480px) {
    .verified-badge {
        font-size: 18px;
    }
}

.username {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 12px;
    word-break: break-all;
}

@media (max-width: 480px) {
    .username {
        font-size: 14px;
    }
}

.bio {
    font-size: 15px;
    line-height: 1.3125;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .bio {
        font-size: 14px;
    }
}

.bio-link {
    color: #1d9bf0;
    text-decoration: none;
    word-break: break-all;
}

.bio-link:hover {
    text-decoration: underline;
}

.profile-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #71767b;
    font-size: 15px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .profile-metadata {
        gap: 8px;
        font-size: 14px;
    }
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.metadata-icon {
    width: 16px;
    height: 16px;
    fill: #71767b;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 15px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .stats {
        gap: 15px;
        font-size: 14px;
    }
}

.stat-number {
    font-weight: bold;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-secondary);
}

.followers-avatars {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.follower-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #333;
    border: 1px solid #000;
}

.followers-text {
    color: #71767b;
    font-size: 13px;
    margin-left: 8px;
}

@media (max-width: 480px) {
    .followers-text {
        font-size: 12px;
    }
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin: 0 -20px;
    overflow-x: auto;
}

.nav-tab {
    flex: 1;
    padding: 16px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    background: none;
    border: none;
    white-space: nowrap;
    min-width: 0;
    width: 25%;
}

@media (max-width: 480px) {
    .nav-tab {
        padding: 14px 12px;
        font-size: 14px;
    }
}

.nav-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.nav-tab.active {
    color: var(--text-primary);
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: var(--text-primary);
    border-radius: 2px;
}

@media (max-width: 480px) {
    .nav-tab.active::after {
        width: 40px;
    }
}

/* Tab Content */
.tab-content {
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.tab-content.active {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.empty-state {
    text-align: center;
    padding: 40px 16px;
    color: var(--text-secondary);
}

@media (max-width: 480px) {
    .empty-state {
        padding: 30px 12px;
    }
}

.empty-state h3 {
    font-size: 31px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .empty-state h3 {
        font-size: 26px;
    }
}

.empty-state p {
    font-size: 15px;
    line-height: 1.3125;
}

@media (max-width: 480px) {
    .empty-state p {
        font-size: 14px;
    }
}

/* Welcome Message */
.welcome-message {
    padding: 20px;
    font-size: 18px;
    color: var(--text-primary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.intro-text {
    font-size: 14px;
    color: var(--text-primary);
    margin: 16px -20px 0 -20px;
    text-align: justify;
    line-height: 1.5;
    padding: 0 20px;
}

.intro-separator {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 16px 20px 0 20px;
}

.activities-list {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0 -20px;
    text-align: left;
    line-height: 1.5;
    padding: 0 20px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.activities-grid {
    display: block;
}

@media (min-width: 769px) {
    .activities-grid {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }
    
    .activities-column {
        flex: 1;
    }
}

.section-separator {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 20px -20px;
}

.tech-stack {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0 -20px;
    text-align: left;
    line-height: 1.5;
    padding: 0 20px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.tech-grid {
    display: block;
}

.tech-column {
    display: block;
}

@media (min-width: 769px) {
    .tech-grid {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }
    
    .tech-column {
        flex: 1;
    }
}

.tech-section-title {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tech-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
    margin-left: 4px;
}

.tech-badge.python { background: #3776ab; }
.tech-badge.docker { background: #2496ed; }
.tech-badge.golang { background: #00add8; }
.tech-badge.css { background: #1572b6; }
.tech-badge.html { background: #e34f26; }
.tech-badge.linux { background: #fcc624; color: #000; }
.tech-badge.flask { background: #000000; }
.tech-badge.django { background: #092e20; }
.tech-badge.vscode { background: #007acc; }
.tech-badge.rabbitmq { background: #ff6600; }
.tech-badge.mongodb { background: #47a248; }

.intro-divider {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.wave-emoji {
    font-size: 24px;
    animation: wave 1.5s ease-in-out infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    70%, 100% { transform: rotate(0deg); }
}

@media (max-width: 480px) {
    .welcome-message {
        font-size: 16px;
        padding: 16px;
    }
    .wave-emoji {
        font-size: 20px;
    }
    .subtitle {
        font-size: 10px;
    }
    .intro-text {
        font-size: 13px;
        margin: 16px -19px 0 -19px;
        padding: 0 1px;
    }
    .intro-separator {
        margin: 16px 10px 0 10px;
    }
    .activities-list {
        font-size: 13px;
        margin: 0 -19px;
        padding: 0 1px;
    }
    .tech-stack {
        font-size: 13px;
        margin: 0 -19px;
        padding: 0 1px;
    }
    .tech-badge {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Tweet Section */
.tweets-section {
    width: 100%;
    box-sizing: border-box;
    min-height: 200px;
    padding: 0;
}

@media (max-width: 768px) {
    .tweets-section {
        padding: 0;
    }
}

.pinned-section {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
}

.pinned-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .pinned-header {
        font-size: 12px;
    }
}

.pin-icon {
    width: 16px;
    height: 16px;
    fill: var(--text-secondary);
}

.tweet {
    display: flex;
    gap: 12px;
}

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    flex-shrink: 0;
    overflow: hidden;
}

.tweet-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .tweet {
        flex-direction: row;
        gap: 12px;
    }
    
    .tweet-avatar {
        width: 32px;
        height: 32px;
        display: block;
    }
}

@media (max-width: 480px) {
    .tweet-avatar {
        width: 28px;
        height: 28px;
        display: block;
    }
}

.tweet-content {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .tweet-content {
        width: 100%;
    }
}

.tweet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    width: 100%;
}

.tweet-right {
    display: flex;
    align-items: center;
    gap: 8px;
}



.tweet-username {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .tweet-username {
        font-size: 14px;
    }
}

.tweet-date {
    color: var(--text-secondary);
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .tweet-date {
        font-size: 13px;
    }
}



.delete-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 18px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.delete-btn:hover {
    background: rgba(255, 87, 87, 0.1);
    color: #ff5757;
}

.tweet-action {
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

@media (max-width: 480px) {
    .tweet-action {
        padding: 6px;
    }
}

.tweet-action:hover {
    background: rgba(255, 255, 255, 0.03);
}

.tweet-text {
    font-size: 15px;
    line-height: 1.3125;
    margin-bottom: 12px;
    word-break: break-word;
}

@media (max-width: 768px) {
    .tweet-text {
        font-size: 16px;
        line-height: 1.4;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tweet-text {
        font-size: 15px;
        line-height: 1.4;
        width: 100%;
    }
}

/* Icons */
.icon {
    width: 18.75px;
    height: 18.75px;
    fill: currentColor;
}

@media (max-width: 480px) {
    .icon {
        width: 16px;
        height: 16px;
    }
}

/* Tweet Container */
.tweet-container {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
    background: var(--bg-primary);
    border-radius: 12px;
    margin: 8px 0;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tweet-container:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
}

@media (max-width: 768px) {
    .tweet-container {
        margin: 8px -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 16px 20px;
    }
}

/* Image Placeholder */
.image-placeholder {
    margin-top: 12px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* Blog Post Layout */
.blog-content {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.blog-image {
    flex-shrink: 0;
    width: 200px;
}

.blog-image img {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
}

.blog-text {
    flex: 1;
    min-width: 0;
}

.read-more {
    color: #1d9bf0;
    cursor: pointer;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-content {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .blog-image {
        width: 150px;
        align-self: flex-start;
    }
    
    .blog-image img {
        height: 100px;
    }
}

/* Comments Section */
.comments-section {
    margin-top: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    display: none;
}

.comments-section.active {
    display: block;
}

.toggle-comments {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toggle-comments:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.disqus-container {
    margin-top: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

@media (max-width: 480px) {
    .toggle-comments {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .disqus-container {
        padding: 12px;
        margin-top: 12px;
    }
}

/* Scroll Button */
.scroll-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1d9bf0;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(29, 155, 240, 0.4);
    transition: all 0.3s;
    z-index: 9999;
}

.scroll-btn:hover {
    background: #1a8cd8;
    transform: scale(1.1);
}

.scroll-btn.show {
    display: flex;
}

@media (max-width: 480px) {
    .scroll-btn {
        width: 45px;
        height: 45px;
        right: 15px;
    }
}

/* Experience List */
.experience-list {
    margin: 0 -20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 769px) {
    .experience-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .experience-list {
        margin: 0 -19px;
        padding: 0 1px;
    }
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.spotify-link {
    color: #1db954;
    text-decoration: underline;
    font-weight: 600;
}

.spotify-link:hover {
    text-decoration: underline;
}

.projects-link {
    color: var(--text-primary);
    text-decoration: underline;
    font-size: 14px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    cursor: pointer;
    transition: color 0.2s;
}

.projects-link:hover {
    color: #1d9bf0;
}

.footer {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 -20px;
    text-align: center;
    line-height: 1.5;
    padding: 20px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 480px) {
    .footer {
        margin: 0 -19px;
        padding: 20px 1px;
        font-size: 13px;
        white-space: nowrap;
        text-align: left;
    }
}

.github-profile-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}

.github-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.github-icon {
    font-size: 20px;
}

.github-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
}

.github-username {
    font-size: 14px;
    color: var(--text-secondary);
}

.projects-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px;
    color: var(--text-secondary);
}

.project-card, .blog-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    cursor: pointer;
    transition: none;
}

.project-language {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-style: italic;
}

.project-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.project-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.project-link {
    font-size: 14px;
    color: #1d9bf0;
    font-weight: 500;
    text-align: right;
}

.blog-date {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: right;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.blog-preview {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Company Cards */
.experience-cards {
    margin: 0 -20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 480px) {
    .experience-cards {
        margin: 0 -19px;
        padding: 0 1px;
    }
}

.company-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.company-card:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-secondary);
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-left {
    flex: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.company-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.company-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

@media (max-width: 480px) {
    .company-title {
        font-size: 12px;
    }
}

.card-role {
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: 26px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.card-right {
    flex-shrink: 0;
}

.company-logo {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

/* GitHub Profile Card */
.github-profile-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}

.profile-preloader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 12px;
}

.loading-text {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

.profile-preloader .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--text-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.profile-loading {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.github-profile {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.github-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.github-info {
    flex: 1;
    text-align: justify;
}

.github-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.github-username {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.github-bio {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.github-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
}

.github-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 480px) {
    .github-profile {
        gap: 12px;
    }
    
    .github-avatar {
        align-self: flex-start;
    }
    
    .github-info {
        text-align: justify;
    }
    
    .github-stats {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}