 :root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #f6ad55;
            --light: #f7fafc;
            --dark: #2d3748;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            color: var(--light);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        header {
            background-color: rgba(13, 25, 41, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-icon {
            font-size: 28px;
            color: var(--accent);
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(to right, #f6ad55, #e53e3e);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        nav a:hover {
            color: var(--accent);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 16px;
        }
        
        .btn-primary {
            background: linear-gradient(to right, #e53e3e, #dd6b20);
            color: white;
            box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        
        .btn-secondary:hover {
            background: rgba(246, 173, 85, 0.1);
        }
        
        .btn-container {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }
        
        .hero {
            padding: 80px 0 50px;
            text-align: center;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a365d" opacity="0.1"/><path d="M20,20 Q40,5 60,20 T100,20 Q80,40 60,20 T20,20" fill="none" stroke="%23f6ad55" stroke-width="0.5" opacity="0.3"/></svg>');
            background-size: cover;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        section:last-child {
            border-bottom: none;
        }
        
        h2 {
            font-size: 32px;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            border-radius: 2px;
        }
        
        h3 {
            font-size: 24px;
            margin: 25px 0 15px;
            color: var(--accent);
        }
        
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .highlight {
            color: var(--accent);
            font-weight: 600;
        }
        
        .content-block {
            background: rgba(26, 54, 93, 0.4);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        ol, ul {
            padding-left: 25px;
            margin: 20px 0;
        }
        
        li {
            margin-bottom: 12px;
            font-size: 18px;
            padding-left: 10px;
        }
        
        ol li::marker {
            color: var(--accent);
            font-weight: bold;
        }
        
        ul li::marker {
            content: "•";
            color: var(--accent);
            font-size: 20px;
        }
        
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .bonus-card {
            background: rgba(45, 55, 72, 0.7);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(246, 173, 85, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .bonus-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border-color: var(--accent);
        }
        
        .bonus-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--accent);
        }
        
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        
        .payment-method {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            min-width: 120px;
            text-align: center;
            font-weight: 500;
        }
        
        .payment-method.crypto {
            background: rgba(118, 68, 138, 0.2);
            border: 1px solid #76448a;
        }
        
        .payment-method.sbp {
            background: rgba(40, 167, 69, 0.2);
            border: 1px solid #28a745;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: rgba(45, 55, 72, 0.5);
            border-radius: 10px;
            overflow: hidden;
        }
        
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        th {
            background-color: rgba(229, 62, 62, 0.2);
            font-weight: 600;
        }
        
        tr:last-child td {
            border-bottom: none;
        }
        
        .mobile-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        
        .feature-icon {
            font-size: 24px;
            color: var(--accent);
            min-width: 40px;
        }
        
        footer {
            background: rgba(13, 25, 41, 0.95);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            padding-left: 0;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .btn-container {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            h3 {
                font-size: 22px;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 50px 0 30px;
            }
            
            .content-block {
                padding: 20px;
            }
            
            .bonus-grid, .mobile-features {
                grid-template-columns: 1fr;
            }
        }