 
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #17181D;
            color: #E0E0E0;
            line-height: 1.6;
        }
        
        .container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 20px; 
        }
        
        /* Header */
        header {
            background-color: rgba(23, 24, 29, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 200, 87, 0.2);
        }
        
        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo { height: 40px; }
        
        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-gold {
            background-color: #F39C12;
            color: #17181D;
        }
        
        .btn-gold:hover {
            background-color: #FFC857;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            border: 2px solid #FFC857;
            color: #FFC857;
            background-color: transparent;
        }
        
        .btn-outline:hover {
            background-color: #FFC857;
            color: #17181D;
        }
        
        /* Hero */
        .hero {
            padding: 80px 20px 60px;
            text-align: center;
            background: linear-gradient(135deg, #4E3C1F 0%, #17181D 20%, #1E1F24 80%, #17181D 100%);
        }
        
        .badge {
            display: inline-block;
            background-color: rgba(255, 200, 87, 0.15);
            border: 1px solid rgba(255, 200, 87, 0.5);
            padding: 8px 20px;
            border-radius: 25px;
            color: #FFC857;
            font-size: 14px;
            margin-bottom: 30px;
        }
        
        h1 {
            font-size: 56px;
            color: #FFC857;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .subtitle {
            font-size: 28px;
            color: #E0E0E0;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .description {
            font-size: 18px;
            color: #DCDCDC;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        /* Price Card */
        .price-card {
            background-color: rgba(30, 31, 36, 0.8);
            border: 1px solid rgba(255, 200, 87, 0.3);
            border-radius: 15px;
            padding: 40px;
            max-width: 900px;
            margin: 0 auto 40px;
        }
        
        .card-title {
            font-size: 28px;
            color: #E0E0E0;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .price-box {
            background-color: #28292F;
            border: 1px solid #3A3B41;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            position: relative;
        }
        
        .price-box.highlight {
            border: 2px solid #FFC857;
        }
        
        .price-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #1DB954;
            color: white;
            padding: 4px 15px;
            border-radius: 15px;
            font-size: 13px;
            font-weight: 700;
        }
        
        .price-label {
            font-size: 14px;
            color: #DCDCDC;
            margin-bottom: 8px;
        }
        
        .price-value {
            font-size: 36px;
            font-weight: 700;
            color: #E0E0E0;
        }
        
        .price-box:nth-child(2) .price-value { color: #FFC857; }
        .price-box:nth-child(3) .price-value { color: #1DB954; }
        
        .bonus-banner {
            background: linear-gradient(90deg, rgba(29, 185, 84, 0.2), rgba(80, 227, 194, 0.3), rgba(29, 185, 84, 0.2));
            border: 1px solid rgba(29, 185, 84, 0.4);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        
        .bonus-banner p {
            font-size: 20px;
            font-weight: 600;
        }
        
        .bonus-highlight { color: #50E3C2; font-weight: 700; }
        
        /* Section */
        .section {
            padding: 80px 20px;
            background-color: rgba(30, 31, 36, 0.3);
        }
        
        .section-title {
            font-size: 42px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .highlight { color: #FFC857; }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .step-card {
            background-color: #1E1F24;
            border: 1px solid rgba(255, 200, 87, 0.2);
            border-radius: 12px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            border-color: #FFC857;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 200, 87, 0.2);
            border: 2px solid #FFC857;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            font-weight: 700;
            color: #FFC857;
        }
        
        .step-card h3 {
            font-size: 20px;
            color: #E0E0E0;
            margin-bottom: 12px;
        }
        
        .step-card p {
            font-size: 15px;
            color: #DCDCDC;
        }
        
        /* Terms */
        .terms {
            background-color: rgba(30, 31, 36, 0.9);
            border: 1px solid rgba(255, 200, 87, 0.3);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .terms h3 {
            font-size: 26px;
            color: #E0E0E0;
            margin-bottom: 25px;
        }
        
        .terms ul {
            list-style: none;
        }
        
        .terms li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            color: #DCDCDC;
        }
        
        .terms li:before {
            content: "\2713";
            position: absolute;
            left: 0;
            color: #1DB954;
            font-weight: bold;
            font-size: 20px;
        }
        
        /* FAQ */
        .faq-title {
            font-size: 36px;
            text-align: center;
            color: #E0E0E0;
            margin-bottom: 40px;
        }
        
        .faq-container {
            max-width: 1200px;
            margin: 0 auto 60px;
        }
        
        .faq-item {
            background-color: #1E1F24;
            border: 1px solid rgba(255, 200, 87, 0.2);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 20px;
            background-color: transparent;
            border: none;
            color: #E0E0E0;
            font-size: 16px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover { color: #FFC857; }
        
        .faq-arrow {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 0 20px 20px;
            color: #DCDCDC;
        }
        
        /* CTA */
        .cta-box {
            background: linear-gradient(90deg, rgba(255, 200, 87, 0.1), rgba(255, 200, 87, 0.2), rgba(255, 200, 87, 0.1));
            border: 2px solid #FFC857;
            border-radius: 15px;
            padding: 60px 30px;
            text-align: center;
            margin: 60px auto 0;
            max-width: 1200px;
        }
        
        .cta-box h3 {
            font-size: 36px;
            color: #E0E0E0;
            margin-bottom: 20px;
        }
        
        .cta-box p {
            color: #DCDCDC;
            margin-bottom: 30px;
            font-size: 18px;
        }
        
        .disclaimer {
            font-size: 12px;
            color: rgba(220, 220, 220, 0.6);
            margin-top: 15px;
        }
        
        /* Footer */
        footer {
            background-color: #17181D;
            border-top: 1px solid rgba(128, 128, 128, 0.3);
            padding: 50px 20px 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .footer-section h4 {
            color: #E0E0E0;
            margin-bottom: 15px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 8px;
        }
        
        .footer-section a {
            color: #DCDCDC;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-section a:hover { color: #FFC857; }
        
        .footer-section p {
            color: #DCDCDC;
            font-size: 14px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(128, 128, 128, 0.3);
            color: rgba(220, 220, 220, 0.6);
            font-size: 14px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 36px; }
            .subtitle { font-size: 22px; }
            .hero { padding: 50px 20px 40px; }
            .section { padding: 50px 20px; }
            .section-title { font-size: 32px; }
            .price-card { padding: 25px; }
        }
  
