@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;
        }
        
        /* Product Section */
        .product-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
            padding: 80px 0;
            border-top: 1px solid #333;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .product-images {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        
        .main-image {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
            border: 2px solid #333;
        }
        
        .main-image:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
        }
        
        .image-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .thumbnail {
            width: 100%;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            border: 2px solid #333;
            transition: all 0.3s ease;
        }
        
        .thumbnail:hover, .thumbnail.active {
            border-color: #ffd700;
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        
        .product-details h2 {
            color: #ffd700;
            margin-bottom: 25px;
            font-size: 2.5em;
            font-family: 'Playfair Display', serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        .pain-points {
            background: linear-gradient(135deg, #2d1810, #1a0f08);
            border-left: 5px solid #ff6b47;
            padding: 30px;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        
        .pain-points h3 {
            color: #ff6b47;
            margin-bottom: 20px;
            font-size: 1.4em;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
        }
        
        .pain-points ul {
            list-style: none;
            padding-left: 0;
        }
        
        .pain-points li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
            color: #e0e0e0;
        }
        
        .pain-points li:before {
            content: "🎰";
            position: absolute;
            left: 0;
            top: 0;
        }
        
        .detail-section {
            margin-bottom: 40px;
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid #ffd700;
            border: 1px solid #333;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .detail-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.5em;
            font-family: 'Orbitron', monospace;
        }
        
        .detail-item {
            display: flex;
            align-items: start;
            margin-bottom: 18px;
            gap: 12px;
        }
        
        .check-icon {
            color: #00ff88;
            font-size: 1.3em;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        /* Proof Gallery */
        .proof-section {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            padding: 80px 0;
            text-align: center;
            border-top: 1px solid #333;
        }
        
        .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);
        }
        
        .proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .proof-item {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            transition: transform 0.3s ease;
        }
        
        .proof-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(255, 215, 0, 0.2);
        }
        
        .proof-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 2px solid #333;
        }
        
        .proof-badge {
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #000;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: bold;
            font-family: 'Bebas Neue', cursive;
        }
        
        /* Differentiation Section */
        .differentiation-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
            padding: 80px 0;
            border-top: 1px solid #333;
        }
        
        .comparison-table {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
            margin-top: 50px;
            border: 2px solid #333;
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 25px;
            text-align: left;
            border-bottom: 1px solid #333;
        }
        
        .comparison-table th {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            font-weight: bold;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
        }
        
        .comparison-table .us-column {
            background: linear-gradient(135deg, #1a2d1a, #0f1f0f);
            color: #e0e0e0;
        }
        
        .comparison-table .them-column {
            background: linear-gradient(135deg, #2d1a1a, #1f0f0f);
            color: #e0e0e0;
        }
        
        /* Success Timeline */
        .timeline-section {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            padding: 80px 0;
            border-top: 1px solid #333;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #ffd700, #ff6b47, #ffd700);
            transform: translateX(-50%);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            display: flex;
            align-items: center;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }
        
        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            width: 45%;
            position: relative;
            border: 1px solid #333;
        }
        
        .timeline-day {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
            margin: 0 20px;
            z-index: 2;
            position: relative;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            border: 3px solid #000;
        }
        
        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
            padding: 80px 0;
            border-top: 1px solid #333;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            padding: 35px;
            border-radius: 20px;
            border-left: 5px solid #ffd700;
            position: relative;
            transition: transform 0.3s ease;
            border: 1px solid #333;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .testimonial:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.1em;
            color: #e0e0e0;
            font-family: 'Cinzel', serif;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 8px;
            font-family: 'Orbitron', monospace;
        }
        
        .testimonial-earnings {
            color: #00ff88;
            font-weight: bold;
            font-size: 1em;
            font-family: 'Bebas Neue', cursive;
        }
        
        .verified-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #000;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: bold;
            font-family: 'Bebas Neue', cursive;
        }
        
        /* Warning Section */
        .warning-section {
            background: linear-gradient(135deg, #330000, #1a0000, #330000);
            color: #ffd700;
            padding: 60px 0;
            text-align: center;
            border-top: 3px solid #ff6b47;
            border-bottom: 3px solid #ff6b47;
        }
        
        .warning-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .spots-counter {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
            padding: 25px;
            border-radius: 20px;
            margin: 25px 0;
            border: 2px solid #ffd700;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        }
        
        .spots-number {
            font-size: 4em;
            font-weight: bold;
            display: block;
            font-family: 'Orbitron', monospace;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        }
        
        /* 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;
        }
        
        .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);
        }
        
        .payment-buttons {
            display: grid;
            gap: 25px;
            max-width: 500px;
            margin: 40px auto 0;
        }
        
        .crypto-button {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            padding: 25px 50px;
            font-size: 1.4em;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            position: relative;
            overflow: hidden;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 2px;
        }
        
        .crypto-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .crypto-button:hover::before {
            left: 100%;
        }
        
        .crypto-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
        }
        
        /* 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);
        }
        
        /* Guarantee Section */
        .guarantee-section {
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #000;
            padding: 80px 0;
            text-align: center;
            border-top: 3px solid #ffd700;
            border-bottom: 3px solid #ffd700;
        }
        
        .guarantee-badge {
            font-size: 6em;
            margin-bottom: 25px;
            filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
        }
        
        .guarantee-text {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.3em;
            line-height: 1.8;
            font-family: 'Cinzel', serif;
            font-weight: 600;
        }
        
        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            padding: 80px 0;
            border-top: 1px solid #333;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #333;
        }
        
        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
        }
        
        .faq-question {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            padding: 25px;
            font-weight: bold;
            font-size: 1.2em;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
        }
        
        .faq-answer {
            padding: 25px;
            display: none;
            border-top: 1px solid #333;
            line-height: 1.8;
            color: #e0e0e0;
            font-family: 'Cinzel', serif;
        }
        
        .faq-toggle {
            font-size: 1.8em;
            transition: transform 0.3s ease;
            font-weight: bold;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #330000 0%, #1a0000 25%, #0a0a0a 50%, #1a0000 75%, #330000 100%);
            color: #ffd700;
            padding: 100px 0;
            text-align: center;
            border-top: 3px solid #ffd700;
            position: relative;
        }
        
        .final-cta::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="diamonds" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,5 20,12.5 12.5,20 5,12.5" fill="%23ffd700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds)"/></svg>') repeat;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .final-cta h2 {
            font-size: 3.5em;
            margin-bottom: 25px;
            font-family: 'Playfair Display', serif;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        }
        
        .final-cta-button {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            padding: 30px 80px;
            font-size: 1.5em;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 40px;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 2px;
        }
        
        .final-cta-button:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6);
        }
        
        /* P.S. Section */
        .ps-section {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            padding: 50px 0;
            text-align: center;
            border-top: 3px solid #ffd700;
            border-bottom: 1px solid #333;
        }
        
        .ps-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2em;
            line-height: 1.8;
            color: #e0e0e0;
            font-family: 'Cinzel', serif;
        }
        
        .ps-section strong {
            color: #ffd700;
            font-weight: bold;
        }
        
        /* Footer */
        .footer {
            background: #000;
            color: #ccc;
            padding: 50px 0;
            text-align: center;
            border-top: 2px solid #333;
        }
        
        .footer-links {
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: #ffd700;
            text-decoration: none;
            margin: 0 20px;
            transition: color 0.3s ease;
            font-family: 'Orbitron', monospace;
        }
        
        .footer-links a:hover {
            color: #ffb700;
        }
        
        .disclaimer {
            font-size: 0.9em;
            color: #999;
            max-width: 900px;
            margin: 25px auto 0;
            line-height: 1.6;
            font-family: 'Cinzel', serif;
        }
        
        /* Popups */
        .motivation-popup {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            color: #ffd700;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            max-width: 380px;
            z-index: 9998;
            border: 2px solid #ffd700;
            animation: slideIn 0.5s ease-out;
        }
        
        @keyframes slideIn {
            from { transform: translateX(400px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        .motivation-close {
            position: absolute;
            top: 15px;
            right: 20px;
            cursor: pointer;
            font-size: 1.8em;
            color: #ff6b47;
            font-weight: bold;
        }
        
        .exit-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        .popup-content {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            color: #ffd700;
            padding: 50px;
            border-radius: 25px;
            max-width: 550px;
            text-align: center;
            position: relative;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            border: 3px solid #ffd700;
        }
        
        .popup-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2.5em;
            cursor: pointer;
            color: #ff6b47;
            font-weight: bold;
        }
        
        .special-price {
            background: linear-gradient(135deg, #ff6b47, #ff4757);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            box-shadow: 0 0 30px rgba(255, 107, 71, 0.5);
        }
        
        .special-price-amount {
            font-size: 3em;
            font-weight: bold;
            font-family: 'Orbitron', monospace;
        }
        
        /* Scarcity Banner */
        .scarcity-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, #ff6b47, #ff4757, #ff6b47);
            color: white;
            padding: 18px;
            text-align: center;
            font-weight: bold;
            z-index: 999;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
        }
        
        .scarcity-banner.visible {
            transform: translateY(0);
        }
        
        /* Crypto Payment Modal */
        .crypto-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        
        .crypto-modal-content {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            color: #ffd700;
            padding: 50px;
            border-radius: 25px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            position: relative;
            border: 3px solid #ffd700;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
        }
        
        .crypto-form {
            margin-top: 25px;
        }
        
        .crypto-form input {
            width: 100%;
            padding: 18px;
            margin: 12px 0;
            border: 2px solid #333;
            border-radius: 15px;
            font-size: 1.1em;
            background: #0a0a0a;
            color: #ffd700;
            font-family: 'Cinzel', serif;
        }
        
        .crypto-form input:focus {
            border-color: #ffd700;
            outline: none;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        
        .crypto-form button {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            padding: 18px 35px;
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            margin-top: 25px;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .crypto-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
        }
        
        .qr-code {
            margin: 25px 0;
        }
        
        .qr-code img {
            max-width: 220px;
            height: auto;
            border: 3px solid #ffd700;
            border-radius: 15px;
        }
        
        .wallet-address {
            background: #000;
            color: #00ff88;
            padding: 20px;
            border-radius: 15px;
            font-family: 'Orbitron', monospace;
            word-break: break-all;
            margin: 25px 0;
            border: 2px solid #ffd700;
            font-size: 0.9em;
        }
        
        /* Crypto Options */
        .crypto-options-container {
            position: relative;
        }
        
        .crypto-main-button {
            cursor: pointer;
        }
        
        .crypto-options {
            margin-top: 20px;
            display: grid;
            gap: 15px;
            animation: slideDown 0.3s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .crypto-option-btn {
            padding: 20px 30px;
            text-decoration: none;
            border-radius: 15px;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s ease;
            display: block;
            position: relative;
            overflow: hidden;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
        }
        
        .binance-btn {
            background: linear-gradient(135deg, #f0b90b, #d4a806);
            color: #000;
            border: 2px solid #f0b90b;
        }
        
        .binance-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(240, 185, 11, 0.4);
        }
        
        .binance-btn::before {
            content: "⚡ Fast & Secure";
            position: absolute;
            top: -8px;
            right: 15px;
            background: #00ff88;
            color: #000;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.7em;
            font-weight: bold;
        }
        
        .direct-btn {
            background: linear-gradient(135deg, #ff6b47, #ff4757);
            color: white;
            border: 2px solid #ff6b47;
        }
        
        .direct-btn:hover {
            background: linear-gradient(135deg, #ff4757, #ff6b47);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 71, 0.4);
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            h1 {
                font-size: 2.5em;
            }
            
            .section-title {
                font-size: 2.2em;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .product-images {
                position: relative;
                top: 0;
            }
            
            .crypto-price {
                font-size: 3.5em;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                flex-direction: row !important;
                margin-left: 80px;
            }
            
            .timeline-content {
                width: calc(100% - 100px);
            }
            
            .timeline-day {
                position: absolute;
                left: -80px;
                margin: 0;
                width: 60px;
                height: 60px;
            }
            
            .motivation-popup {
                right: 15px;
                left: 15px;
                max-width: none;
            }
            
            .sticky-content {
                flex-direction: column;
                gap: 12px;
                font-size: 0.9em;
            }
            
            .final-cta h2 {
                font-size: 2.5em;
            }
            
            .crypto-modal-content {
                padding: 30px 20px;
                margin: 0 15px;
            }
            
            .trust-indicators {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes glow {
            0% { box-shadow: 0 0 10px #ffd700; }
            50% { box-shadow: 0 0 30px #ffd700, 0 0 40px #ffd700; }
            100% { box-shadow: 0 0 10px #ffd700; }
        }
        
        .glow {
            animation: glow 2s infinite;
        }
        
        @keyframes neonFlicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow: 
                    0 0 4px #ffd700,
                    0 0 11px #ffd700,
                    0 0 19px #ffd700,
                    0 0 40px #ffd700;
            }
            20%, 24%, 55% {        
                text-shadow: none;
            }
        }
        
        .neon-flicker {
            animation: neonFlicker 2s infinite alternate;
        }
        
        /* Highlight */
        .highlight {
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            padding: 4px 8px;
            font-weight: bold;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }/* =================================== */
/* ENHANCED MOBILE RESPONSIVENESS     */
/* =================================== */

/* Extra Small Devices (Portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    /* Typography scaling */
    h1 {
        font-size: 2.2em !important;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .subheadline {
        font-size: 1.2em;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.8em !important;
        margin-bottom: 20px;
    }
    
    /* Header adjustments */
    .header {
        padding: 60px 0 30px;
    }
    
    .student-count {
        font-size: 0.9em;
        padding: 12px 20px;
        margin-top: 15px;
    }
    
    /* Sticky header mobile optimization */
    .sticky-header {
        padding: 10px 0;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 8px;
        font-size: 0.8em;
    }
    
    .sticky-cta {
        padding: 8px 20px;
        font-size: 0.9em;
    }
    
    /* Product section mobile */
    .product-section {
        padding: 40px 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-images {
        position: static;
        order: -1;
    }
    
    .main-image {
        margin-bottom: 15px;
    }
    
    .image-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .product-details h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    /* Pain points mobile */
    .pain-points {
        padding: 20px;
        margin: 20px 0;
    }
    
    .pain-points h3 {
        font-size: 1.2em;
    }
    
    .pain-points li {
        padding-left: 25px;
        margin-bottom: 10px;
        font-size: 0.95em;
    }
    
    /* Detail sections mobile */
    .detail-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .detail-section h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .detail-item {
        margin-bottom: 12px;
        gap: 8px;
    }
    
    .check-icon {
        font-size: 1.1em;
    }
    
    /* Proof section mobile */
    .proof-section {
        padding: 40px 0;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .proof-item {
        padding: 20px;
    }
    
    .proof-item img {
        height: 150px;
    }
    
    /* Comparison table mobile */
    .comparison-table {
        margin-top: 30px;
        overflow-x: auto;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9em;
    }
    
    /* Timeline mobile optimization */
    .timeline-section {
        padding: 40px 0;
    }
    
    .timeline::before {
        left: 20px;
        width: 3px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
        margin-bottom: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        padding: 20px;
    }
    
    .timeline-day {
        position: absolute;
        left: -70px;
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 0.8em;
    }
    
    /* Testimonials mobile */
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .verified-badge {
        top: -8px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.7em;
    }
    
    /* Warning section mobile */
    .warning-section {
        padding: 40px 0;
    }
    
    .spots-counter {
        padding: 20px;
        margin: 20px 0;
    }
    
    .spots-number {
        font-size: 3em;
    }
    
    /* Pricing section mobile */
    .pricing-section {
        padding: 50px 0;
    }
    
    .price-comparison {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .original-price {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    .crypto-offer {
        padding: 25px 15px;
        margin: 25px 0;
    }
    
    .crypto-price {
        font-size: 3em !important;
        margin: 10px 0;
    }
    
    .savings-badge {
        padding: 8px 18px;
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    /* Payment buttons mobile */
    .payment-buttons {
        gap: 15px;
        max-width: 100%;
        margin: 30px auto 0;
    }
    
    .crypto-button {
        padding: 20px 30px;
        font-size: 1.2em;
        border-radius: 40px;
    }
    
    .crypto-options {
        gap: 10px;
    }
    
    .crypto-option-btn {
        padding: 15px 20px;
        font-size: 1em;
    }
    
    .binance-btn::before {
        right: 10px;
        font-size: 0.6em;
        padding: 2px 8px;
    }
    
    /* Trust section mobile */
    .trust-section {
        padding: 25px 15px;
        margin: 20px 0;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .trust-icon {
        font-size: 2em;
        margin-bottom: 8px;
    }
    
    /* Payment options mobile */
    .payment-option {
        padding: 20px 15px;
        margin: 10px 0;
    }
    
    .payment-option-header {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .payment-icon {
        font-size: 1.5em;
    }
    
    .payment-title {
        font-size: 1.1em;
    }
    
    .payment-steps {
        padding: 15px;
    }
    
    .payment-steps ol {
        margin: 8px 0 0 15px;
    }
    
    .payment-steps li {
        margin-bottom: 6px;
        font-size: 0.95em;
    }
    
    /* Telegram info mobile */
    .telegram-info {
        padding: 15px;
        margin: 15px 0;
    }
    
    .telegram-username {
        font-size: 1.1em;
        margin: 8px 0;
    }
    
    /* Countdown mobile */
    .countdown {
        padding: 20px 15px;
        margin: 25px 0;
        font-size: 1.1em;
    }
    
    #timer, #timer2, #bannerTimer {
        font-size: 2em !important;
        margin: 10px 0;
    }
    
    /* Guarantee section mobile */
    .guarantee-section {
        padding: 50px 0;
    }
    
    .guarantee-badge {
        font-size: 4em;
        margin-bottom: 20px;
    }
    
    .guarantee-text {
        font-size: 1.1em;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    /* FAQ section mobile */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px 15px;
        font-size: 1.1em;
    }
    
    .faq-answer {
        padding: 20px 15px;
        font-size: 0.95em;
        line-height: 1.6;
    }
    
    .faq-toggle {
        font-size: 1.5em;
    }
    
    /* Final CTA mobile */
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .final-cta h2 {
        font-size: 2.2em !important;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .final-cta-button {
        padding: 20px 40px;
        font-size: 1.3em;
        margin-top: 30px;
        border-radius: 40px;
    }
    
    /* P.S. section mobile */
    .ps-section {
        padding: 30px 0;
    }
    
    .ps-content {
        max-width: 100%;
        padding: 0 15px;
        font-size: 1.1em;
        line-height: 1.6;
    }
    
    /* Footer mobile */
    .footer {
        padding: 30px 0;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
        font-size: 0.9em;
    }
    
    .disclaimer {
        font-size: 0.8em;
        padding: 0 15px;
        margin: 20px auto 0;
    }
    
    /* Popups mobile */
    .motivation-popup {
        right: 10px;
        left: 10px;
        bottom: 15px;
        max-width: none;
        padding: 20px;
    }
    
    .motivation-close {
        top: 10px;
        right: 15px;
        font-size: 1.5em;
    }
    
    .exit-popup .popup-content {
        padding: 30px 20px;
        margin: 0 10px;
        max-width: 95%;
    }
    
    .popup-close {
        top: 15px;
        right: 20px;
        font-size: 2em;
    }
    
    .special-price {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .special-price-amount {
        font-size: 2.5em;
    }
    
    /* Crypto modal mobile */
    .crypto-modal-content {
        padding: 25px 15px !important;
        margin: 0 10px !important;
        max-width: 95% !important;
        width: 95% !important;
    }
    
    .crypto-form input {
        padding: 15px;
        margin: 10px 0;
        font-size: 1em;
    }
    
    .crypto-form button {
        padding: 15px 25px;
        font-size: 1.1em;
        margin-top: 20px;
    }
    
    .qr-code img {
        max-width: 180px;
    }
    
    .wallet-address {
        padding: 15px;
        font-size: 0.8em;
        margin: 20px 0;
    }
    
    /* Scarcity banner mobile */
    .scarcity-banner {
        padding: 12px 10px;
        font-size: 0.9em;
    }
}

/* Small Devices (Landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.6em;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .image-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crypto-price {
        font-size: 3.8em;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        margin-left: 70px;
    }
    
    .timeline-day {
        left: -75px;
        width: 55px;
        height: 55px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links a {
        display: inline;
        margin: 0 15px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-buttons {
        max-width: 450px;
    }
    
    .crypto-modal-content {
        max-width: 500px;
        padding: 40px 30px;
    }
    
    .timeline-content {
        padding: 25px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch target sizes */
    .crypto-button,
    .final-cta-button,
    .sticky-cta {
        min-height: 48px;
    }
    
    .thumbnail,
    .faq-question,
    .payment-option {
        min-height: 48px;
    }
    
    /* Remove hover effects that don't work on touch */
    .crypto-button:hover,
    .final-cta-button:hover,
    .main-image:hover,
    .thumbnail:hover,
    .proof-item:hover,
    .testimonial:hover,
    .faq-item:hover {
        transform: none;
    }
    
    /* Keep only essential interactive feedback */
    .crypto-button:active,
    .final-cta-button:active {
        transform: scale(0.98);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .main-image,
    .proof-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation specific fixes */
@media (orientation: landscape) and (max-height: 500px) {
    .header {
        padding: 40px 0 25px;
    }
    
    .final-cta {
        padding: 50px 0;
    }
    
    .guarantee-section {
        padding: 40px 0;
    }
    
    .guarantee-badge {
        font-size: 3.5em;
    }
}

/* Very small screens (smartwatches, etc.) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .crypto-price {
        font-size: 2.5em;
    }
    
    .final-cta h2 {
        font-size: 1.8em;
    }
    
    .crypto-button {
        padding: 15px 20px;
        font-size: 1em;
    }
    
    .final-cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    
    .image-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .thumbnail {
        height: 50px;
    }
    
    .timeline-day {
        width: 40px;
        height: 40px;
        left: -65px;
        font-size: 0.7em;
    }
    
    .timeline::before {
        left: 18px;
        width: 2px;
    }
    
    .timeline-item {
        margin-left: 50px;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Better focus indicators */
    button:focus,
    a:focus,
    .crypto-button:focus,
    .final-cta-button:focus {
        outline: 3px solid #ffd700;
        outline-offset: 2px;
    }
    
    /* Improve text contrast on small screens */
    .testimonial-text,
    .faq-answer,
    .payment-description {
        color: #f0f0f0;
    }
    
    /* Ensure minimum font sizes for readability */
    .disclaimer,
    .footer-links a,
    .wallet-address {
        font-size: max(14px, 0.875rem);
    }
}
/* 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;
    }
}
