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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #E3F2FD 0%, #B3E5FC 50%, #81D4FA 100%);
    color: #1a1a1a;
    overflow-x: hidden;
    padding-top: 80px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(129, 212, 250, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Roadmap page specific background */
body.roadmap-page {
    background: linear-gradient(to bottom, 
        #E3F2FD 0%, 
        #B3E5FC 15%, 
        #81D4FA 30%, 
        #FFE0B2 60%, 
        #FFCC80 80%, 
        #FFB74D 100%);
    min-height: 100vh;
}

body.roadmap-page::before {
    background: 
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(255, 183, 77, 0.3) 0%, transparent 50%);
}

/* Snowflake Animation (Index page) */
.snowflake {
    position: fixed;
    color: #fff;
    font-size: 1.5em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    animation: snowfall linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes snowfall {
    0% { 
        opacity: 0; 
        transform: translateY(0) rotate(0deg);
    }
    10% { 
        opacity: 0.8; 
    }
    90% {
        opacity: 0.8;
    }
    100% { 
        opacity: 0; 
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Weather Effects (Roadmap page) */
.weather-particle {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.weather-particle.snowflake {
    color: #fff;
    font-size: 1.5em;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    opacity: 0;
}

.sun-ray {
    color: #FFD54F;
    font-size: 2em;
    text-shadow: 0 0 20px rgba(255, 213, 79, 0.8);
    animation: sunShine 3s ease-in-out infinite;
    opacity: 0;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(227, 242, 253, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #00BCD4;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 188, 212, 0.2);
}

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

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #0288D1;
    text-decoration: none;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #01579B;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #00BCD4;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00BCD4, #0288D1);
    transition: width 0.3s ease;
}

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

.social-icon {
    color: #01579B;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.social-icon:hover {
    color: #00BCD4;
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 188, 212, 0.3);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    padding: 80px 20px 50px;
    position: relative;
}

.logo {
    margin-bottom: 25px;
    /*animation: gentleFloat 4s ease-in-out infinite;*/
    display: inline-block;
}

.logo img {
    filter: drop-shadow(4px 4px 0 #00BCD4) drop-shadow(8px 8px 0 rgba(0, 188, 212, 0.3));
    max-width: 300px;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #0288D1;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(0, 188, 212, 0.3);
}

/* Roadmap page h1 */
.roadmap-page h1 {
    background: linear-gradient(135deg, #0288D1 0%, #00BCD4 30%, #FF6B35 70%, #FFB74D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.5rem;
    letter-spacing: 6px;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #00BCD4;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.15rem;
    color: #01579B;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.roadmap-page .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Temperature Legend */
.temperature-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.temp-marker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.temp-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(179, 229, 252, 0.4) 0%, rgba(129, 212, 250, 0.4) 100%);
    border: 3px solid #00BCD4;
    border-radius: 30px;
    padding: 70px 50px;
    margin: 50px 0;
    box-shadow: 
        0 20px 60px rgba(0, 188, 212, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.narrative {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    line-height: 2.2;
    color: #01579B;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.highlight {
    color: #FF6B35;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 70px 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(227, 242, 253, 0.9) 100%);
    border: 3px solid rgba(0, 188, 212, 0.5);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 188, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 188, 212, 0.4);
    border-color: #FF6B35;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 12px rgba(0, 188, 212, 0.4));
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #0288D1;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
}

.feature-card p {
    color: #01579B;
    line-height: 1.9;
    font-weight: 400;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 70px 30px;
    background: linear-gradient(135deg, rgba(179, 229, 252, 0.5) 0%, rgba(129, 212, 250, 0.5) 100%);
    border-radius: 30px;
    margin: 50px 0;
    border: 3px solid rgba(0, 188, 212, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 20px 60px rgba(0, 188, 212, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    color: #0288D1;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 22px 70px;
    font-size: 1.4rem;
    font-weight: 700;
    border: 3px solid #00BCD4;
    border-radius: 60px;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px;
    color: #01579B;
    font-weight: 400;
}

.penguin-emoji {
    color: #0288D1;
    font-size: 2.5rem;
    display: inline-block;
    animation: gentleFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 188, 212, 0.5));
}

/* Timeline (Roadmap page) */
.timeline-container {
    position: relative;
    padding: 60px 0 100px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, 
        #E3F2FD 0%,
        #81D4FA 20%, 
        #4FC3F7 30%,
        #29B6F6 40%,
        #FFE0B2 60%,
        #FFCC80 75%,
        #FFB74D 85%,
        #FFA726 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left .timeline-content {
    margin-right: calc(50% + 80px);
    text-align: left;
}

.timeline-item.right .timeline-content {
    margin-left: calc(50% + 80px);
    text-align: left;
}

/* Temperature-based styling */
.timeline-item.arctic .timeline-dot {
    background: linear-gradient(135deg, #E3F2FD, #81D4FA);
    border: 4px solid #00BCD4;
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.8);
}

.timeline-item.cold .timeline-dot {
    background: linear-gradient(135deg, #81D4FA, #4FC3F7);
    border: 4px solid #0288D1;
    box-shadow: 0 0 30px rgba(2, 136, 209, 0.8);
}

.timeline-item.cool .timeline-dot {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    border: 4px solid #0277BD;
    box-shadow: 0 0 30px rgba(2, 119, 189, 0.8);
}

.timeline-item.warm .timeline-dot {
    background: linear-gradient(135deg, #FFE0B2, #FFCC80);
    border: 4px solid #FF6B35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

.timeline-item.hot .timeline-dot {
    background: linear-gradient(135deg, #FFCC80, #FFB74D);
    border: 4px solid #F57C00;
    box-shadow: 0 0 30px rgba(245, 124, 0, 0.8);
}

.timeline-item.dubai .timeline-dot {
    background: linear-gradient(135deg, #FFD54F, #FFA726);
    border: 4px solid #FF6F00;
    box-shadow: 0 0 40px rgba(255, 111, 0, 1);
    animation: dubaiPulse 2s infinite;
}

@keyframes dubaiPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 111, 0, 0.8);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 111, 0, 1), 0 0 80px rgba(255, 215, 0, 0.6);
        transform: translateX(-50%) scale(1.2);
    }
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.current .timeline-dot {
    width: 36px;
    height: 36px;
}

.timeline-temp {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 15px;
    white-space: nowrap;
    z-index: 3;
}

.timeline-item.arctic .timeline-temp {
    color: #0288D1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.timeline-item.cold .timeline-temp {
    color: #0277BD;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.timeline-item.cool .timeline-temp {
    color: #01579B;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.timeline-item.warm .timeline-temp {
    color: #FF6B35;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

.timeline-item.hot .timeline-temp {
    color: #F57C00;
    text-shadow: 0 0 15px rgba(255, 235, 59, 0.7);
}

.timeline-item.dubai .timeline-temp {
    color: #FF6F00;
    text-shadow: 0 0 20px rgba(255, 215, 0, 1);
    animation: heatShimmer 2s infinite;
}

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

.timeline-date {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid;
    white-space: nowrap;
    z-index: 3;
}

.timeline-item.arctic .timeline-date,
.timeline-item.cold .timeline-date,
.timeline-item.cool .timeline-date {
    color: #0288D1;
    border-color: #00BCD4;
}

.timeline-item.warm .timeline-date,
.timeline-item.hot .timeline-date,
.timeline-item.dubai .timeline-date {
    color: #F57C00;
    border-color: #FF6B35;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid;
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    margin-top: 120px;
}

.timeline-item.arctic .timeline-content {
    border-color: rgba(0, 188, 212, 0.5);
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.timeline-item.cold .timeline-content {
    border-color: rgba(2, 136, 209, 0.5);
    background: linear-gradient(135deg, rgba(179, 229, 252, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.timeline-item.cool .timeline-content {
    border-color: rgba(2, 119, 189, 0.5);
    background: linear-gradient(135deg, rgba(129, 212, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.timeline-item.warm .timeline-content {
    border-color: rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, rgba(255, 224, 178, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.timeline-item.hot .timeline-content {
    border-color: rgba(245, 124, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 204, 128, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.timeline-item.dubai .timeline-content {
    border-color: rgba(255, 111, 0, 0.7);
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 10px 40px rgba(255, 111, 0, 0.3);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-item.arctic h3,
.timeline-item.cold h3,
.timeline-item.cool h3 {
    color: #0288D1;
}

.timeline-item.warm h3,
.timeline-item.hot h3,
.timeline-item.dubai h3 {
    color: #F57C00;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #01579B;
    margin-bottom: 15px;
}

.timeline-content ul {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
    color: #01579B;
}

.timeline-content li {
    margin-bottom: 8px;
}

.timeline-status {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 15px;
}

.status-completed {
    background: rgba(0, 188, 212, 0.2);
    color: #0288D1;
    border: 2px solid #0288D1;
}

.status-current {
    background: rgba(255, 107, 53, 0.2);
    color: #FF6B35;
    border: 2px solid #FF6B35;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.7);
    }
}

.status-upcoming {
    background: rgba(245, 124, 0, 0.15);
    color: #F57C00;
    border: 2px solid rgba(245, 124, 0, 0.4);
}

.timeline-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-temp {
        left: 30px;
    }

    .timeline-date {
        left: 30px;
    }

    h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .temperature-legend {
        gap: 20px;
    }

    .temp-marker {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    nav .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu li a {
        font-size: 0.75rem;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }

    .social-icons {
        margin-left: 10px;
        padding-left: 10px;
        gap: 15px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    h1 { 
        font-size: 3rem; 
        letter-spacing: 4px; 
    }

    .roadmap-page h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .logo img { 
        max-width: 200px;
    }
    
    .narrative { 
        font-size: 1.15rem; 
        line-height: 2; 
    }
    
    .hero-section { 
        padding: 45px 25px; 
    }
    
    .cta-title { 
        font-size: 2.2rem; 
    }
    
    .features { 
        grid-template-columns: 1fr; 
    }
    
    .timeline-content {
        padding: 30px 20px;
        margin-top: 100px;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }

    .timeline-temp {
        font-size: 1.5rem;
    }
}

/* Hamburger menu - hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0288D1;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
        touch-action: manipulation; /* Improve touch response */
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px); /* dvh for Safari */
        background: rgba(227, 242, 253, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px); /* Safari prefix */
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 188, 212, 0.2);
        border-left: 2px solid #00BCD4;
        overflow-y: auto; /* Allow scrolling if needed */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}