        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #f5f5f5;
            min-height: 100vh;
        }

        .hero-section {
            text-align: center;
            padding: 120px 2rem 60px 2rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #f805a7, #0bd0f3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-section p {
            font-size: 1.3rem;
            color: #0bd0f3;
            margin-bottom: 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Subscription Tiers */
        .subscription-tiers {
            padding: 80px 0;
        }

        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .tier-card {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            border: 2px solid #333;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .tier-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(248, 5, 167, 0.3);
        }

        .tier-card.featured {
            border: 2px solid #f805a7;
            box-shadow: 0 0 30px rgba(248, 5, 167, 0.2);
            transform: scale(1.05);
        }

        .tier-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #333;
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .tier-badge.popular {
            background: linear-gradient(135deg, #f805a7, #0bd0f3);
        }

        .tier-card h3 {
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            margin-top: 1rem;
        }

        .tier-price {
            margin-bottom: 2rem;
        }

        .tier-price .price {
            font-size: 3rem;
            font-weight: bold;
            color: #f805a7;
        }

        .tier-price .period {
            color: #999;
            font-size: 1rem;
        }

        .tier-features {
            list-style: none;
            margin-bottom: 2rem;
            padding: 0;
        }

        .tier-features li {
            padding: 0.75rem 0;
            color: #e0e0e0;
            border-bottom: 1px solid #333;
        }

        .tier-features li strong {
            color: #f805a7;
        }

        .tier-button {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .free-button {
            background: #333;
            color: #fff;
        }

        .free-button:hover {
            background: #444;
        }

        .premium-button {
            background: linear-gradient(135deg, #f805a7, #0bd0f3);
            color: #fff;
        }

        .premium-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(248, 5, 167, 0.5);
        }

        .vip-button {
            background: linear-gradient(135deg, #ffd700, #ffaa00);
            color: #000;
        }

        .vip-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
        }

        .tier-highlight {
            margin-top: 1rem;
            padding: 0.75rem;
            background: rgba(248, 5, 167, 0.1);
            border-radius: 8px;
            text-align: center;
            color: #f805a7;
            font-size: 0.9rem;
        }

        /* Benefits Section */
        .benefits-section {
            background: #0f0f0f;
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            background: linear-gradient(135deg, #f805a7, #0bd0f3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: #e0e0e0;
            font-size: 1.2rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2rem;
            background: #1a1a1a;
            border-radius: 12px;
            border: 1px solid #333;
            transition: transform 0.3s;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            border-color: #f805a7;
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-item h4 {
            color: #f805a7;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .benefit-item p {
            color: #e0e0e0;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 80px 2rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: #0bd0f3;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, #f805a7, #0bd0f3);
            color: #fff;
        }

        .cta-button.primary:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(248, 5, 167, 0.5);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid #0bd0f3;
            color: #0bd0f3;
        }

        .cta-button.secondary:hover {
            background: #0bd0f3;
            color: #000;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .tiers-grid {
                grid-template-columns: 1fr;
            }

            .tier-card.featured {
                transform: scale(1);
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }