:root {
    /* Color Palette - Glossy Purple & Skyblue Theme */
    --bg-dark: #090412;
    --bg-surface: #140a24;
    --glass-layer: rgba(138, 43, 226, 0.08);
    --glass-border: rgba(99, 197, 255, 0.25);
    --accent-gold: #63c5ff; /* Skyblue mapping to original variable */
    --steel-blue: #8a2be2; /* Purple mapping to original variable */
    --deep-crimson: #4a0072;
    --text-main: #f0f5fa;
    --text-muted: #aebce0;
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.15), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(99, 197, 255, 0.12), transparent 30%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-main);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; text-shadow: 0 0 20px rgba(99, 197, 255, 0.3); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); margin-bottom: 0.8rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #9cdbff;
    text-shadow: 0 0 10px rgba(99, 197, 255, 0.5);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-gold { 
    background: linear-gradient(135deg, #a855f7, #63c5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #63c5ff; /* Fallback */
    text-shadow: none;
}
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Disclaimers */
.top-disclaimer {
    background: linear-gradient(90deg, #30005a, #6b21a8, #30005a);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(99, 197, 255, 0.3);
}

/* Glossy Glassmorphism System */
.glass-panel {
    background: linear-gradient(135deg, rgba(30, 15, 50, 0.7), rgba(15, 8, 25, 0.8));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(99, 197, 255, 0.2);
    border-top: 1px solid rgba(99, 197, 255, 0.4);
    border-left: 1px solid rgba(99, 197, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 20px rgba(138, 43, 226, 0.2);
}

.glass-card {
    background: linear-gradient(145deg, rgba(35, 15, 60, 0.6), rgba(15, 8, 25, 0.8));
    border: 1px solid rgba(99, 197, 255, 0.2);
    border-top: 1px solid rgba(99, 197, 255, 0.4);
    border-radius: 16px;
    padding: 35px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    transition: all 0.7s ease;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4), 0 0 20px rgba(99, 197, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(99, 197, 255, 0.5);
}

.glass-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translateX(100%);
}

.game-card-content, .game-card h3 {
    position: relative;
    z-index: 2;
}

.game-card-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 8px;
}

/* Glossy Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(99, 197, 255, 0.4);
    color: #fff;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(99, 197, 255, 0.15));
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(99, 197, 255, 0.8));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    color: #fff;
    border-color: rgba(99, 197, 255, 0.7);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.7), rgba(99, 197, 255, 0.7));
    border: 1px solid rgba(99, 197, 255, 0.6);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary::after {
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(99, 197, 255, 1));
}

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(11, 5, 18, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(99, 197, 255, 0.15);
    z-index: 999;
    transition: background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: rgba(11, 5, 18, 0.95);
    border-bottom: 1px solid rgba(99, 197, 255, 0.4);
    box-shadow: 0 4px 25px rgba(138, 43, 226, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(99, 197, 255, 0.4);
}

.logo span {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--accent-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #8a2be2, #63c5ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(99, 197, 255, 0.6);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Hero Section Overhaul */
.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/dark-atmospheric-detective-desk-with-cinematic-lighting.png');
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.2) saturate(1.2);
    transform: scale(1.1);
    z-index: 0;
    animation: bg-breathe 25s infinite alternate ease-in-out;
}

@keyframes bg-breathe {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%),
                radial-gradient(circle at 70% 50%, rgba(138, 43, 226, 0.2), transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(99, 197, 255, 0.2), transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at center, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px;
    z-index: 1;
    opacity: 0.4;
    animation: particle-scroll 40s linear infinite;
}

@keyframes particle-scroll {
    0% { background-position: 0 0, 20px 20px; }
    100% { background-position: 600px 600px, 420px 420px; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-weight: 300;
}

.hero-content h1 strong {
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #63c5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    animation: text-glow 3s infinite alternate;
}

@keyframes text-glow {
    0% { filter: drop-shadow(0 0 5px rgba(99, 197, 255, 0.2)); }
    100% { filter: drop-shadow(0 0 15px rgba(99, 197, 255, 0.6)); }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    animation: btn-pulse 2.5s infinite;
}

@keyframes btn-pulse {
    0% { box-shadow: 0 0 15px rgba(138, 43, 226, 0.5); }
    50% { box-shadow: 0 0 25px rgba(99, 197, 255, 0.8); }
    100% { box-shadow: 0 0 15px rgba(138, 43, 226, 0.5); }
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(99, 197, 255, 0.4);
    box-shadow: none;
}

.btn-outline::after {
    display: none;
}

.btn-outline:hover {
    background: rgba(99, 197, 255, 0.1);
    border-color: rgba(99, 197, 255, 0.9);
    box-shadow: 0 0 15px rgba(99, 197, 255, 0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid rgba(99, 197, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 1px 15px rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.image-wrapper img {
    border-radius: 10px;
    width: 100%;
    display: block;
    filter: brightness(0.95) contrast(1.1);
}

.scanner-line {
    position: absolute;
    top: 10px; left: 10px; right: 10px; height: 2px;
    background: #63c5ff;
    box-shadow: 0 0 15px #63c5ff, 0 0 25px #63c5ff;
    z-index: 5;
    opacity: 0.6;
    animation: scan 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scan {
    0%, 100% { top: 10px; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    95% { top: calc(100% - 15px); opacity: 0; }
}

.floating-element {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 14px;
    background: rgba(15, 8, 25, 0.85);
    border: 1px solid rgba(99, 197, 255, 0.5);
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.9), inset 0 0 15px rgba(138, 43, 226, 0.3);
    z-index: 10;
    backdrop-filter: blur(8px);
}

.floating-element img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.el-1 {
    bottom: -40px;
    left: -50px;
    animation: float-alt 6s ease-in-out infinite 1s;
}

@keyframes float-alt {
    0% { transform: translateY(0px) rotate(-6deg); }
    50% { transform: translateY(-25px) rotate(4deg); }
    100% { transform: translateY(0px) rotate(-6deg); }
}

.animation-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animation-float {
    animation: float 8s ease-in-out infinite;
}

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

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(99, 197, 255, 0.4);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-main);
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #63c5ff;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; width: 16px; height: 16px;
    background: #63c5ff;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 1.5s infinite ease-out;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}
/* End Hero Section Overhaul */

/* Feature Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

/* Game Card */
.game-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(99, 197, 255, 0.2);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.game-card-content {
    padding: 25px;
}

.game-card-content h3 {
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.game-card:hover .game-card-img {
    transform: scale(1.08);
}

.game-card-img-wrapper {
    overflow: hidden;
}

/* Game iFrame Container */
.game-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border: 1px solid rgba(99, 197, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 25px rgba(138, 43, 226, 0.4);
    position: relative;
    overflow: hidden;
}

.game-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.game-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(11, 5, 18, 0.5);
    border: 1px solid rgba(99, 197, 255, 0.2);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-sans);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(21, 10, 37, 0.8);
    border-color: rgba(99, 197, 255, 0.7);
    box-shadow: 0 0 15px rgba(99, 197, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(99, 197, 255, 0.15);
    padding: 20px 0;
}

.faq-item h3 {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #a855f7, #63c5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background: #06020a;
    border-top: 1px solid rgba(99, 197, 255, 0.2);
    padding: 60px 0 30px;
    font-size: 0.9rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 197, 255, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(138, 43, 226, 0.5);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
}

.footer-col ul a:hover {
    color: var(--accent-gold);
}

.footer-disclaimer {
    background: linear-gradient(135deg, rgba(21, 10, 37, 0.5), rgba(11, 5, 18, 0.8));
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(99, 197, 255, 0.15);
    margin-bottom: 30px;
    text-align: center;
    box-shadow: inset 0 1px 15px rgba(138, 43, 226, 0.15);
}

.footer-disclaimer p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(99, 197, 255, 0.1);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.badge {
    border: 1px solid rgba(99, 197, 255, 0.4);
    background: rgba(138, 43, 226, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(99, 197, 255, 0.95);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 2px 8px rgba(0,0,0,0.5);
}

/* Legal Pages */
.legal-content {
    background: linear-gradient(145deg, rgba(30, 15, 50, 0.7), rgba(15, 8, 25, 0.9));
}
.legal-content h1 {
    text-align: center;
    background: linear-gradient(135deg, #a855f7, #63c5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}
.legal-content h2 { margin-top: 2.5rem; font-size: 1.5rem; color: var(--accent-gold); }
.legal-content h3 { margin-top: 1.5rem; font-size: 1.2rem; color: #fff; }
.legal-content ul { padding-left: 20px; margin-bottom: 1rem; color: var(--text-muted); }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content p { color: var(--text-muted); line-height: 1.8; }
.legal-content strong { color: #fff; }

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-content p { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .el-1 { left: 10px; bottom: -20px; width: 100px; height: 100px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(11, 5, 18, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 998;
    }
    
    .nav-links.active { left: 0; }
    .nav-links li { margin: 15px 0; }
    .nav-links a { font-size: 1.2rem; }
    
    .menu-toggle { display: block; }
    .menu-toggle.active .hamburger { background: transparent; }
    .menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
    .menu-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }
    
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    .hero { min-height: auto; padding: 60px 0; }
}