:root {
            --primary: #ffb202;
            --secondary: #cc8e00;
            --bg: #030303;
            --accent: rgba(255, 178, 2, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html,
        body {
            background-color: transparent;
            /* Show animated background */
            color: #fff;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        h1,
        h2,
        h3 {
            font-family: 'Outfit', sans-serif;
        }

        .main-hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 10;
            overflow: hidden;
            /* Prevent glow overflow */
        }

        .bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 178, 2, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
            z-index: -1;
            filter: blur(40px);
            animation: pulse-glow 8s infinite alternate;
        }

        @keyframes pulse-glow {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 0.8;
            }
        }

        .hero-title {
            font-size: clamp(48px, 10vw, 84px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .hero-subtitle {
            font-size: 18px;
            color: #9ba1a5;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s forwards 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .cta-container {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s forwards 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .btn-main {
            display: inline-block;
            padding: 18px 48px;
            background: var(--primary);
            color: #000;
            font-weight: 700;
            font-size: 18px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 178, 2, 0.2);
        }

        .btn-main:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 178, 2, 0.4);
            background: #fff;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .floating-elements div {
            position: absolute;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            100% {
                transform: translate(100px, -100px) rotate(360deg);
            }
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        /* Dual Header Styles */
        .top-promo-bar {
            background-color: var(--primary);
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001;
            padding: 0 20px;
            color: #000;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .top-promo-bar-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-join-top {
            background: #000;
            color: #fff;
            padding: 6px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 12px;
            transition: all 0.3s ease;
            text-transform: none;
            font-weight: 600;
        }

        .btn-join-top:hover {
            background: #222;
            transform: translateY(-1px);
        }

        .main-header {
            height: 80px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            position: fixed;
            top: 44px;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Animated Logo Styles */
        .logo-box {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-img {
            height: 40px;
            filter: drop-shadow(0 0 8px rgba(255, 178, 2, 0.3));
            animation: floatLogo 4s ease-in-out infinite;
        }

        .logo-text {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(90deg, #fff, var(--primary), #fff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shineText 5s linear infinite;
        }

        @keyframes floatLogo {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-3px);
            }
        }

        @keyframes shineText {
            to {
                background-position: 200% center;
            }
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .main-nav ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .main-nav ul li a:hover,
        .main-nav ul li a.active {
            color: #fff;
        }


        .pool-section {
            padding: 100px 0;
            background: #050505;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .section-title p {
            color: #9ba1a5;
        }

        .swiper {
            width: 100%;
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .pool-slide {
            background-position: center;
            background-size: cover;
            width: 300px;
            height: 400px;
            background: #111;
            border-radius: 20px;
            border: 1px solid rgba(255, 178, 2, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            transition: all 0.3s;
        }

        .pool-slide.swiper-slide-active {
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(255, 178, 2, 0.2);
        }

        .pool-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .pool-name {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
            color: #fff;
        }

        .pool-reward {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .pool-features {
            text-align: center;
            font-size: 14px;
            color: #9ba1a5;
            line-height: 1.6;
        }

        .ticker-section {
            padding: 30px 0;
            background: rgba(255, 178, 2, 0.05);
            border-top: 1px solid rgba(255, 178, 2, 0.1);
            border-bottom: 1px solid rgba(255, 178, 2, 0.1);
        }

        .ticker-wrapper {
            display: flex;
            align-items: center;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            white-space: nowrap;
            padding: 0 40px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            width: auto !important;
        }

        .ticker-item span {
            color: var(--primary);
            margin-right: 10px;
        }

        /* Responsive Design */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1002;
        }

        .menu-toggle span {
            display: block;
            width: 30px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: 0.3s;
        }

        @media (max-width: 991px) {
            .header-container {
                padding: 0 20px;
            }

            .main-nav {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .top-promo-bar {
                height: 44px;
                padding: 0 15px;
                font-size: 10px;
            }

            .top-promo-bar-content {
                flex-direction: row;
                justify-content: center;
                gap: 10px;
                width: 100%;
            }

            .btn-join-top {
                padding: 4px 10px;
                font-size: 10px;
                white-space: nowrap;
            }

            .main-header {
                top: 44px;
                height: 70px;
            }

            .main-hero {
                padding-top: 140px;
                height: auto;
                min-height: 100vh;
            }

            .hero-title {
                font-size: 42px;
                margin-bottom: 20px;
            }

            .hero-subtitle {
                font-size: 16px;
                padding: 0 15px;
            }

            .menu-toggle {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #0a0a0a;
                display: flex;
                flex-direction: column;
                padding: 100px 40px;
                transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
                z-index: 1001;
            }

            .main-nav.active {
                right: 0;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 25px;
            }

            .main-nav ul li a {
                font-size: 18px;
            }

            .section-title h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 34px;
            }

            .pool-slide {
                width: 260px;
                height: 360px;
                padding: 20px;
            }

            .btn-main {
                padding: 15px 35px;
                font-size: 16px;
            }
        }