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

.eskimo-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #000d1a 0%, #001429 25%, #002b4d 50%, #005f73 75%, #0a9396 100%);
    background-attachment: fixed;
    height: 90vh;
    color: white;
}

/* Eskimo Header */
.eskimo-header {
    position: absolute;
    top: 40px;
    left: 50px;
    z-index: 100;
}

.eskimo-logo-link {
    text-decoration: none;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.eskimo-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.eskimo-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.logo-title {
    font-size: 23px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

.logo-title span {
    font-weight: 200;
}

.logo-emoji {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: -2px;
    color: white;
}

/* Main Content */
.eskimo-main-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 40px 80px;
    z-index: 10;
}

/* Hero Text */
.hero-text {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 1400px;
    overflow: visible;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.hero-heading span {
    display: block;
    font-weight: 800;
    text-transform: lowercase;
    color: white;
}

.word-stretched {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: clamp(60px, 1vw, 140px);
    letter-spacing: -0.02em;
    margin-bottom: -10px;
    gap: 0;
}

.letter {
    display: flex;
    white-space: nowrap;
}

.stretched-o {
    transform: scaleX(2.5);
    transform-origin: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 40%, rgba(255,255,255,0) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: white(211, 216, 219);
}

.word-marketplace {
    font-size: clamp(60px, 12vw, 140px);
    letter-spacing: -0.02em;
    margin-bottom: -20px;
}

.word-nfts {
    font-size: clamp(50px, 10vw, 120px);
    letter-spacing: 0.3em;
    font-weight: 300;
    opacity: 0.7;
    color: rgba(77, 166, 255, 0.8);
    text-transform: uppercase;
    margin-top: 10px;
    background: linear-gradient(90deg, rgba(77, 166, 255, 0.4) 0%, rgba(10, 147, 150, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(77, 166, 255, 0.3);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: rgba(77, 166, 255, 0.9);
    color: white;
    box-shadow: 0 8px 30px rgba(77, 166, 255, 0.4);
}

.btn-link-sc {
    text-decoration: none;
    color: white;
}

.btn-primary:hover {
    background: rgba(77, 166, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(77, 166, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-exit {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    text-decoration: none;
    width: 60px;
    height: 60px;
    margin-top: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 99999;
}

.btn-exit:hover {
    transform: scale(1.1) rotate(90deg);
}

/* Eskimo Navbar Styling */
.eskimo-navbar {
    margin-top: 10px;
}

.eskimo-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.eskimo-navbar .nav-link:hover {
    background: rgba(77, 166, 255, 0.2) !important;
}

.eskimo-navbar .nav-item.disabled .nav-link {
    color: rgba(255, 255, 255, 0.3) !important;
}

.eskimo-navbar .social-icon {
    color: rgba(255, 255, 255, 0.9);
}

.eskimo-navbar .social-icon:hover {
    background: rgba(77, 166, 255, 0.2);
}


.eskimo-navbar .mobile-menu-toggle {
    color: white;
}

.eskimo-navbar .mobile-menu-toggle:hover {
    background: rgba(77, 166, 255, 0.3);
}

/* Eskimo Mobile Menu */
.eskimo-navbar ~ .mobile-menu {
    background: rgba(0, 20, 40, 0.98);
    backdrop-filter: blur(20px);
}

.eskimo-navbar ~ .mobile-menu .mobile-menu-item {
    color: rgba(255, 255, 255, 0.9);
}

.eskimo-navbar ~ .mobile-menu .mobile-menu-item:hover {
    background: rgba(77, 166, 255, 0.2);
}

.eskimo-navbar ~ .mobile-menu .mobile-submenu-item {
    color: rgba(255, 255, 255, 0.9);
}

.eskimo-navbar ~ .mobile-menu .mobile-submenu-subtitle {
    color: rgba(255, 255, 255, 0.5);
}


/* Eskimo Mega Menu Styling */
.eskimo-navbar .mega-menu {
    background: rgba(0, 20, 40, 0.95);
    border: 1px solid rgba(77, 166, 255, 0.3);
    backdrop-filter: blur(20px);
}

.eskimo-navbar .menu-item {
    color: rgba(255, 255, 255, 0.9);
}

.eskimo-navbar .menu-item:hover {
    background: rgba(77, 166, 255, 0.2);
}

.eskimo-navbar .submenu-item {
    color: rgba(255, 255, 255, 0.9);
}

.eskimo-navbar .submenu-item:hover {
    background: rgba(77, 166, 255, 0.2);
}

.eskimo-navbar .submenu-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Brain Shape */
.brain-container {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(400px, 60vw, 800px);
    height: clamp(400px, 60vw, 800px);
    z-index: 5;
}

.brain-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(77, 166, 255, 0.6) 0%,
        rgba(10, 147, 150, 0.5) 25%,
        rgba(0, 95, 115, 0.4) 50%,
        rgba(0, 43, 77, 0.2) 75%,
        transparent 100%
    );
    border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
    filter: blur(40px);
    animation: brainPulse 4s ease-in-out infinite;
}

.brain-glow {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 30% 40%, 
        rgba(77, 166, 255, 0.8) 0%,
        rgba(10, 147, 150, 0.6) 30%,
        transparent 60%
    );
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes brainPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05) rotate(2deg);
        opacity: 0.9;
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brain-container {
        width: clamp(350px, 70vw, 600px);
        height: clamp(350px, 70vw, 600px);
        bottom: -5%;
    }
}

@media (max-width: 768px) {
    .header {
        top: 30px;
        left: 30px;
    }

    .logo svg {
        width: 30px;
        height: 30px;
    }

    .logo-title {
        font-size: 20px;
        letter-spacing: -1px;
    }

    .logo-subtitle {
        font-size: 10px;
        letter-spacing: -2px;
    }

    .main-content {
        padding: 100px 20px 60px;
    }

    .hero-text {
        margin-bottom: 60px;
        scale: 1.2;
    }

    .word-stretched {
        font-size: clamp(40px, 10vw, 80px);
    }

    .word-marketplace {
        font-size: clamp(40px, 10vw, 80px);
    }

    .word-nfts {
        font-size: clamp(35px, 8vw, 70px);
        letter-spacing: 0.2em;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 200px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .brain-container {
        width: clamp(280px, 80vw, 450px);
        height: clamp(280px, 80vw, 450px);
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .header {
        top: 20px;
        left: 20px;
    }

    .word-stretched {
        font-size: clamp(32px, 9vw, 60px);
    }

    .word-marketplace {
        font-size: clamp(32px, 9vw, 60px);
    }

    .word-nfts {
        font-size: clamp(28px, 7vw, 50px);
        letter-spacing: 0.15em;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .brain-container {
        width: clamp(220px, 85vw, 350px);
        height: clamp(220px, 85vw, 350px);
        bottom: 5%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .brain-shape,
    .brain-glow,
    .btn {
        animation: none;
        transition: none;
    }
}

