
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #6B46C1 0%, #9333EA 25%, #7C3AED 50%, #8B5CF6 75%, #A855F7 100%);
            background-image: url('https://images.unsplash.com/photo-1639152201720-5e536d254d81?q=80&w=3840&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: -1;
        }

        /* Redesigned header to match footer design with glass-morphism and proper layout */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            z-index: 100;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-logo {
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
            letter-spacing: 0.5px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .header-nav {
            display: flex;
            gap: 16px;
        }

        .header-nav a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .header-nav a:hover {
            color: #ffffff;
        }

        .connect-wallet-section {
            display: flex;
            gap: 12px;
        }

        .connect-wallet-btn {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            border: none;
            border-radius: 25px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-width: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .connect-wallet-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
        }

        .connect-wallet-btn:active {
            transform: translateY(0px);
        }

        .wallet-icon {
            font-size: 16px;
        }

        .social-header {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .social-icon.twitter:hover {
            background: rgba(29, 161, 242, 0.2);
            border-color: rgba(29, 161, 242, 0.4);
        }

        .social-icon.telegram:hover {
            background: rgba(0, 136, 204, 0.2);
            border-color: rgba(0, 136, 204, 0.4);
        }

        /* Enhanced main container with improved vertical flow and spacing */
        .main-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 120px 24px 160px;
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
        }

        .logo-section {
            text-align: center;
            margin: 60px 0 20px;
            order: 1;
        }

        .logo-3d {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
        }

        .logo-circle {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.3) 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            animation: float 6s ease-in-out infinite;
        }

        .logo-circle::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.2) 0%, 
                transparent 50%);
        }

        .logo-text {
            font-size: 56px;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            background: linear-gradient(135deg, #60A5FA, #A78BFA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-section {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
            order: 2;
        }

        .reward-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 16px 32px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .reward-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        }

        .diamond-icon {
            font-size: 18px;
        }

        .main-heading {
            font-size: 48px;
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin: 0;
        }

        .info-sections {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 24px;
            order: 3;
        }

        .info-section {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 28px;
            width: 100%;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .info-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .info-section h3 {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            text-align: center;
        }

        .info-section p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 12px;
            text-align: left;
        }

        .info-section ul {
            list-style: none;
            padding: 0;
            margin: 16px 0;
        }

        .info-section ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .info-section ul li::before {
            content: '•';
            color: #10B981;
            font-weight: bold;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .highlight-text {
            color: #10B981;
            font-weight: 600;
        }

        .distribution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 16px 0;
        }

        .distribution-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .distribution-item strong {
            display: block;
            color: #ffffff;
            font-size: 18px;
            margin-bottom: 6px;
            font-weight: 700;
        }

        .distribution-item span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .rules-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 32px;
            width: 100%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            order: 4;
        }

        .rules-title {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin-bottom: 12px;
        }

        .rules-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            margin-bottom: 24px;
        }

        .rules-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .rules-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .rules-list li:last-child {
            border-bottom: none;
        }

        .rules-list li::before {
            content: '✓';
            color: #10B981;
            font-weight: bold;
            font-size: 16px;
            flex-shrink: 0;
        }

        /* Footer design matching the new header aesthetic */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            z-index: 50;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-left strong {
            color: #ffffff;
            font-weight: 700;
        }

        .footer-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .footer-links {
            display: flex;
            gap: 16px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .social-media {
            display: flex;
            gap: 12px;
        }

        /* Enhanced mobile responsiveness with better flow */
        @media (max-width: 768px) {
            .header {
                /* Updated header layout for mobile hamburger menu */
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 16px;
                padding: 16px 20px;
            }

            .header-right {
                /* Reorganized header right section for mobile */
                flex-direction: row;
                align-items: center;
                gap: 12px;
            }

            .header-nav {
                /* Hidden navigation on mobile, shown via hamburger menu */
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(20px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                z-index: 1000;
            }

            .header-nav.active {
                display: flex;
            }

            .header-nav a {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                text-align: center;
                font-size: 16px;
            }

            .header-nav a:last-child {
                border-bottom: none;
            }

            /* Added hamburger menu button for mobile */
            .hamburger-menu {
                display: flex;
                flex-direction: column;
                cursor: pointer;
                padding: 8px;
                gap: 4px;
                order: 3;
            }

            .hamburger-line {
                width: 24px;
                height: 2px;
                background: #ffffff;
                transition: all 0.3s ease;
                border-radius: 2px;
            }

            .hamburger-menu.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .hamburger-menu.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }

            .hamburger-menu.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }

            .connect-wallet-section {
                /* Keep connect wallet button visible and accessible on mobile */
                order: 2;
            }

            .social-header {
                /* Hide social icons on mobile to save space */
                display: none;
            }

            .main-container {
                padding: 160px 20px 180px;
                gap: 32px;
            }

            .connect-wallet-btn {
                padding: 10px 20px;
                font-size: 13px;
                min-width: 120px;
            }

            .brand-logo {
                font-size: 24px;
            }

            .logo-section {
                margin: 40px 0 20px;
            }

            .logo-circle {
                width: 120px;
                height: 120px;
            }

            .logo-text {
                font-size: 48px;
            }

            .main-heading {
                font-size: 36px;
            }

            .info-section {
                padding: 24px;
            }

            .info-section h3 {
                font-size: 20px;
            }

            .info-section p,
            .info-section ul li {
                font-size: 14px;
            }

            .distribution-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .footer {
                flex-direction: column;
                gap: 16px;
                padding: 16px 20px;
                text-align: center;
            }

            .footer-right {
                flex-direction: column;
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 12px 16px;
            }

            .brand-logo {
                font-size: 20px;
            }

            .main-container {
                padding: 140px 16px 160px;
                gap: 24px;
            }

            .connect-wallet-btn {
                padding: 8px 16px;
                font-size: 12px;
                min-width: 100px;
            }

            .wallet-icon {
                font-size: 14px;
            }

            .logo-circle {
                width: 100px;
                height: 100px;
            }

            .logo-text {
                font-size: 40px;
            }

            .main-heading {
                font-size: 28px;
            }

            .reward-badge {
                padding: 12px 24px;
                font-size: 14px;
            }

            .info-section {
                padding: 20px;
            }

            .info-section h3 {
                font-size: 18px;
            }

            .info-section p,
            .info-section ul li {
                font-size: 13px;
            }
        }

        /* Desktop adjustments for better header balance */
        @media (min-width: 1024px) {
            .main-container {
                padding: 140px 60px 200px;
                gap: 48px;
            }

            .connect-wallet-btn {
                padding: 14px 28px;
                font-size: 15px;
                min-width: 160px;
            }

            .logo-circle {
                width: 160px;
                height: 160px;
            }

            .logo-text {
                font-size: 64px;
            }

            .main-heading {
                font-size: 56px;
            }

            .info-sections {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .rules-section {
                grid-column: 1 / -1;
            }
        }

        @media (min-width: 1440px) {
            .main-container {
                padding: 160px 80px 220px;
                gap: 60px;
            }

            .main-heading {
                font-size: 64px;
            }
        }

        /* Added smooth animations for better user experience */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ffffff;
            border-radius: 50%;
            animation: sparkle 2s infinite;
            pointer-events: none;
        }
