        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a0000 0%, #4a0000 50%, #8b0000 100%);
            color: #fff;
            line-height: 1.6;
        }

        header {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem 0;
            text-align: center;
            border-bottom: 3px solid #ff4500;
            box-shadow: 0 4px 20px rgba(255, 69, 0, 0.5);
        }

        h1 {
            font-size: 3.5rem;
            color: #ff4500;
            text-shadow: 0 0 20px rgba(255, 69, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.5);
            margin-bottom: 0.5rem;
            letter-spacing: 3px;
        }

        .tagline {
            font-size: 1.3rem;
            color: #ffaa00;
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        nav {
            background: rgba(0, 0, 0, 0.6);
            padding: 1rem;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 1.5rem;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        nav a:hover {
            color: #ff4500;
            background: rgba(255, 69, 0, 0.2);
            transform: translateY(-2px);
        }

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

        section {
            margin: 4rem 0;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 69, 0, 0.3);
            box-shadow: 0 8px 32px rgba(255, 69, 0, 0.2);
        }

        h2 {
            font-size: 2.5rem;
            color: #ff4500;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
        }

        .hero {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(180deg, rgba(255, 69, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .hero p {
            font-size: 1.8rem;
            margin: 2rem 0;
            color: #ffcc00;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        }

        .warning-badge {
            display: inline-block;
            background: #ff0000;
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 1rem 0;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

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

        .feature {
            background: rgba(255, 69, 0, 0.1);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid rgba(255, 69, 0, 0.4);
            transition: all 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 69, 0, 0.5);
            border-color: #ff4500;
        }

        .feature h3 {
            color: #ffaa00;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .buy-section {
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.3) 0%, rgba(139, 0, 0, 0.3) 100%);
        }

        .buy-btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            color: #fff;
            padding: 1.5rem 3rem;
            font-size: 1.5rem;
            text-decoration: none;
            border-radius: 50px;
            margin: 2rem 0;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
            transition: all 0.3s;
            border: 3px solid #fff;
        }

        .buy-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(255, 69, 0, 0.9);
        }

        .faq {
            background: rgba(0, 0, 0, 0.6);
        }

        .faq-item {
            margin: 1.5rem 0;
            padding: 1.5rem;
            background: rgba(255, 69, 0, 0.1);
            border-left: 4px solid #ff4500;
            border-radius: 5px;
        }

        .faq-item h3 {
            color: #ffaa00;
            margin-bottom: 0.5rem;
        }

        footer {
            background: rgba(0, 0, 0, 0.9);
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            border-top: 3px solid #ff4500;
        }

        .contact-info {
            margin: 1rem 0;
            font-size: 1.1rem;
        }

        .contact-info a {
            color: #ff4500;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }