/* =========================================
   CSS Variables & Base Styles
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(20, 20, 30, 0.8);
    --accent-green: #00ff88;
    --accent-blue: #00d4ff;
    --accent-purple: #a855f7;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #a855f7 0%, #00d4ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   Snap Scroll Container (Apple-style)
   ========================================= */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.snap-section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 20px;
}

/* =========================================
   Navigation Menu
   ========================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
}

.nav.visible {
    opacity: 1;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--accent-green);
}

.nav a:hover::after {
    width: 100%;
}

/* =========================================
   Section Indicator Dots
   ========================================= */
.section-indicators {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section-indicators.visible {
    opacity: 1;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

/* =========================================
   Terminal Styles
   ========================================= */
.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.terminal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.terminal-wrapper {
    position: relative;
    width: 700px;
    max-width: 90%;
}

.terminal {
    width: 100%;
    background: #1a1a24;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 255, 136, 0.1);
}

/* Click indicator - Slanted text style */
.click-indicator {
    display: none;
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 1001;
    transform: rotate(-10deg);
    animation: float-hint 2s ease-in-out infinite;
}

.click-indicator.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.indicator-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    white-space: nowrap;
}

.indicator-icon {
    font-size: 32px;
    margin-right: 20px;
}

.terminal-header {
    background: linear-gradient(180deg, #2a2a36 0%, #222230 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: default;
}

.terminal-btn.close {
    background: #ff5f57;
}

.terminal-btn.minimize {
    background: #ffbd2e;
}

.terminal-btn.maximize {
    background: #28c840;
}

.terminal-title {
    flex: 1;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
    margin-right: 60px;
}

.terminal-body {
    padding: 20px;
    height: 350px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.03) 2px,
            rgba(0, 255, 136, 0.03) 4px);
}

.terminal-line {
    margin-bottom: 6px;
    opacity: 0;
    animation: typeLine 0.1s forwards;
}

.terminal-line.visible {
    opacity: 1;
}

.terminal-prompt {
    color: var(--accent-green);
}

.terminal-path {
    color: var(--accent-blue);
}

.terminal-command {
    color: var(--text-primary);
}

.terminal-output {
    color: var(--text-secondary);
}

.terminal-success {
    color: #28c840;
}

.terminal-warning {
    color: #ffbd2e;
}

.terminal-error {
    color: #ff5f57;
}

.terminal-ascii {
    color: var(--accent-blue);
}

.terminal-info {
    color: var(--accent-green);
    font-weight: 500;
}

.terminal-label {
    color: var(--accent-blue);
}

.terminal-dir {
    color: var(--accent-blue);
    font-weight: 500;
}

.terminal-file {
    color: var(--text-secondary);
}

/* Neofetch styling */
.arch {
    color: #1793d1;
}

.neo-user {
    color: #1793d1;
    font-weight: bold;
}

.neo-label {
    color: #1793d1;
    font-weight: bold;
}

/* Terminal launch button */
.terminal-launch-btn {
    display: none;
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 255, 136, 0.05);
    border: none;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.terminal-launch-btn:hover {
    background: rgba(0, 255, 136, 0.1);
}

.terminal-launch-btn.visible {
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.launch-prompt {
    color: var(--accent-green);
}

.launch-path {
    color: var(--accent-blue);
}

@keyframes pulse {

    0%,
    100% {
        background: rgba(0, 255, 136, 0.05);
    }

    50% {
        background: rgba(0, 255, 136, 0.12);
    }
}

/* Click indicator - Stylized */
/* Click indicator - Stylized */
.click-indicator {
    display: none;
    position: absolute;
    bottom: -60px;
    right: 20px;
    z-index: 1001;
    transform: rotate(-5deg);
    animation: float-hint 2s ease-in-out infinite;
    pointer-events: none;
    color: #ffffff;
    /* Sets currentColor for SVG */
}

.click-indicator.visible {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.indicator-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.indicator-icon {
    width: 32px;
    height: 32px;
    margin-top: 4px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    color: var(--accent-green);
    /* SVG color */
}

@keyframes float-hint {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--accent-green);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@keyframes typeLine {
    to {
        opacity: 1;
    }
}

/* =========================================
   Main Content
   ========================================= */
.main-content {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.main-content.visible {
    opacity: 1;
}

/* Background Stars */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* =========================================
   Container
   ========================================= */
.container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

/* =========================================
   Scroll Indicator
   ========================================= */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-hint:hover {
    color: var(--accent-green);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
    transition: border-color 0.3s ease;
}

.scroll-hint:hover .scroll-mouse {
    border-color: var(--accent-green);
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: bounceArrows 1.5s ease-in-out infinite;
}

.scroll-arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    opacity: 0.5;
}

.scroll-hint:hover .scroll-arrows span {
    border-color: var(--accent-green);
}

.scroll-arrows span:nth-child(1) {
    animation: fadeArrow 1.5s ease-in-out infinite;
}

.scroll-arrows span:nth-child(2) {
    animation: fadeArrow 1.5s ease-in-out 0.2s infinite;
}

@keyframes bounceArrows {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@keyframes fadeArrow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    background:
        radial-gradient(ellipse at top, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        var(--bg-primary);
    text-align: center;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-green);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* =========================================
   Skills Section
   ========================================= */
.skills {
    background:
        radial-gradient(ellipse at bottom left, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        var(--bg-primary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.section-title span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.skill-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.skill-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.skill-percent {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-out;
}

/* =========================================
   Company Section
   ========================================= */
.company {
    background:
        radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        var(--bg-primary);
}

.company-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 50px;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.company-logo {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.company-tagline {
    font-size: 1.4rem;
    color: var(--accent-blue);
    margin-bottom: 28px;
    font-weight: 500;
}

.company-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.privacy-feature {
    padding: 24px 20px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.privacy-feature:hover {
    transform: translateY(-3px);
}

.privacy-feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.privacy-feature-title {
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 8px;
    font-size: 1rem;
}

.privacy-feature-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   Projects Section
   ========================================= */
.projects {
    background:
        radial-gradient(ellipse at top right, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        var(--bg-primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 255, 136, 0.1);
}

.project-image {
    height: 160px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.project-content {
    padding: 28px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-weight: 500;
    transition: gap 0.3s ease;
}

.project-card:hover .project-link {
    gap: 12px;
}

/* =========================================
   Footer Section
   ========================================= */
.footer-section {
    min-height: auto;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
}

.footer-section a {
    color: var(--accent-green);
    text-decoration: none;
}

/* =========================================
   Music Player
   ========================================= */
.music-player {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    max-width: 280px;
}

.music-player.visible {
    opacity: 1;
    transform: translateY(0);
}

.player-cover {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.player-vinyl {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #333 30%, #111 60%, #333 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-player.playing .player-vinyl {
    opacity: 1;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    flex-shrink: 0;
}

.player-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--accent-green);
    color: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.player-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-green);
    width: 0%;
    transition: width 0.1s linear;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {
    .nav {
        padding: 14px 16px;
        gap: 20px;
        background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
    }

    .nav a {
        font-size: 0.75rem;
    }

    .section-indicators {
        right: 12px;
        gap: 10px;
    }

    .indicator-dot {
        width: 8px;
        height: 8px;
    }

    .snap-section {
        padding: 50px 16px;
        min-height: 100vh;
        min-height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
    }

    /* Terminal mobile */
    .terminal {
        width: 95%;
        max-width: 95%;
    }

    .terminal-header {
        padding: 10px 12px;
    }

    .terminal-btn {
        width: 10px;
        height: 10px;
    }

    .terminal-title {
        font-size: 10px;
        margin-right: 40px;
    }

    .terminal-body {
        height: 260px;
        font-size: 11px;
        padding: 16px;
    }

    /* Hero mobile */
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: -2px;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .social-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Skills mobile */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-item {
        padding: 18px;
    }

    .skill-name {
        font-size: 0.95rem;
    }

    /* Company mobile */
    .company-card {
        padding: 35px 20px;
        border-radius: 16px;
    }

    .company-logo {
        font-size: 2rem;
    }

    .company-tagline {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .company-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .privacy-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .privacy-feature {
        padding: 18px 16px;
    }

    .privacy-feature-icon {
        font-size: 1.5rem;
    }

    .privacy-feature-title {
        font-size: 0.9rem;
    }

    .privacy-feature-text {
        font-size: 0.8rem;
    }

    /* Projects mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 120px;
        font-size: 2.5rem;
    }

    .project-content {
        padding: 20px;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    /* Scroll hint mobile */
    .scroll-hint {
        bottom: 25px;
    }

    .scroll-mouse {
        width: 20px;
        height: 34px;
    }

    .scroll-hint span:last-child {
        font-size: 0.65rem;
    }

    /* Footer mobile */
    .footer-section {
        padding: 40px 16px;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    /* Music player mobile */
    .music-player {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        padding: 12px;
        gap: 12px;
    }

    .player-cover {
        width: 44px;
        height: 44px;
    }

    .player-title {
        font-size: 0.85rem;
    }

    .player-artist {
        font-size: 0.7rem;
    }

    .player-btn {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .terminal-body {
        font-size: 10px;
        height: 220px;
    }

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 0.7rem;
    }

    .section-indicators {
        right: 8px;
    }

    .indicator-dot {
        width: 6px;
        height: 6px;
    }
}