
        @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Playfair+Display:wght@400;700;900&family=Oswald:wght@400;600;700&family=Bebas+Neue&family=Orbitron:wght@400;700;900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mozilla+Headline:wght@200..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Cinzel', serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #0a0a0a;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
                linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            background-attachment: fixed;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Sticky Header */
        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #1a0000, #330000, #1a0000);
            color: #ffd700;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            padding: 15px 0;
            z-index: 1000;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            border-bottom: 2px solid #ffd700;
        }
        
        .sticky-header.visible {
            transform: translateY(0);
        }
        
        .sticky-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            font-family: 'Orbitron', monospace;
        }
        
        .sticky-cta {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            padding: 12px 28px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }
        
        .sticky-cta:hover {
            background: linear-gradient(135deg, #ffb700, #ffd700);
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
        }
        
        /* Main Header */
        .header {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 25%, #330000 50%, #1a0000 75%, #0a0a0a 100%);
            color: #ffd700;
            padding: 80px 0 50px;
            text-align: center;
            position: relative;
            border-bottom: 3px solid #ffd700;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>') repeat;
            opacity: 0.3;
        }
        
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }
        
        h1 {
            font-size: 3.2em;
            margin-bottom: 20px;
            font-weight: 900;
            line-height: 1.2;
            color: #ffd700;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            position: relative;
            z-index: 1;
        }
        
        .subheadline {
            font-size: 1.5em;
            margin-bottom: 20px;
            color: #e0e0e0;
            font-family: 'Cinzel', serif;
            position: relative;
            z-index: 1;
        }
        
        .student-count {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
            padding: 15px 25px;
            border-radius: 30px;
            display: inline-block;
            font-weight: bold;
            margin-top: 20px;
            border: 2px solid #ffd700;
            font-family: 'Orbitron', monospace;
            position: relative;
            z-index: 1;
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 25%, #330000 50%, #1a0000 75%, #0a0a0a 100%);
            padding: 80px 0;
            text-align: center;
            border-top: 3px solid #ffd700;
            position: relative;
        }
        
        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-chips" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffd700" opacity="0.1"/><circle cx="5" cy="5" r="1" fill="%23ff6b47" opacity="0.1"/><circle cx="25" cy="25" r="1.5" fill="%2300ff88" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-chips)"/></svg>') repeat;
            opacity: 0.2;
        }
        
        .section-title {
            font-size: 2.8em;
            color: #ffd700;
            margin-bottom: 30px;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        }

        .price-comparison {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            border-radius: 25px;
            padding: 50px;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            border: 3px solid #ffd700;
            z-index: 1;
        }
        
        .price-comparison::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #ffd700, #ff6b47, #00ff88, #ffd700);
        }
        
        .original-price {
            font-size: 2em;
            color: #666;
            text-decoration: line-through;
            margin-bottom: 15px;
            font-family: 'Orbitron', monospace;
        }
        
        .crypto-offer {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            position: relative;
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
        }
        
        .crypto-offer::before {
            content: '🎰';
            position: absolute;
            top: -15px;
            right: 25px;
            font-size: 3em;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
        }
        
        .crypto-price {
            font-size: 4.5em;
            font-weight: bold;
            margin: 15px 0;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            font-family: 'Orbitron', monospace;
        }
        
        .savings-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b47, #ff4757);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            margin-bottom: 25px;
            font-size: 1.2em;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
            box-shadow: 0 0 20px rgba(255, 107, 71, 0.5);
        }

        /* Trust Section */
        .trust-section {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            padding: 40px;
            border-radius: 20px;
            margin: 30px 0;
            border: 2px solid #00ff88;
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
        }
        
        .trust-indicators {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .trust-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 15px;
            border: 1px solid #333;
        }
        
        .trust-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
            display: block;
        }

        /* Payment Options */
        .payment-options {
            margin-top: 30px;
        }
        
        .payment-option {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            border: 2px solid #333;
            border-radius: 15px;
            padding: 25px;
            margin: 15px 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .payment-option:hover {
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        
        .payment-option.binance {
            border-color: #f0b90b;
        }
        
        .payment-option.binance:hover {
            box-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
        }
        
        .payment-option-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .payment-icon {
            font-size: 2em;
        }
        
        .payment-title {
            font-size: 1.3em;
            font-weight: bold;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
        }
        
        .payment-description {
            color: #ccc;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .payment-steps {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ffd700;
        }
        
        .payment-steps ol {
            margin: 10px 0 0 20px;
            color: #e0e0e0;
        }
        
        .payment-steps li {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .telegram-info {
            background: linear-gradient(135deg, #0088cc, #006699);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            border: 2px solid #00aaff;
            box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
        }
        
        .telegram-username {
            font-size: 1.2em;
            font-weight: bold;
            font-family: 'Orbitron', monospace;
            margin: 10px 0;
        }

        /* Countdown Timer */
        .countdown {
            background: linear-gradient(135deg, #ff6b47, #ff4757);
            color: white;
            padding: 30px;
            border-radius: 20px;
            margin: 40px 0;
            font-size: 1.3em;
            font-weight: bold;
            text-align: center;
            box-shadow: 0 15px 40px rgba(255, 107, 71, 0.4);
            border: 2px solid #ff8a80;
        }
        
        #timer, #timer2, #bannerTimer {
            font-size: 2.5em;
            font-family: 'Orbitron', monospace;
            margin: 15px 0;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        }

        /* Mobile Responsiveness - Comprehensive */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            /* Header adjustments */
            h1 {
                font-size: 2.2em;
                line-height: 1.1;
                margin-bottom: 15px;
            }
            
            .subheadline {
                font-size: 1.2em;
                margin-bottom: 15px;
            }
            
            .student-count {
                padding: 12px 20px;
                font-size: 0.9em;
            }
            
            /* Section titles */
            .section-title {
                font-size: 2em;
                margin-bottom: 20px;
                line-height: 1.2;
            }
            
            /* Pricing section */
            .pricing-section {
                padding: 60px 0;
            }
            
            .price-comparison {
                padding: 30px 20px;
                margin: 0 10px;
            }
            
            .original-price {
                font-size: 1.6em;
                margin-bottom: 10px;
            }
            
            .crypto-offer {
                padding: 25px 20px;
                margin: 25px 0;
            }
            
            .crypto-price {
                font-size: 3em;
                margin: 10px 0;
            }
            
            .savings-badge {
                font-size: 1em;
                padding: 10px 20px;
                margin-bottom: 20px;
            }
            
            /* Trust section */
            .trust-section {
                padding: 25px 20px;
                margin: 20px 0;
            }
            
            .trust-indicators {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .trust-item {
                padding: 15px;
            }
            
            .trust-icon {
                font-size: 2em;
                margin-bottom: 8px;
            }
            
            /* Payment options */
            .payment-options h3 {
                font-size: 1.1em;
                margin-bottom: 15px;
            }
            
            .payment-option {
                padding: 20px 15px;
                margin: 10px 0;
            }
            
            .payment-option-header {
                gap: 10px;
                margin-bottom: 12px;
            }
            
            .payment-icon {
                font-size: 1.8em;
            }
            
            .payment-title {
                font-size: 1.1em;
            }
            
            .payment-description {
                font-size: 0.9em;
                margin-bottom: 12px;
            }
            
            .payment-steps {
                padding: 15px;
            }
            
            .payment-steps ol {
                margin: 8px 0 0 15px;
            }
            
            .payment-steps li {
                margin-bottom: 6px;
                font-size: 0.9em;
            }
            
            /* Telegram info */
            .telegram-info {
                padding: 15px;
                margin: 15px 0;
            }
            
            .telegram-username {
                font-size: 1.1em;
            }
            
            /* Payment buttons */
            .payment-options button {
                padding: 18px 25px !important;
                font-size: 1.1em !important;
                margin-bottom: 12px !important;
            }
            
            /* Countdown */
            .countdown {
                padding: 20px 15px;
                margin: 25px 0;
                font-size: 1.1em;
            }
            
            #timer, #timer2, #bannerTimer {
                font-size: 2em;
                margin: 10px 0;
            }
            
            /* Sticky header mobile */
            .sticky-content {
                flex-direction: column;
                gap: 10px;
                font-size: 0.85em;
                padding: 0 15px;
            }
            
            .sticky-cta {
                padding: 8px 20px;
                font-size: 0.9em;
            }
        }

        /* Small mobile devices (320px - 480px) */
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            h1 {
                font-size: 1.8em;
            }
            
            .subheadline {
                font-size: 1.1em;
            }
            
            .section-title {
                font-size: 1.8em;
            }
            
            .price-comparison {
                padding: 25px 15px;
                margin: 0 5px;
            }
            
            .crypto-offer {
                padding: 20px 15px;
            }
            
            .crypto-price {
                font-size: 2.5em;
            }
            
            .trust-section {
                padding: 20px 15px;
            }
            
            .payment-option {
                padding: 15px 10px;
            }
            
            .payment-title {
                font-size: 1em;
            }
            
            .payment-steps {
                padding: 12px;
            }
            
            .telegram-info {
                padding: 12px;
            }
            
            .countdown {
                padding: 15px 10px;
            }
            
            #timer, #timer2, #bannerTimer {
                font-size: 1.8em;
            }
        }

        /* Extra small devices (up to 320px) */
        @media (max-width: 320px) {
            h1 {
                font-size: 1.6em;
            }
            
            .section-title {
                font-size: 1.6em;
            }
            
            .crypto-price {
                font-size: 2.2em;
            }
            
            .payment-option-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .payment-icon {
                font-size: 1.5em;
            }
            
            #timer, #timer2, #bannerTimer {
                font-size: 1.6em;
            }
        }

        /* Modal responsiveness */
        @media (max-width: 768px) {
            .crypto-modal-content {
                padding: 30px 20px !important;
                margin: 15px !important;
                width: calc(100% - 30px) !important;
                max-width: none !important;
            }
            
            /* Binance Modal Mobile */
            #binancePayModal .crypto-modal-content h3 {
                font-size: 1.3em !important;
                margin-bottom: 15px !important;
            }
            
            #binancePayModal .crypto-modal-content div[style*="width: 200px"] {
                width: 150px !important;
                height: 150px !important;
                font-size: 0.8em !important;
            }
            
            #binanceId {
                font-size: 1em !important;
                margin-bottom: 12px !important;
            }
            
            #copyBinanceBtn {
                padding: 12px 16px !important;
                font-size: 0.85em !important;
            }
            
            /* Direct Modal Mobile */
            #walletAddress {
                font-size: 0.8em !important;
                line-height: 1.3 !important;
                margin-bottom: 12px !important;
            }
            
            #copyBtn {
                padding: 12px 16px !important;
                font-size: 0.85em !important;
            }
        }

        @media (max-width: 480px) {
            .crypto-modal-content {
                padding: 25px 15px !important;
                margin: 10px !important;
            }
            
            /* Binance Modal Small Mobile */
            #binancePayModal .crypto-modal-content div[style*="width: 200px"] {
                width: 120px !important;
                height: 120px !important;
                font-size: 0.7em !important;
            }
            
            #binanceId {
                font-size: 0.9em !important;
            }
            
            #copyBinanceBtn {
                padding: 10px 14px !important;
                font-size: 0.8em !important;
            }
            
            .crypto-modal-content h3 {
                font-size: 1.3em !important;
                margin-bottom: 15px !important;
            }
            
            .crypto-modal-content p {
                font-size: 0.9em !important;
                margin-bottom: 15px !important;
            }
            
            .crypto-modal-content h4 {
                font-size: 1em !important;
                margin-bottom: 10px !important;
            }
            
            .crypto-modal-content ol {
                font-size: 0.85em !important;
            }
            
            .crypto-modal-content ol li {
                margin-bottom: 6px !important;
            }
            
            /* Direct Modal Small Mobile */
            #walletAddress {
                font-size: 0.75em !important;
                padding: 15px !important;
            }
            
            #copyBtn {
                padding: 10px 14px !important;
                font-size: 0.8em !important;
            }
        }

        @media (max-width: 320px) {
            .crypto-modal-content {
                padding: 20px 10px !important;
            }
            
            /* Binance Modal Extra Small */
            #binancePayModal .crypto-modal-content div[style*="width: 200px"] {
                width: 100px !important;
                height: 100px !important;
                font-size: 0.65em !important;
            }
            
            .crypto-modal-content h3 {
                font-size: 1.2em !important;
            }
            
            #binanceId {
                font-size: 0.8em !important;
            }
            
            #copyBinanceBtn {
                font-size: 0.75em !important;
            }
            
            /* Direct Modal Extra Small */
            #walletAddress {
                font-size: 0.7em !important;
                padding: 12px !important;
            }
        }
        /* Floating Telegram Button */
.telegram-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc, #006699);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(0, 136, 204, 0.3);
    text-decoration: none;
    animation: telegramPulse 2s infinite;
}

.telegram-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.6);
    background: linear-gradient(135deg, #00aaff, #0088cc);
    border-color: rgba(0, 170, 255, 0.5);
}

.telegram-float:active {
    transform: scale(0.95) translateY(0px);
}

.telegram-icon {
    width: 28px;
    height: 28px;
    fill: white;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Telegram tooltip */
.telegram-float::before {
    content: "💬 Contact @casinoaffiliation";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    color: #ffd700;
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Nunito', sans-serif;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid #0088cc;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.telegram-float:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
}

/* Pulse animation */
@keyframes telegramPulse {
    0% {
        box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4), 0 0 0 0 rgba(0, 136, 204, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4), 0 0 0 10px rgba(0, 136, 204, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4), 0 0 0 0 rgba(0, 136, 204, 0);
    }
}

/* Mobile responsiveness for Telegram button */
@media (max-width: 768px) {
    .telegram-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .telegram-float::before {
        right: 65px;
        font-size: 12px;
        padding: 10px 14px;
    }
    
    .telegram-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .telegram-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .telegram-float::before {
        right: 60px;
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .telegram-icon {
        width: 22px;
        height: 22px;
    }
}