﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

/* Force remove any strikethrough */
body, body *, h1, h2, h3, h4, h5, h6, p, span, div, a, button {
    text-decoration: none !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    position: relative;
    transition: all 0.8s ease;
    min-height: 100vh;
    text-decoration: none !important;
    opacity: 1; /* Make website immediately visible */
}

/* Additional fix for strikethrough issue */
* {
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

/* Mood Selection Popup - COMPLETELY REMOVED */
.mood-popup {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mood-popup.hidden {
    display: none !important;
}

/* Remove all mood popup related styles since we don't need them */

/* Theme Variations */
body.theme-excited {
    --primary-color: #ff4757;
    --secondary-color: #ff6b7a;
    --accent-color: #ff3742;
}

body.theme-curious {
    --primary-color: #3742fa;
    --secondary-color: #5352ed;
    --accent-color: #2f3542;
}

body.theme-focused {
    --primary-color: #2ed573;
    --secondary-color: #7bed9f;
    --accent-color: #1e90ff;
}

body.theme-creative {
    --primary-color: #ff6348;
    --secondary-color: #ff7675;
    --accent-color: #fd79a8;
}

body.theme-peaceful {
    --primary-color: #70a1ff;
    --secondary-color: #5352ed;
    --accent-color: #3742fa;
}

body.theme-adventurous {
    --primary-color: #ffa502;
    --secondary-color: #ff6348;
    --accent-color: #ff4757;
}

body.theme-nostalgic {
    --primary-color: #747d8c;
    --secondary-color: #a4b0be;
    --accent-color: #57606f;
}

body.theme-ambitious {
    --primary-color: #ffd700;
    --secondary-color: #ffb142;
    --accent-color: #ff6348;
}

body.theme-contemplative {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
}

body.theme-energetic {
    --primary-color: #00d2d3;
    --secondary-color: #7bed9f;
    --accent-color: #2ed573;
}

/* Epic Cosmic Scene */
.cosmic-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: radial-gradient(ellipse at center, 
        #0a0a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #0e2954 75%, 
        #000000 100%) !important;
}

/* Deep Space Background */
.deep-space {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starTwinkle 4s ease-in-out infinite alternate;
}

/* Star Field */
.star-field {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: starPulse 3s ease-in-out infinite alternate;
}

.star:nth-child(1) { width: 2px; height: 2px; top: 10%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { width: 1px; height: 1px; top: 20%; left: 30%; animation-delay: 0.5s; }
.star:nth-child(3) { width: 3px; height: 3px; top: 15%; left: 60%; animation-delay: 1s; }
.star:nth-child(4) { width: 2px; height: 2px; top: 40%; left: 20%; animation-delay: 1.5s; }
.star:nth-child(5) { width: 1px; height: 1px; top: 60%; left: 80%; animation-delay: 2s; }
.star:nth-child(6) { width: 2px; height: 2px; top: 80%; left: 40%; animation-delay: 2.5s; }
.star:nth-child(7) { width: 1px; height: 1px; top: 30%; left: 90%; animation-delay: 0.3s; }
.star:nth-child(8) { width: 3px; height: 3px; top: 70%; left: 10%; animation-delay: 0.8s; }
.star:nth-child(9) { width: 2px; height: 2px; top: 50%; left: 50%; animation-delay: 1.3s; }
.star:nth-child(10) { width: 1px; height: 1px; top: 90%; left: 70%; animation-delay: 1.8s; }
.star:nth-child(11) { width: 2px; height: 2px; top: 5%; left: 80%; animation-delay: 0.2s; }
.star:nth-child(12) { width: 1px; height: 1px; top: 25%; left: 15%; animation-delay: 0.7s; }
.star:nth-child(13) { width: 3px; height: 3px; top: 45%; left: 75%; animation-delay: 1.2s; }
.star:nth-child(14) { width: 2px; height: 2px; top: 65%; left: 35%; animation-delay: 1.7s; }
.star:nth-child(15) { width: 1px; height: 1px; top: 85%; left: 85%; animation-delay: 2.2s; }
.star:nth-child(16) { width: 2px; height: 2px; top: 35%; left: 5%; animation-delay: 0.4s; }
.star:nth-child(17) { width: 1px; height: 1px; top: 55%; left: 65%; animation-delay: 0.9s; }
.star:nth-child(18) { width: 3px; height: 3px; top: 75%; left: 25%; animation-delay: 1.4s; }
.star:nth-child(19) { width: 2px; height: 2px; top: 95%; left: 55%; animation-delay: 1.9s; }
.star:nth-child(20) { width: 1px; height: 1px; top: 15%; left: 45%; animation-delay: 2.4s; }

/* Solar System */
.solar-system {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    animation: solarSystemRotation 60s linear infinite;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: -5;
    will-change: transform;
    transform: translateZ(0);
}

/* Sun */
.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #ffeb3b 0%, #ff9800 50%, #ff5722 100%);
    box-shadow: 
        0 0 20px #ffeb3b,
        0 0 40px #ff9800,
        0 0 60px #ff5722;
    animation: sunPulse 3s ease-in-out infinite alternate;
}

.sun-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    animation: sunCorePulse 2s ease-in-out infinite alternate;
}

.sun-corona {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, rgba(255, 235, 59, 0.3) 70%, transparent 80%);
    animation: coronaFlicker 4s ease-in-out infinite;
}

/* Planets */
.planet {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.mercury {
    width: 8px;
    height: 8px;
    background: #8c7853;
    animation: planetOrbit 10s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(60px) rotate(0deg);
}

.venus {
    width: 12px;
    height: 12px;
    background: #ffc649;
    animation: planetOrbit 15s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(80px) rotate(0deg);
}

.earth {
    width: 14px;
    height: 14px;
    background: linear-gradient(45deg, #6b93d6 0%, #4d84c4 50%, #2e7d32 100%);
    animation: planetOrbit 20s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg);
}

.moon {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c0c0c0;
    border-radius: 50%;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: moonOrbit 2s linear infinite;
}

.mars {
    width: 10px;
    height: 10px;
    background: #cd5c5c;
    animation: planetOrbit 25s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg);
}

.jupiter {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #d8ca9d 0%, #fab27b 50%, #c99039 100%);
    animation: planetOrbit 35s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
}

.jupiter-spot {
    position: absolute;
    width: 8px;
    height: 6px;
    background: #8b4513;
    border-radius: 50%;
    top: 40%;
    left: 30%;
    animation: jupiterStormRotation 3s linear infinite;
}

.saturn {
    width: 20px;
    height: 20px;
    background: #fab27b;
    animation: planetOrbit 45s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(180px) rotate(0deg);
}

.saturn-rings {
    position: absolute;
    width: 35px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringsRotation 8s linear infinite;
}

.uranus {
    width: 16px;
    height: 16px;
    background: #4fd0e7;
    animation: planetOrbit 55s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(210px) rotate(0deg);
}

.neptune {
    width: 15px;
    height: 15px;
    background: #4b70dd;
    animation: planetOrbit 65s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(240px) rotate(0deg);
}

/* Asteroid Belt */
.asteroid-belt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: asteroidBeltRotation 30s linear infinite;
}

.asteroid {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #8c7853;
    border-radius: 50%;
}

.asteroid:nth-child(1) { top: 0%; left: 50%; }
.asteroid:nth-child(2) { top: 25%; left: 85%; }
.asteroid:nth-child(3) { top: 75%; left: 85%; }
.asteroid:nth-child(4) { top: 100%; left: 50%; }
.asteroid:nth-child(5) { top: 50%; left: 15%; }

/* Theme-based Black Hole Variations */
body.theme-excited .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(255, 71, 87, 0.2) 20%, rgba(255, 107, 122, 0.3) 25%, 
        rgba(255, 55, 66, 0.4) 35%, rgba(139, 69, 19, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 15s;
}

body.theme-curious .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(55, 66, 250, 0.2) 20%, rgba(83, 82, 237, 0.3) 25%, 
        rgba(47, 53, 66, 0.4) 35%, rgba(25, 25, 112, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 25s;
}

body.theme-focused .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(46, 213, 115, 0.2) 20%, rgba(123, 237, 159, 0.3) 25%, 
        rgba(30, 144, 255, 0.4) 35%, rgba(25, 25, 112, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 30s;
}

body.theme-creative .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(255, 99, 72, 0.2) 20%, rgba(255, 118, 117, 0.3) 25%, 
        rgba(253, 121, 168, 0.4) 35%, rgba(139, 69, 19, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 18s;
}

body.theme-peaceful .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(112, 161, 255, 0.2) 20%, rgba(83, 82, 237, 0.3) 25%, 
        rgba(55, 66, 250, 0.4) 35%, rgba(25, 25, 112, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 35s;
}

body.theme-adventurous .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(255, 165, 2, 0.2) 20%, rgba(255, 99, 72, 0.3) 25%, 
        rgba(255, 71, 87, 0.4) 35%, rgba(139, 69, 19, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 12s;
}

body.theme-nostalgic .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(116, 125, 140, 0.2) 20%, rgba(164, 176, 190, 0.3) 25%, 
        rgba(87, 96, 111, 0.4) 35%, rgba(25, 25, 112, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 40s;
}

body.theme-ambitious .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(255, 215, 0, 0.2) 20%, rgba(255, 177, 66, 0.3) 25%, 
        rgba(255, 99, 72, 0.4) 35%, rgba(139, 69, 19, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 10s;
}

body.theme-contemplative .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(108, 92, 231, 0.2) 20%, rgba(162, 155, 254, 0.3) 25%, 
        rgba(253, 121, 168, 0.4) 35%, rgba(25, 25, 112, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 45s;
}

body.theme-energetic .blackhole-background {
    background: radial-gradient(circle at center, 
        transparent 0%, transparent 15%, 
        rgba(0, 210, 211, 0.2) 20%, rgba(123, 237, 159, 0.3) 25%, 
        rgba(46, 213, 115, 0.4) 35%, rgba(25, 25, 112, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    animation-duration: 8s;
}

.blackhole-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        #000000 0%, 
        #000000 40%, 
        rgba(0, 0, 0, 0.9) 50%, 
        rgba(255, 140, 0, 0.1) 60%,
        transparent 70%);
    border-radius: 50%;
    animation: blackholePulse 3s ease-in-out infinite alternate;
    box-shadow: 
        0 0 100px rgba(0, 0, 0, 1),
        0 0 200px rgba(0, 0, 0, 0.8),
        inset 0 0 100px rgba(0, 0, 0, 1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.accretion-disk {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 140, 0, 0.6) 10%,
        rgba(255, 69, 0, 0.8) 20%,
        rgba(255, 215, 0, 0.7) 30%,
        rgba(255, 140, 0, 0.6) 40%,
        transparent 50%,
        rgba(255, 140, 0, 0.4) 60%,
        rgba(255, 69, 0, 0.6) 70%,
        rgba(255, 215, 0, 0.5) 80%,
        rgba(255, 140, 0, 0.4) 90%,
        transparent 100%
    );
    animation: accretionSpin 8s linear infinite;
    filter: blur(2px);
    will-change: transform;
    transform: translateZ(0);
}

.accretion-disk::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        transparent 0%,
        rgba(255, 69, 0, 0.7) 15%,
        rgba(255, 140, 0, 0.9) 25%,
        rgba(255, 215, 0, 0.8) 35%,
        rgba(255, 69, 0, 0.7) 45%,
        transparent 55%,
        rgba(255, 140, 0, 0.5) 65%,
        rgba(255, 69, 0, 0.7) 75%,
        rgba(255, 215, 0, 0.6) 85%,
        rgba(255, 140, 0, 0.5) 95%,
        transparent 100%
    );
    animation: accretionSpin 12s linear infinite reverse;
    filter: blur(1px);
}

.accretion-disk::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.8) 20%,
        rgba(255, 140, 0, 1) 30%,
        rgba(255, 69, 0, 0.9) 40%,
        transparent 50%,
        rgba(255, 140, 0, 0.6) 70%,
        rgba(255, 215, 0, 0.7) 80%,
        transparent 100%
    );
    animation: accretionSpin 6s linear infinite;
}

.gravitational-lensing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(135, 206, 235, 0.1) 60%,
        transparent 80%
    );
    animation: lensingEffect 15s ease-in-out infinite;
}

.space-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
}

.particle:nth-child(1) { width: 2px; height: 2px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 3px; height: 3px; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { width: 1px; height: 1px; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { width: 2px; height: 2px; left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { width: 3px; height: 3px; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { width: 1px; height: 1px; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { width: 2px; height: 2px; left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { width: 3px; height: 3px; left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { width: 1px; height: 1px; left: 90%; animation-delay: 8s; }
.particle:nth-child(10) { width: 2px; height: 2px; left: 15%; animation-delay: 9s; }

.event-horizon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, 
        #000000 0%, 
        #000000 70%, 
        rgba(255, 140, 0, 0.2) 80%, 
        rgba(255, 69, 0, 0.1) 90%, 
        transparent 100%);
    box-shadow: 
        0 0 80px rgba(255, 140, 0, 0.8),
        0 0 160px rgba(255, 69, 0, 0.6),
        0 0 240px rgba(255, 140, 0, 0.4),
        inset 0 0 80px rgba(0, 0, 0, 1);
    animation: eventHorizonPulse 4s ease-in-out infinite;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes blackholeRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes blackholePulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

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

@keyframes lensingEffect {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes eventHorizonPulse {
    0%, 100% {
        box-shadow: 
            0 0 50px rgba(255, 140, 0, 0.5),
            inset 0 0 50px rgba(0, 0, 0, 1);
    }
    50% {
        box-shadow: 
            0 0 80px rgba(255, 140, 0, 0.8),
            0 0 120px rgba(255, 69, 0, 0.4),
            inset 0 0 50px rgba(0, 0, 0, 1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.9); }
}

@keyframes slideIn {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-100px); opacity: 0; }
}

/* Welcome Toast */
.welcome-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color, #ff8c00);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 350px;
    animation: slideIn 0.5s ease;
    backdrop-filter: blur(10px);
}

.toast-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 0 10px var(--primary-color, #ff8c00);
}

/* Audio Control */
.audio-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.audio-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 0, 0.6);
    background: rgba(0, 0, 0, 0.8);
    color: #ff8c00;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
    border-color: #ff8c00;
}

.audio-btn.muted {
    color: #666;
    border-color: #666;
    box-shadow: 0 0 10px rgba(102, 102, 102, 0.3);
}

.playlist-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 0, 0.6);
    background: rgba(0, 0, 0, 0.8);
    color: #ff8c00;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.playlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
    border-color: #ff8c00;
}

.music-playlist {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 140, 0, 0.6);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    animation: slideInFromRight 0.3s ease;
}

.playlist-header {
    color: #ff8c00;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.playlist-tracks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-item {
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.track-item:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateX(-3px);
    border-color: rgba(255, 140, 0, 0.6);
}

.track-item.active {
    background: rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
    color: #ff8c00;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    transform: translateX(-3px);
}

.track-item.active::before {
    content: 'ðŸŽµ ';
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Black Hole Gravitational Effects */
.gravitational-lensing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 30%,
        rgba(135, 206, 235, 0.05) 50%,
        rgba(255, 140, 0, 0.08) 70%,
        transparent 90%
    );
    animation: lensingEffect 15s ease-in-out infinite;
    filter: blur(3px);
}

/* Additional Black Hole Layers for Depth */
.blackhole-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
        transparent 0%,
        transparent 20%,
        rgba(255, 140, 0, 0.05) 40%,
        rgba(255, 69, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
    animation: blackholeRotation 25s linear infinite reverse;
    z-index: -1;
}

.blackhole-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1500px;
    height: 1500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
        transparent 0%,
        transparent 30%,
        rgba(255, 140, 0, 0.03) 50%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.6) 90%,
        #000000 100%
    );
    animation: blackholeRotation 35s linear infinite;
    z-index: -2;
}

/* Responsive Design for Mood Popup */
@media (max-width: 768px) {
    .mood-popup-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .mood-header h2 {
        font-size: 2rem;
    }
    
    .welcome-toast {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .audio-control {
        bottom: 20px;
        right: 20px;
    }
    
    .audio-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
}

.nav-menu a:hover {
    color: #ff8c00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}
/* Hero Section */
.hero {
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.hero-badge {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.badge-text {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.1s both;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-brand {
    margin: 0.5rem 0 1rem 0;
    animation: fadeInUp 1s ease 0.15s both;
}

.brand-aka {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    margin-right: 0.5rem;
}

.brand-names {
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ff8c00, #ffa500, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    animation: brandGlow 3s ease-in-out infinite alternate;
    will-change: opacity;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #f8f9fa;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-headline {
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.headline-main {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.headline-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.highlight {
    color: #f39c12;
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f39c12;
    transform: scaleX(0);
    animation: highlightGrow 2s ease 1s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: #f39c12;
    color: white;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 1s ease 0.5s both;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-item:nth-child(3) {
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.float-item:nth-child(4) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.professional-intro {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.intro-highlight {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
}

.emphasis {
    color: #f39c12;
    font-weight: 700;
}

.core-strengths {
    margin-bottom: 3rem;
}

.core-strengths h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ffffff;
}

.strength-item:hover {
    transform: translateY(-3px);
}

.strength-item i {
    color: #3498db;
    font-size: 1.2rem;
}

.passion-statement {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border-left: 5px solid #f39c12;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ffffff;
}

.passion-statement p {
    font-size: 1.1rem;
    margin: 0;
    color: #555;
}

.leadership-roles {
    margin-bottom: 3rem;
}

.leadership-roles h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.role-highlight {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.personal-touch h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.personal-touch p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.family-note {
    font-style: italic;
    color: #7f8c8d;
    border-left: 3px solid #e74c3c;
    padding-left: 1rem;
}

.about-visual {
    position: sticky;
    top: 100px;
}

.profile-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ffffff;
}

.profile-image {
    position: relative;
    margin-bottom: 2rem;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-text {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.skills h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.skills-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.skills-categories {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.skill-category {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(25, 20, 0, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    border: 2px solid;
    border-image: linear-gradient(45deg, #ffd700, #ffb347, #ffd700) 1;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0.6;
}

.skill-category::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.5rem;
    box-shadow: 
        0 8px 16px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: emergingGlow 2s ease-in-out infinite alternate;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: iconShine 2s infinite;
}

.category-header h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.skills-grid {
    display: grid;
    gap: 1rem;
}

.skill-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(15, 15, 15, 0.8) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffd700, #ffb347);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(255, 215, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.skill-item:hover::before {
    opacity: 1;
}

.skill-item[data-level="expert"]::before {
    background: linear-gradient(180deg, #ffd700, #ffb347);
    opacity: 1;
}

.skill-item[data-level="advanced"]::before {
    background: linear-gradient(180deg, #daa520, #b8860b);
    opacity: 1;
}

.skill-item[data-level="intermediate"]::before {
    background: linear-gradient(180deg, #cd853f, #a0522d);
    opacity: 1;
}

.skill-category.emerging {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(25, 20, 0, 0.9) 100%);
    border: 2px solid;
    border-image: linear-gradient(45deg, #ffd700, #32cd32, #ffd700) 1;
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.4),
        0 5px 15px rgba(50, 205, 50, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
}

.skill-category.emerging .category-icon {
    background: linear-gradient(135deg, #ffd700 0%, #32cd32 50%, #ffd700 100%);
    animation: emergingGlow 2s ease-in-out infinite alternate;
}

.skill-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.skill-detail {
    font-size: 0.85rem;
    color: #cccccc;
    opacity: 0.9;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.level-bar {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    border-radius: 3px;
    width: 0;
    transition: width 2s ease;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    position: relative;
}

.level-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 3px 3px 0 0;
}

.level-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffd700;
    min-width: 60px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.skills-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.summary-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
}

.summary-icon {
    font-size: 2.5rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.summary-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f39c12;
}

.summary-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tech-stack {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-stack h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tech-category h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.tech-tag.primary {
    background: #3498db;
    color: white;
    font-weight: 600;
}

.tech-tag.primary:hover {
    background: #2980b9;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.experience h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.experience-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto 5rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 4rem;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 20px;
    width: 24px;
    height: 24px;
    background: #3498db;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #3498db;
    z-index: 2;
}

.timeline-item.current::before {
    background: #27ae60;
    box-shadow: 0 0 0 4px #27ae60;
    animation: pulse 2s infinite;
}

.timeline-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding-right: 2rem;
}

.year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.duration {
    font-size: 0.9rem;
    color: #ffffff;
    background: rgba(255, 140, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.5);
}

.timeline-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 5px solid #3498db;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.timeline-item.current .timeline-content {
    border-left-color: #27ae60;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
    border: 1px solid rgba(39, 174, 96, 0.5);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.job-header {
    margin-bottom: 2rem;
}

.job-header h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.company {
    color: #3498db;
    font-weight: 700;
    font-size: 1.1rem;
}

.company-type {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-style: italic;
}

.job-description {
    margin-bottom: 2rem;
}

.responsibilities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsibilities li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.responsibilities li::before {
    content: 'â–¶';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 0.8rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #3498db;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.skill-tag.leadership {
    background: #e74c3c;
}

.skill-tag.leadership:hover {
    background: #c0392b;
}

.career-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.summary-header h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.summary-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.summary-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f39c12;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Developer Relations & Content Section */
.content {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.content h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.devrel-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.devrel-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.highlight-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.content-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.content-card:hover {
    transform: translateY(-10px);
}

.content-card.featured {
    border: 3px solid #27ae60;
    background: rgba(0, 0, 0, 0.7);
}

.content-card.devrel-focus {
    border: 3px solid #e74c3c;
    background: rgba(0, 0, 0, 0.7);
}

.content-card.instagram-brand {
    border: 3px solid #E4405F;
    background: rgba(0, 0, 0, 0.7);
}

.content-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.content-card.featured .content-icon {
    color: #27ae60;
}

.content-card.devrel-focus .content-icon {
    color: #e74c3c;
}

.content-card.instagram-brand .content-icon {
    color: #E4405F;
}

.content-card.devrel-leadership {
    border: 3px solid #3498db;
    background: rgba(0, 0, 0, 0.7);
}

.content-card.devrel-leadership .content-icon {
    color: #3498db;
}

.brand-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-height: 3rem;
}

.brand-item:hover {
    background: rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
}

.brand-item i {
    color: #ff8c00;
    font-size: 1.1rem;
}

.brand-item:hover i {
    color: #ffb347;
}

.content-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.content-actions {
    margin: 2rem 0;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #27ae60;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.blog-link:hover {
    background: #2ecc71;
    transform: translateY(-2px);
    color: white;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #cc0000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.youtube-link:hover {
    background: #ff0000;
    transform: translateY(-2px);
    color: white;
}

.social-stats {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-stats span {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.content-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
    width: 100%;
}

.content-topics span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    word-break: break-word;
    min-height: 3rem;
}

.content-topics span i {
    color: #ff8c00;
    font-size: 1.1rem;
}

.content-topics span:hover i {
    color: #ffb347;
}

.content-topics span:hover {
    background: rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
}

.devrel-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-height: 3rem;
}

.capability-item i {
    color: #ff8c00;
    font-size: 1.1rem;
}

.capability-item:hover {
    background: rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
}

.capability-item:hover i {
    color: #ffb347;
}

.devrel-vision {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
}

.vision-header h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.vision-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: #f39c12;
    font-weight: 600;
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
}

.vision-pillar {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vision-pillar h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.vision-pillar p {
    line-height: 1.6;
    opacity: 0.9;
}
/* Films Section */
.films {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.films h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.films-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.films-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.achievements {
    margin-top: 2rem;
}

.achievement {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.achievement i {
    color: #f39c12;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.films-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.film-item {
    aspect-ratio: 16/9;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

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

/* Travel Section */
.travel {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.travel h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.travel-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.travel-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.travel-card:hover {
    transform: translateY(-5px);
}

.travel-number {
    font-size: 4rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.travel-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}
/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #3498db;
    margin-right: 1rem;
    font-size: 1.3rem;
    width: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightGrow {
    to {
        transform: scaleX(1);
    }
}

@keyframes brandGlow {
    0% { opacity: 0.85; }
    100% { opacity: 1; }
}
    100% {
        text-shadow: 
            0 0 30px rgba(255, 140, 0, 0.8),
            0 0 40px rgba(255, 165, 0, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: #e67e22;
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .headline-main {
        font-size: 1.1rem;
    }
    
    .headline-sub {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 200px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        display: grid;
    }
    
    .stat {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-visual {
        position: static;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-image img {
        width: 150px;
        height: 150px;
    }
    
    .films-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .devrel-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .devrel-capabilities {
        grid-template-columns: 1fr;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vision-pillar {
        text-align: center;
    }
    
    .brand-highlights {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .skill-level {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .level-text {
        text-align: center;
        min-width: auto;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .summary-content {
        align-items: center;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-date {
        align-items: flex-start;
        text-align: left;
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        padding: 2rem;
    }
    
    .job-header h3 {
        font-size: 1.4rem;
    }
    
    .responsibilities li {
        padding-left: 1.5rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .headline-main {
        font-size: 1rem;
    }
    
    .headline-sub {
        font-size: 0.9rem;
    }
}
/* Enhanced Interstellar Wormhole */
.wormhole {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vh;
    transform: translate(-50%, -50%);
    animation: wormholeApproach 20s ease-in-out infinite alternate, wormholeRotation 30s linear infinite;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: -8;
    filter: blur(0.1px);
}

.wormhole-entrance {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse 60% 30% at center, 
        #000000 0%,
        #000000 25%,
        rgba(255, 255, 255, 0.2) 35%,
        rgba(135, 206, 235, 0.5) 45%,
        rgba(255, 255, 255, 0.3) 55%,
        rgba(135, 206, 235, 0.6) 65%,
        rgba(255, 255, 255, 0.2) 75%,
        rgba(135, 206, 235, 0.3) 85%,
        transparent 100%);
    box-shadow: 
        0 0 120px rgba(135, 206, 235, 1),
        0 0 240px rgba(255, 255, 255, 0.6),
        0 0 360px rgba(135, 206, 235, 0.8),
        0 0 480px rgba(135, 206, 235, 0.4),
        inset 0 0 60px rgba(0, 0, 0, 1);
    animation: wormholeEntrance 6s ease-in-out infinite alternate, wormholePulse 3s ease-in-out infinite;
}

.wormhole-tunnel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 5%,
        rgba(135, 206, 235, 0.7) 10%,
        rgba(255, 255, 255, 0.3) 15%,
        transparent 20%,
        rgba(135, 206, 235, 0.6) 25%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(135, 206, 235, 0.7) 35%,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(135, 206, 235, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        transparent 60%,
        rgba(135, 206, 235, 0.5) 65%,
        rgba(255, 255, 255, 0.3) 70%,
        rgba(135, 206, 235, 0.6) 75%,
        transparent 80%,
        rgba(255, 255, 255, 0.2) 85%,
        rgba(135, 206, 235, 0.4) 90%,
        rgba(255, 255, 255, 0.3) 95%,
        transparent 100%
    );
    animation: wormholeTunnel 8s linear infinite, wormholeTunnelReverse 12s linear infinite reverse;
    filter: blur(0.8px);
}

.wormhole-exit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse 85% 45% at center, 
        transparent 0%, 
        transparent 40%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(135, 206, 235, 0.4) 60%, 
        rgba(255, 255, 255, 0.25) 70%, 
        rgba(135, 206, 235, 0.3) 80%, 
        rgba(255, 255, 255, 0.1) 90%, 
        transparent 100%);
    animation: wormholeExit 7s ease-in-out infinite, wormholeExitRotation 25s linear infinite;
    filter: blur(1.2px);
}

.wormhole-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 2%,
        rgba(135, 206, 235, 0.4) 4%,
        transparent 6%,
        rgba(255, 255, 255, 0.15) 8%,
        rgba(135, 206, 235, 0.3) 10%,
        transparent 12%,
        rgba(255, 255, 255, 0.2) 14%,
        rgba(135, 206, 235, 0.4) 16%,
        transparent 18%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(135, 206, 235, 0.3) 22%,
        transparent 24%,
        rgba(255, 255, 255, 0.2) 26%,
        rgba(135, 206, 235, 0.4) 28%,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 32%,
        rgba(135, 206, 235, 0.3) 34%,
        transparent 36%,
        rgba(255, 255, 255, 0.2) 38%,
        rgba(135, 206, 235, 0.4) 40%,
        transparent 42%,
        rgba(255, 255, 255, 0.15) 44%,
        rgba(135, 206, 235, 0.3) 46%,
        transparent 48%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(135, 206, 235, 0.4) 52%,
        transparent 54%,
        rgba(255, 255, 255, 0.15) 56%,
        rgba(135, 206, 235, 0.3) 58%,
        transparent 60%,
        rgba(255, 255, 255, 0.2) 62%,
        rgba(135, 206, 235, 0.4) 64%,
        transparent 66%,
        rgba(255, 255, 255, 0.15) 68%,
        rgba(135, 206, 235, 0.3) 70%,
        transparent 72%,
        rgba(255, 255, 255, 0.2) 74%,
        rgba(135, 206, 235, 0.4) 76%,
        transparent 78%,
        rgba(255, 255, 255, 0.15) 80%,
        rgba(135, 206, 235, 0.3) 82%,
        transparent 84%,
        rgba(255, 255, 255, 0.2) 86%,
        rgba(135, 206, 235, 0.4) 88%,
        transparent 90%,
        rgba(255, 255, 255, 0.15) 92%,
        rgba(135, 206, 235, 0.3) 94%,
        transparent 96%,
        rgba(255, 255, 255, 0.2) 98%,
        transparent 100%
    );
    animation: wormholeEnergy 15s linear infinite, wormholeEnergyPulse 4s ease-in-out infinite;
    filter: blur(2px);
}

/* Enhanced Black Hole System */
.blackhole-system {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 300px;
    height: 300px;
    animation: blackholeSystemRotation 25s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.blackhole-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        #000000 0%, 
        #000000 40%, 
        rgba(0, 0, 0, 0.9) 50%, 
        rgba(255, 140, 0, 0.1) 60%,
        transparent 70%);
    border-radius: 50%;
    animation: blackholePulse 3s ease-in-out infinite alternate;
    box-shadow: 
        0 0 60px rgba(0, 0, 0, 1),
        0 0 120px rgba(0, 0, 0, 0.8),
        inset 0 0 60px rgba(0, 0, 0, 1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.accretion-disk {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 140, 0, 0.8) 10%,
        rgba(255, 69, 0, 0.9) 20%,
        rgba(255, 215, 0, 0.7) 30%,
        rgba(255, 140, 0, 0.6) 40%,
        transparent 50%,
        rgba(255, 140, 0, 0.4) 60%,
        rgba(255, 69, 0, 0.6) 70%,
        rgba(255, 215, 0, 0.5) 80%,
        rgba(255, 140, 0, 0.4) 90%,
        transparent 100%
    );
    animation: accretionSpin 12s linear infinite;
    filter: blur(1px);
    will-change: transform;
    transform: translateZ(0);
}

.accretion-disk::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        transparent 0%,
        rgba(255, 69, 0, 0.7) 15%,
        rgba(255, 140, 0, 0.9) 25%,
        rgba(255, 215, 0, 0.8) 35%,
        rgba(255, 69, 0, 0.7) 45%,
        transparent 55%,
        rgba(255, 140, 0, 0.5) 65%,
        rgba(255, 69, 0, 0.7) 75%,
        rgba(255, 215, 0, 0.6) 85%,
        rgba(255, 140, 0, 0.5) 95%,
        transparent 100%
    );
    animation: accretionSpin 18s linear infinite reverse;
    filter: blur(0.5px);
}

.accretion-disk::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.8) 20%,
        rgba(255, 140, 0, 1) 30%,
        rgba(255, 69, 0, 0.9) 40%,
        transparent 50%,
        rgba(255, 140, 0, 0.6) 70%,
        rgba(255, 215, 0, 0.7) 80%,
        transparent 100%
    );
    animation: accretionSpin 8s linear infinite;
}

.event-horizon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, 
        #000000 0%, 
        #000000 70%, 
        rgba(255, 140, 0, 0.3) 80%, 
        rgba(255, 69, 0, 0.2) 90%, 
        transparent 100%);
    box-shadow: 
        0 0 50px rgba(255, 140, 0, 0.8),
        0 0 100px rgba(255, 69, 0, 0.6),
        0 0 150px rgba(255, 140, 0, 0.4),
        inset 0 0 50px rgba(0, 0, 0, 1);
    animation: eventHorizonPulse 4s ease-in-out infinite;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hawking-radiation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
        transparent 0%,
        transparent 60%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(135, 206, 235, 0.2) 80%,
        rgba(255, 140, 0, 0.1) 90%,
        transparent 100%
    );
    animation: hawkingRadiation 20s ease-in-out infinite;
}

.gravitational-lensing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 30%,
        rgba(135, 206, 235, 0.05) 50%,
        rgba(255, 140, 0, 0.08) 70%,
        transparent 90%
    );
    animation: lensingEffect 18s ease-in-out infinite;
    filter: blur(2px);
}

/* Nebula */
.nebula {
    position: absolute;
    top: 60%;
    left: 5%;
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, 
        rgba(138, 43, 226, 0.3) 0%, 
        rgba(75, 0, 130, 0.2) 30%, 
        rgba(255, 20, 147, 0.1) 60%, 
        transparent 100%);
    border-radius: 50%;
    animation: nebulaFlow 30s ease-in-out infinite alternate;
    filter: blur(3px);
}

/* Cosmic Dust */
.cosmic-dust {
    position: absolute;
    top: 10%;
    right: 30%;
    width: 300px;
    height: 150px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 215, 0, 0.1) 40%, 
        rgba(255, 140, 0, 0.1) 60%, 
        transparent 100%);
    border-radius: 50%;
    animation: cosmicDustDrift 25s linear infinite;
    filter: blur(2px);
}

/* Comets */
.comet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 0%, #87ceeb 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px #87ceeb;
}

.comet-1 {
    top: 15%;
    left: -50px;
    animation: cometTrajectory1 20s linear infinite;
}

.comet-2 {
    top: 70%;
    left: -50px;
    animation: cometTrajectory2 25s linear infinite;
    animation-delay: 10s;
}

.comet-tail {
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(135, 206, 235, 0.8) 0%, 
        rgba(255, 255, 255, 0.6) 30%, 
        transparent 100%);
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    border-radius: 2px;
    filter: blur(1px);
}

/* Enhanced Space Particles */
.space-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { width: 2px; height: 2px; left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { width: 3px; height: 3px; left: 15%; animation-delay: 2s; }
.particle:nth-child(3) { width: 1px; height: 1px; left: 25%; animation-delay: 4s; }
.particle:nth-child(4) { width: 2px; height: 2px; left: 35%; animation-delay: 6s; }
.particle:nth-child(5) { width: 3px; height: 3px; left: 45%; animation-delay: 8s; }
.particle:nth-child(6) { width: 1px; height: 1px; left: 55%; animation-delay: 10s; }
.particle:nth-child(7) { width: 2px; height: 2px; left: 65%; animation-delay: 12s; }
.particle:nth-child(8) { width: 3px; height: 3px; left: 75%; animation-delay: 14s; }
.particle:nth-child(9) { width: 1px; height: 1px; left: 85%; animation-delay: 1s; }
.particle:nth-child(10) { width: 2px; height: 2px; left: 95%; animation-delay: 3s; }
.particle:nth-child(11) { width: 2px; height: 2px; left: 10%; animation-delay: 5s; }
.particle:nth-child(12) { width: 1px; height: 1px; left: 20%; animation-delay: 7s; }
.particle:nth-child(13) { width: 3px; height: 3px; left: 30%; animation-delay: 9s; }
.particle:nth-child(14) { width: 2px; height: 2px; left: 40%; animation-delay: 11s; }
.particle:nth-child(15) { width: 1px; height: 1px; left: 50%; animation-delay: 13s; }

/* Animations */
@keyframes starTwinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes starPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

@keyframes solarSystemRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes sunPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes sunCorePulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes coronaFlicker {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

@keyframes planetOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-radius, 100px)) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-radius, 100px)) rotate(-360deg); }
}

@keyframes moonOrbit {
    from { transform: translateX(-50%) rotate(0deg) translateX(15px) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg) translateX(15px) rotate(-360deg); }
}

@keyframes jupiterStormRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

@keyframes wormholeApproach {
    0% { 
        transform: translate(-50%, -50%) scale(0.8);
        filter: blur(2px);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        filter: blur(0.5px);
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.5);
        filter: blur(1px);
    }
}

@keyframes wormholeEntrance {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 100px rgba(138, 43, 226, 1),
            0 0 200px rgba(75, 0, 130, 0.8),
            0 0 300px rgba(138, 43, 226, 0.6),
            inset 0 0 50px rgba(0, 0, 0, 1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 150px rgba(138, 43, 226, 1),
            0 0 300px rgba(75, 0, 130, 0.9),
            0 0 450px rgba(138, 43, 226, 0.7),
            inset 0 0 75px rgba(0, 0, 0, 1);
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 
            0 0 200px rgba(138, 43, 226, 1),
            0 0 400px rgba(75, 0, 130, 1),
            0 0 600px rgba(138, 43, 226, 0.8),
            inset 0 0 100px rgba(0, 0, 0, 1);
    }
}

@keyframes wormholeTunnel {
    from { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg) scale(1.1);
    }
}

@keyframes wormholeExit {
    0% { 
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes wormholeEnergy {
    from { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1.05);
        opacity: 0.8;
    }
    to { 
        transform: translate(-50%, -50%) rotate(-360deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes blackholeSystemRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes blackholePulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.05); }
}

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

@keyframes eventHorizonPulse {
    0%, 100% {
        box-shadow: 
            0 0 50px rgba(255, 140, 0, 0.5),
            inset 0 0 50px rgba(0, 0, 0, 1);
    }
    50% {
        box-shadow: 
            0 0 80px rgba(255, 140, 0, 0.8),
            0 0 120px rgba(255, 69, 0, 0.4),
            inset 0 0 50px rgba(0, 0, 0, 1);
    }
}

@keyframes hawkingRadiation {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes lensingEffect {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes nebulaFlow {
    0% { transform: translateX(0) scale(1); }
    100% { transform: translateX(50px) scale(1.1); }
}

@keyframes cosmicDustDrift {
    0% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(100px) rotate(360deg); }
}

@keyframes cometTrajectory1 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(calc(100vw + 100px)) translateY(-200px); }
}

@keyframes cometTrajectory2 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(calc(100vw + 100px)) translateY(150px); }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}
/* Social Media Line */
.social-media-line {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.social-media-line h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.social-handles {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-handle {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
    min-width: 120px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.social-handle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.social-handle i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-handle span {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.social-handle small {
    color: #666;
    font-size: 0.8rem;
}

.social-handle.instagram i { color: #E4405F; }
.social-handle.linkedin i { color: #0077B5; }
.social-handle.youtube i { color: #FF0000; }
.social-handle.facebook i { color: #1877F2; }

.social-handle.instagram:hover { border-left: 4px solid #E4405F; }
.social-handle.linkedin:hover { border-left: 4px solid #0077B5; }
.social-handle.youtube:hover { border-left: 4px solid #FF0000; }
.social-handle.facebook:hover { border-left: 4px solid #1877F2; }

/* DevRel Content Line */
.devrel-content-line {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.devrel-content-line h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.devrel-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.devrel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.devrel-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.devrel-item i {
    font-size: 1.5rem;
    color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.devrel-info {
    display: flex;
    flex-direction: column;
}

.devrel-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
}

.devrel-item small {
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-handles,
    .devrel-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-handle,
    .devrel-item {
        min-width: auto;
        width: 100%;
    }
    
    .social-handles {
        gap: 0.5rem;
    }
    
    .devrel-content {
        gap: 0.5rem;
    }
}

/* Enhanced visibility for cosmic elements */
.deep-space,
.star-field,
.solar-system,
.wormhole,
.blackhole-system,
.nebula,
.cosmic-dust,
.space-particles {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Authentic Interstellar Gravitational Lensing */
.wormhole::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse 100% 50% at center,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(135, 206, 235, 0.1) 40%,
        rgba(255, 255, 255, 0.08) 60%,
        rgba(135, 206, 235, 0.06) 80%,
        transparent 100%
    );
    animation: lensingDistortion 12s ease-in-out infinite alternate;
    filter: blur(1px);
}

.wormhole::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse 120% 60% at center,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(135, 206, 235, 0.05) 70%,
        rgba(255, 255, 255, 0.02) 90%,
        transparent 100%
    );
    animation: lensingDistortion 16s ease-in-out infinite alternate-reverse;
    filter: blur(2px);
}

/* Interstellar Wormhole Donut Shape */
.wormhole-donut {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse 100% 30% at center,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(135, 206, 235, 0.4) 55%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(135, 206, 235, 0.2) 65%,
        transparent 70%,
        transparent 100%
    );
    animation: donutRotation 18s linear infinite;
    filter: blur(0.5px);
}

/* Enhanced Animations */
@keyframes lensingDistortion {
    0% { 
        transform: translate(-50%, -50%) scale(1) rotateX(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1) rotateX(15deg);
        opacity: 0.8;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.2) rotateX(30deg);
        opacity: 0.7;
    }
}

@keyframes donutRotation {
    0% { 
        transform: translate(-50%, -50%) rotateY(0deg) rotateX(75deg);
    }
    25% { 
        transform: translate(-50%, -50%) rotateY(90deg) rotateX(75deg);
    }
    50% { 
        transform: translate(-50%, -50%) rotateY(180deg) rotateX(75deg);
    }
    75% { 
        transform: translate(-50%, -50%) rotateY(270deg) rotateX(75deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotateY(360deg) rotateX(75deg);
    }
}
/* Tab Navigation */
.main-content {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    min-height: 80vh;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(15px);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
    transform: translateY(-2px);
}

.tab-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 25px;
}

/* Tab Content */
.tab-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.tab-pane p {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Contact Tab Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #ffffff;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff8c00;
    width: 30px;
    text-align: center;
}

/* Tab Animation */
@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .tab-navigation {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tab-pane h2 {
        font-size: 2.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Page Content Layout */
.page-content {
    padding: 120px 0 60px 0;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation Active States */
.nav-menu a.active {
    color: #ff8c00 !important;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.8) !important;
}

/* Quick Navigation Cards */
.quick-nav {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
}

.quick-nav h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    margin-bottom: 3rem;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.nav-card:hover {
    transform: translateY(-10px);
    border-color: #ff8c00;
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ff8c00;
}

.nav-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.nav-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Films Page Styles */
.film-showcase {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: #ffffff;
    opacity: 0.8;
}

.film-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(255, 140, 0, 0.1);
    border: 2px dashed rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
}

.film-placeholder i {
    font-size: 2rem;
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.film-placeholder span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tech-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.tech-skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ffffff;
    text-align: center;
}

.tech-skill i {
    font-size: 1.5rem;
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.tech-skill span {
    font-size: 0.9rem;
}

.creative-philosophy {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ffffff;
}

.creative-philosophy h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

.creative-impact {
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-header h3 {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    margin-bottom: 1rem;
}

.impact-header p {
    color: #ffffff;
    opacity: 0.9;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-item {
    background: rgba(255, 140, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.impact-item h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

/* Travel Page Styles */
.travel-philosophy {
    margin-bottom: 4rem;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    margin-bottom: 1rem;
}

.philosophy-header p {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1.1rem;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-text {
    color: #ffffff;
}

.philosophy-text h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.travel-insights {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    margin-top: 2rem;
}

.travel-insights h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

.insights-list {
    list-style: none;
    padding: 0;
}

.insights-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.insights-list li::before {
    content: 'âœˆï¸';
    position: absolute;
    left: 0;
    top: 0;
}

.philosophy-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.world-map {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    text-align: center;
}

.map-placeholder {
    color: #ffffff;
}

.map-placeholder i {
    font-size: 4rem;
    color: #ff8c00;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

.travel-benefits {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.travel-benefits h4 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 10px;
    color: #ffffff;
}

.benefit-item i {
    color: #ff8c00;
    font-size: 1.2rem;
}

.travel-impact {
    margin: 4rem 0;
}

.impact-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-area {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.impact-area:hover {
    transform: translateY(-5px);
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.impact-area h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

.future-travel {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.future-header {
    text-align: center;
    margin-bottom: 3rem;
}

.future-header h3 {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    margin-bottom: 1rem;
}

.future-header p {
    color: #ffffff;
    opacity: 0.9;
}

.future-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    background: rgba(255, 140, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.goal-item h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
}

.contact-intro p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.interest-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.interest-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #ffffff;
    line-height: 1.5;
}

.contact-methods {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.contact-methods h4 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
}

.social-connect {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.social-connect h3 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

.social-connect p {
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-platforms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-platform:hover {
    transform: translateY(-3px);
    background: rgba(255, 140, 0, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.platform-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.social-platform.gmail .platform-icon {
    background: #ea4335;
    color: white;
}

.social-platform.linkedin .platform-icon {
    background: #0077b5;
    color: white;
}

.social-platform.instagram .platform-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-platform.blog .platform-icon {
    background: #2962ff;
    color: white;
}

.social-platform.twitter .platform-icon {
    background: #1da1f2;
    color: white;
}

.social-platform.github .platform-icon {
    background: #333;
    color: white;
}

.social-platform.newsletter .platform-icon {
    background: #ff6b35;
    color: white;
}

.platform-info h4 {
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.platform-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.platform-handle {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

.collaboration-section {
    margin: 4rem 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.collaboration-header {
    text-align: center;
    margin-bottom: 3rem;
}

.collaboration-header h3 {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    margin-bottom: 1rem;
}

.collaboration-header p {
    color: #ffffff;
    opacity: 0.9;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.opportunity-card {
    background: rgba(255, 140, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
}

.opportunity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.opportunity-card h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

.response-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.response-header h3 {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    margin-bottom: 2rem;
    text-align: center;
}

.response-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.response-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.response-item i {
    color: #ff8c00;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.response-text h4 {
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.response-text p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.5;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .nav-cards {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid,
    .impact-areas,
    .future-goals,
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .social-platform {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .response-details {
        gap: 1.5rem;
    }
    
    .response-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 100px 0 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .nav-card {
        padding: 2rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .tech-skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Wormhole Animation Keyframes */
@keyframes wormholeApproach {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

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

@keyframes wormholeEntrance {
    0% {
        box-shadow: 
            0 0 120px rgba(135, 206, 235, 0.8),
            0 0 240px rgba(255, 255, 255, 0.4),
            0 0 360px rgba(135, 206, 235, 0.6),
            inset 0 0 60px rgba(0, 0, 0, 1);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 180px rgba(135, 206, 235, 1),
            0 0 360px rgba(255, 255, 255, 0.7),
            0 0 540px rgba(135, 206, 235, 0.9),
            0 0 720px rgba(135, 206, 235, 0.5),
            inset 0 0 80px rgba(0, 0, 0, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        box-shadow: 
            0 0 150px rgba(135, 206, 235, 0.9),
            0 0 300px rgba(255, 255, 255, 0.5),
            0 0 450px rgba(135, 206, 235, 0.7),
            0 0 600px rgba(135, 206, 235, 0.3),
            inset 0 0 70px rgba(0, 0, 0, 1);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes wormholePulse {
    0%, 100% {
        opacity: 0.8;
        filter: blur(0.1px);
    }
    50% {
        opacity: 1;
        filter: blur(0.05px);
    }
}

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

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

@keyframes wormholeExit {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.7;
    }
}

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

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

@keyframes wormholeEnergyPulse {
    0%, 100% {
        opacity: 0.6;
        filter: blur(2px);
    }
    50% {
        opacity: 0.9;
        filter: blur(1px);
    }
}

/* Spaceship Movement Effect */
@keyframes spaceshipApproach {
    0% {
        transform: translate(-50%, -50%) scale(0.5) perspective(1000px) rotateX(0deg);
    }
    25% {
        transform: translate(-50%, -50%) scale(0.7) perspective(1000px) rotateX(5deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1) perspective(1000px) rotateX(-2deg);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.2) perspective(1000px) rotateX(3deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5) perspective(1000px) rotateX(0deg);
    }
}

/* Enhanced Wormhole Donut Effect */
.wormhole-donut {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(135, 206, 235, 0.8) 5%,
        rgba(255, 255, 255, 0.6) 10%,
        transparent 15%,
        rgba(135, 206, 235, 0.6) 20%,
        rgba(255, 255, 255, 0.4) 25%,
        transparent 30%,
        rgba(135, 206, 235, 0.8) 35%,
        rgba(255, 255, 255, 0.6) 40%,
        transparent 45%,
        rgba(135, 206, 235, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        transparent 60%,
        rgba(135, 206, 235, 0.8) 65%,
        rgba(255, 255, 255, 0.6) 70%,
        transparent 75%,
        rgba(135, 206, 235, 0.6) 80%,
        rgba(255, 255, 255, 0.4) 85%,
        transparent 90%,
        rgba(135, 206, 235, 0.8) 95%,
        transparent 100%
    );
    animation: wormholeDonutRotation 10s linear infinite;
    filter: blur(0.5px);
}

@keyframes wormholeDonutRotation {
    from {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}
/* Golden Skills Animation Keyframes */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes iconShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes emergingGlow {
    0% {
        box-shadow: 
            0 8px 16px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 8px 16px rgba(50, 205, 50, 0.4),
            0 0 20px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Enhanced Skills Summary with Golden Theme */
.skills-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 15, 0, 0.8) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid;
    border-image: linear-gradient(45deg, #ffd700, #ffb347, #ffd700) 1;
    box-shadow: 
        0 10px 25px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.summary-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
}

.summary-icon {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.summary-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.summary-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.summary-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Enhanced Tech Stack with Golden Theme */
.tech-stack {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 15, 0, 0.8) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border: 2px solid;
    border-image: linear-gradient(45deg, #ffd700, #ffb347, #ffd700) 1;
}

.tech-stack h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tech-category {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(15, 15, 15, 0.7) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tech-category h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    padding-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(15, 15, 15, 0.7) 100%);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tech-tag:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    text-shadow: none;
}

.tech-tag.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000000;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.tech-tag.primary:hover {
    background: linear-gradient(135deg, #ffb347 0%, #ffa500 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}
/* Retro 2000s Style Ad Button */
.retro-ad-button {
    position: fixed;
    top: 120px;
    left: 20px;
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, #ff0080, #ff4080, #ff0080, #8000ff);
    background-size: 400% 400%;
    border: 3px solid #ffff00;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1000;
    animation: 
        retroJump 1s infinite,
        retroBlink 0.3s infinite,
        gradientShift 2s infinite,
        retroTilt 2.5s infinite;
    box-shadow: 
        0 0 20px #ff0080,
        0 0 40px #ff4080,
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transform-origin: center;
    transform: rotate(-5deg);
}

.retro-ad-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffff00, #ff0080, #8000ff, #00ff80);
    border-radius: 12px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

.retro-ad-button::after {
    content: 'ðŸŽ‰';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    animation: sparkle 1.5s infinite;
}

.ad-content {
    position: relative;
    z-index: 2;
}

.ad-text {
    font-size: 12px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        2px 2px 0 #000000,
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000;
    animation: textPulse 0.8s infinite;
    letter-spacing: 1px;
}

.ad-subtext {
    font-size: 8px;
    color: #ffff00;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000000;
    margin-top: 2px;
    animation: subTextBlink 1.2s infinite;
}

.ad-sparkles {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 14px;
    animation: sparkleRotate 2s infinite;
}

.retro-ad-button:hover {
    animation: 
        retroJumpFast 0.3s infinite,
        retroBlinkFast 0.2s infinite,
        gradientShift 1s infinite;
    transform: scale(1.1);
    box-shadow: 
        0 0 30px #ff0080,
        0 0 60px #ff4080,
        inset 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Extra annoying effects for authenticity */
.retro-ad-button:active {
    transform: scale(0.95) rotate(5deg);
    animation: none;
}

/* Make it extra flashy on mobile */
@media (max-width: 768px) {
    .retro-ad-button {
        width: 100px;
        height: 70px;
        top: 100px;
        left: 10px;
        animation-duration: 0.8s, 0.4s, 1.5s;
    }
    
    .ad-text {
        font-size: 10px;
    }
    
    .ad-subtext {
        font-size: 7px;
    }
}

/* Birthday Buddies Section */
.birthday-buddies {
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 15, 0, 0.8) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid;
    border-image: linear-gradient(45deg, #ffd700, #ff69b4, #ffd700) 1;
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInFromLeft 0.8s ease;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

.close-button:hover {
    background: #ff6666;
    transform: scale(1.1);
}

.birthday-buddies::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.birthday-header {
    text-align: center;
    margin-bottom: 2rem;
}

.birthday-header h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.birthday-tab {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ff69b4 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(255, 105, 180, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.birthday-tab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(255, 105, 180, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.blinking-text {
    font-size: 1.1rem;
    font-weight: 600;
    animation: blink 2s infinite;
}

.birthday-tab i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.birthday-content {
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease;
}

.birthday-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.birthday-intro p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.birthday-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 105, 180, 0.2) 100%);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    display: inline-block;
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.birthday-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.birthday-category {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(15, 15, 15, 0.7) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.birthday-category .category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.birthday-category .category-header i {
    font-size: 1.5rem;
    color: #ff69b4;
}

.birthday-category .category-header h4 {
    font-size: 1.3rem;
    color: #ffd700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.celebrity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.celebrity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.celebrity-item:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateX(5px);
}

.celebrity-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ff69b4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.celebrity-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.celebrity-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.celebrity-detail {
    font-size: 0.9rem;
    color: #cccccc;
    opacity: 0.9;
}

.birthday-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.birthday-footer p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.birthday-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.birthday-link:hover {
    background: linear-gradient(135deg, #ffb347 0%, #ffa500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
    color: #000000;
    text-decoration: none;
}

/* Retro 2000s Ad Animations */
@keyframes retroJump {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes retroJumpFast {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1.1);
    }
    50% {
        transform: translateY(-20px) rotate(5deg) scale(1.15);
    }
}

@keyframes retroBlink {
    0%, 30% {
        opacity: 1;
        filter: brightness(1);
        box-shadow: 
            0 0 20px #ff0080,
            0 0 40px #ff4080,
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
    31%, 50% {
        opacity: 0.2;
        filter: brightness(3);
        box-shadow: 
            0 0 40px #ff0080,
            0 0 80px #ff4080,
            0 0 120px #ffff00,
            inset 0 0 20px rgba(255, 255, 255, 0.6);
    }
    51%, 100% {
        opacity: 1;
        filter: brightness(1);
        box-shadow: 
            0 0 20px #ff0080,
            0 0 40px #ff4080,
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

@keyframes retroBlinkFast {
    0%, 30% {
        opacity: 1;
    }
    31%, 70% {
        opacity: 0.2;
    }
    71%, 100% {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        color: #ffffff;
        text-shadow: 
            2px 2px 0 #000000,
            -1px -1px 0 #000000,
            1px -1px 0 #000000,
            -1px 1px 0 #000000;
    }
    50% {
        transform: scale(1.2);
        color: #ffff00;
        text-shadow: 
            2px 2px 0 #000000,
            -1px -1px 0 #000000,
            1px -1px 0 #000000,
            -1px 1px 0 #000000,
            0 0 10px #ffff00;
    }
}

@keyframes subTextBlink {
    0%, 60% {
        opacity: 1;
        color: #ffff00;
    }
    61%, 100% {
        opacity: 0.3;
        color: #ff0080;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.5;
    }
}

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

@keyframes retroTilt {
    0%, 100% {
        transform: rotate(-5deg);
    }
    25% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(-7deg);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Birthday Animations */
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive Design for Birthday Section */
@media (max-width: 768px) {
    .birthday-categories {
        grid-template-columns: 1fr;
    }
    
    .birthday-tab {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .celebrity-item {
        padding: 0.8rem;
    }
    
    .celebrity-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* ============================================

/* ============================================================
   MOBILE — single clean block (replaces all previous mobile CSS)
   Desktop styles above this line are 100% untouched.
   ============================================================ */

/* Hamburger button — hidden on desktop, shown on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    display: block;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger { display: flex !important; }

    /* Nav menu hidden by default, shown when .active */
    .nav-menu {
        display: none !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 60px; left: 0; right: 0;
        background: rgba(0,0,0,0.98) !important;
        padding: 1.5rem !important;
        z-index: 1000 !important;
        gap: 0.8rem !important;
        border-bottom: 1px solid rgba(255,140,0,0.3);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    .nav-menu.active { display: flex !important; }
    .nav-menu a {
        font-size: 1.1rem !important;
        padding: 0.6rem 0 !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Kill ALL heavy cosmic animations */
    .solar-system, .sun, .sun-core, .sun-corona,
    .planet, .moon, .asteroid-belt, .asteroid,
    .wormhole, .wormhole-entrance, .wormhole-tunnel,
    .wormhole-exit, .wormhole-energy, .wormhole-donut,
    .blackhole-system, .blackhole-center, .accretion-disk,
    .event-horizon, .gravitational-lensing, .hawking-radiation,
    .nebula, .cosmic-dust, .comet, .comet-tail,
    .space-particles, .particle {
        display: none !important;
        animation: none !important;
    }
    .star { animation: none !important; opacity: 0.3; }
    .cosmic-scene { opacity: 0.3 !important; }
    .deep-space { opacity: 0.5 !important; animation: none !important; }

    /* CRITICAL: Fix scroll — hero height:100vh + overflow:hidden locks page */
    .hero {
        height: auto !important;
        min-height: 100svh !important;
        overflow: visible !important;
        padding: 5rem 1rem 3rem !important;
        text-align: center;
    }

    /* Unlock body scroll */
    html {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        height: auto !important;
        min-height: 100vh;
    }

    /* Show all content immediately — no entry animations blocking render */
    .hero-content, .about-content, .timeline-item,
    .content-card, .skill-category, .vision-pillar,
    .strength-item, .summary-stat, .timeline-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Layout fixes */
    .container { padding: 0 1rem; }
    .page-content { padding: 5rem 1rem 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
    }
    .hero-cta { flex-direction: column; align-items: center; gap: 0.8rem; }
    .cta-primary, .cta-secondary { width: 100%; text-align: center; min-height: 48px; }
    .floating-elements { display: none; }
    .nav-cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .about-content { flex-direction: column; gap: 2rem; }
    .about-text, .about-visual { width: 100%; }
    .strengths-grid { grid-template-columns: 1fr; }
    .timeline-item { flex-direction: column; }
    .timeline-date { min-width: unset; margin-bottom: 0.5rem; }
    .tech-tags { flex-wrap: wrap !important; }
    .tag { font-size: 0.72rem !important; padding: 3px 8px !important; }
    .devrel-highlights { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .vision-content { grid-template-columns: 1fr; }
    .contact-grid { flex-direction: column; }
    .opportunities-grid { grid-template-columns: 1fr; }
    .response-details { flex-direction: column; }
    .films-two-col { grid-template-columns: 1fr !important; }
    .skills-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .nav-cards { grid-template-columns: 1fr; }
    .devrel-highlights { grid-template-columns: 1fr; }
    .hero-brand { flex-wrap: wrap; justify-content: center; }
    .page-header h1 { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
