@charset "utf-8";
/* OSC-LEAKS Styled Version - Based on TemplateMo 605 Xmas Countdown */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.4);
    --accent-red: #ff3d5a;
    --accent-green: #00d4aa;
    --accent-gold: #ffd700;
    --accent-blue: #4d9fff;
    --glow-red: rgba(255, 61, 90, 0.4);
    --glow-green: rgba(0, 212, 170, 0.4);
    --glow-gold: rgba(255, 215, 0, 0.3);
    --xmas-red: #ff3366;
    --xmas-green: #00ff88;
    --xmas-gold: #ffcc00;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 61, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle linear infinite;
}

.particle:nth-child(odd) {
    background: var(--accent-red);
}

.particle:nth-child(3n) {
    background: var(--accent-green);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-20px) rotate(360deg);
        opacity: 0;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo-text span {
    color: var(--accent-red);
}

/* Easter Egg - Logo Styles */
.logo-easter {
    animation: leakGlow 1.5s infinite alternate !important;
}

.logo-easter polygon {
    stroke: url(#logoGrad);
    stroke-width: 3;
    animation: pulseStroke 2s infinite;
}

.logo-easter circle {
    animation: pulseCenter 1.5s infinite;
}

.logo-xmas polygon {
    stroke: url(#logoGradXmas);
    animation: xmasGlow 2s infinite alternate;
}

.logo-xmas circle {
    fill: url(#logoGradXmas);
    animation: xmasStar 3s infinite;
}

.logo-arg polygon {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLogo 3s forwards;
    stroke: var(--xmas-green);
}

.logo-arg circle {
    fill: var(--xmas-green);
    animation: pulseArg 1s infinite alternate;
}

.logo-leak polygon {
    stroke: var(--xmas-red);
    animation: leakPulse 1s infinite;
}

.logo-leak circle {
    fill: var(--xmas-red);
    animation: leakDot 1.5s infinite;
}

/* Keyframes for Easter Eggs */
@keyframes leakGlow {
    from {
        filter: drop-shadow(0 0 6px #ff3366);
    }
    to {
        filter: drop-shadow(0 0 14px #ff3366);
    }
}

@keyframes pulseStroke {
    0%, 100% { stroke-width: 3; }
    50% { stroke-width: 4; }
}

@keyframes pulseCenter {
    0%, 100% { r: 5; }
    50% { r: 7; }
}

@keyframes xmasGlow {
    0% {
        stroke-width: 2;
        filter: drop-shadow(0 0 5px var(--xmas-red));
    }
    100% {
        stroke-width: 4;
        filter: drop-shadow(0 0 20px var(--xmas-red)) 
                drop-shadow(0 0 40px var(--xmas-green));
    }
}

@keyframes xmasStar {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseArg {
    from {
        r: 5;
    }
    to {
        r: 8;
    }
}

@keyframes leakPulse {
    0%, 100% {
        stroke-width: 2;
    }
    50% {
        stroke-width: 5;
    }
}

@keyframes leakDot {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

/* Toast Messages */
.leak-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0a0a0f;
    color: #ff3366;
    border: 1px solid #ff3366;
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 9999;
    animation: fadeInOut 2.5s forwards;
    border-radius: 4px;
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.xmas-toast {
    background: rgba(10, 10, 15, 0.95);
    color: var(--xmas-green);
    border: 1px solid var(--xmas-green);
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.3);
    padding: 12px 18px;
    font-size: 13px;
    animation: xmasFadeInOut 3s forwards;
}

.arg-toast {
    background: rgba(10, 10, 15, 0.95);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.3);
    padding: 12px 18px;
    font-size: 13px;
    animation: argFadeInOut 3s forwards;
}

.leak-discovered-toast {
    background: rgba(10, 10, 15, 0.95);
    color: var(--xmas-red);
    border: 1px solid var(--xmas-red);
    box-shadow: 0 4px 30px rgba(255, 51, 102, 0.4);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    animation: leakDiscoveredFade 4s forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes xmasFadeInOut {
    0% { opacity: 0; transform: translateY(10px) rotate(-5deg); }
    10% { opacity: 1; transform: translateY(0) rotate(0deg); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-5px) rotate(5deg); }
}

@keyframes argFadeInOut {
    0% { opacity: 0; transform: translateY(10px) scale(0.8); }
    15% { opacity: 1; transform: translateY(0) scale(1); }
    85% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-5px) scale(0.9); }
}

@keyframes leakDiscoveredFade {
    0% { opacity: 0; transform: translateY(20px); }
    15% { opacity: 1; transform: translateY(0); }
    70% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* Snow Effect for Xmas */
.snowflake {
    position: absolute;
    color: white;
    font-size: 1em;
    opacity: 0.8;
    user-select: none;
    pointer-events: none;
    z-index: 1000;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* ARG Mode Effects */
.arg-mode-active {
    filter: hue-rotate(90deg) contrast(1.2) !important;
}

.arg-mode-active .grid-bg::before {
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    animation: argPulse 5s infinite alternate;
}

@keyframes argPulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Konami Code Indicator */
.konami-indicator {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 11px;
    color: var(--accent-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    font-family: monospace;
    z-index: 9998;
}

.konami-indicator.active {
    opacity: 1;
}

/* Mobile Hints */
.logo.arg-hint::after {
    content: '👆';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    opacity: 1;
    animation: pulseHint 1s infinite;
}

@keyframes pulseHint {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Mobile Adjustments */
@media (hover: none) and (pointer: coarse) {
    .logo {
        position: relative;
    }
}

nav {
    display: flex;
    gap: 8px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b) !important;
    color: var(--text-primary) !important;
}

.nav-cta:hover {
    box-shadow: 0 8px 30px var(--glow-red);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 100px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

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

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-gold), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Countdown */
.countdown-wrapper {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

.countdown-item {
    position: relative;
    width: 180px;
    padding: 32px 24px;
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-gold), transparent);
    opacity: 0.6;
}

.countdown-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 61, 90, 0.1), transparent 60%);
    pointer-events: none;
}

.countdown-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-red);
}

.countdown-number {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    background: linear-gradient(180deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin-top: 12px;
}

.countdown-colon {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dim);
    align-self: center;
    margin-bottom: 20px;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.target-date {
    margin-top: 40px;
    padding: 16px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.target-date svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease 1s forwards, bounce 2s ease-in-out infinite 1.5s;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-red), transparent);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Common */
section {
    position: relative;
    z-index: 2;
    padding: 120px 60px;
    max-width: 100vw;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 100%;
    overflow: hidden;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-primary);
    max-width: 100%;
    overflow-wrap: break-word;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 20px auto 0;
}

/* About Section (Content) */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 61, 90, 0.02) 50%, transparent 100%);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 450px;
}

.about-img-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    position: relative;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.about-img-item:hover {
    border-color: var(--border-glow);
    transform: scale(1.02);
}

.about-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-item:hover img {
    transform: scale(1.05);
}

.about-img-item.img-1 {
    grid-row: span 2;
}

.about-img-item.img-2,
.about-img-item.img-3 {
    grid-column: 2;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.about-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content h3 span {
    color: var(--accent-red);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-feature:hover {
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.about-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-green);
    flex-shrink: 0;
}

.about-templatemo {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-templatemo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-gold));
}

.about-templatemo p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-templatemo p strong {
    color: var(--accent-gold);
}

.btn-templatemo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-templatemo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--glow-red);
}

.btn-templatemo svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-primary);
}

/* Webrings & Buttons Iframe */
.webrings-iframe-container {
    width: 100%;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 170, 0.02) 50%, transparent 100%);
}

/* Footer */
footer {
    position: relative;
    z-index: 2;
    padding: 80px 60px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-column h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent-red);
    background: rgba(255, 61, 90, 0.1);
    color: var(--accent-red);
    transform: translateY(-4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

/* Secret ARG Mode Visual Effects */
.arg-mode-active body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 170, 0.05) 2px,
        rgba(0, 212, 170, 0.05) 4px
    );
    pointer-events: none;
    z-index: 999;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 20px;
    }
}

/* Hidden Konami Code Elements */
.secret-konami {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    background: rgba(10, 10, 15, 0.95);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--xmas-green);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.secret-konami.active {
    display: block;
    animation: konamiReveal 0.5s ease-out;
}

@keyframes konamiReveal {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.secret-konami h3 {
    color: var(--xmas-green);
    font-family: 'Syne', sans-serif;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.secret-konami p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.secret-konami .close-konami {
    background: var(--xmas-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.secret-konami .close-konami:hover {
    background: #ff1a4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    section {
        padding: 100px 40px;
    }

    .about-grid {
        gap: 50px;
    }

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

@media (max-width: 920px) {
    header {
        padding: 15px 24px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 8px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border-glass);
    }

    nav.active {
        right: 0;
    }

    nav a {
        width: 100%;
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    section {
        padding: 80px 24px;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        width: 120px;
        padding: 24px 16px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .countdown-colon {
        display: none;
    }

    .target-date {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image-stack {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 60px 24px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Mobile adjustments for easter eggs */
    .leak-toast,
    .xmas-toast,
    .arg-toast,
    .leak-discovered-toast {
        bottom: 80px;
        right: 10px;
        left: 10px;
        text-align: center;
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .konami-indicator {
        bottom: 120px;
        right: 10px;
        left: 10px;
        text-align: center;
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .secret-konami {
        width: 95%;
        padding: 20px;
    }
    
    .snowflake {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: 80px 15px;
    }
    
    .countdown-item {
        width: 90px;
        padding: 20px 12px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
    
    .secret-konami h3 {
        font-size: 1.2rem;
    }
    
    .secret-konami p {
        font-size: 0.9rem;
    }
}

/* Touch-friendly konami indicator */
.konami-indicator {
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Prevent text selection on interactive elements */
.logo, 
.nav-toggle,
.konami-indicator,
.secret-konami .close-konami {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .logo {
        min-height: 44px;
        min-width: 44px;
    }
    
    nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}