 :root {
            --primary: #1a2a4a;  /* Casino navy */
            --primary-dark: #0d1526;
            --secondary: #d32f2f;  /* Roulette red */
            --accent: #ffc107;  /* Gold */
            --light: #f8f9fa;
        }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
}

header h1 {
    margin: 0;
}

#content {
    padding: 20px 0;
}

#buyNowButton {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

#buyNowButton:hover {
    background-color: #45a049;
}

#contactForm {
    max-width: 600px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
}

 .subheader {
            font-size: 20px;
            opacity: 0.9;
            margin-bottom: 0;
        }
        h2 {
            color: var(--primary);
            border-bottom: 3px solid var(--accent);
            padding-bottom: 12px;
            font-size: 28px;
            margin-top: 45px;
        }
        .domain-highlight {
            color: white;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            padding: 5px 15px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.4em;
            display: inline-block;
            margin: 10px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .benefits-container {
            background-color: white;
            border-radius: 12px;
            padding: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin: 35px 0;
            border: 1px solid #E2E8F0;
        }
        .benefits {
            background-color: #EFF6FF;
            padding: 30px;
            border-radius: 8px;
            border-left: 5px solid var(--secondary);
        }
        .benefits li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 40px;
            font-size: 18px;
            line-height: 1.6;
        }
        .benefits li:before {
            content: "✓";
            color: var(--secondary);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 24px;
        }
        .cta-box {
            background: linear-gradient(135deg, var(--primary-dark), #1E293B);
            color: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin-top: 25px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .urgency {
            color: var(--secondary);
            font-weight: bold;
            font-size: 22px;
            text-align: center;
            margin: 35px 0;
            padding: 20px;
            border: 2px dashed var(--secondary);
            border-radius: 10px;
            background-color: rgba(185, 28, 28, 0.05);
        }
        .use-cases {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .use-case {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            border-top: 4px solid var(--accent);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .use-case:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .use-case strong {
            color: var(--primary);
            font-size: 20px;
            display: block;
            margin-bottom: 15px;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 45px 0;
        }
        .stat-item {
            padding: 25px;
            background: linear-gradient(135deg, #f9f9f9, white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            border: 1px solid #E2E8F0;
        }
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        .testimonial {
            font-style: italic;
            background-color: white;
            padding: 35px;
            border-radius: 10px;
            margin: 45px 0;
            border-left: 5px solid var(--accent);
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            font-size: 18px;
            line-height: 1.7;
        }
        .testimonial:before {
            content: """;
            font-size: 120px;
            color: var(--light);
            position: absolute;
            top: -20px;
            left: 10px;
            z-index: 0;
            opacity: 0.3;
            line-height: 1;
        }
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        .testimonial-author {
            text-align: right;
            font-weight: bold;
            margin-top: 20px;
            font-style: normal;
            color: var(--primary-dark);
        }
        @media (max-width: 768px) {
            body {
                padding: 20px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            .header {
                padding: 30px 20px;
            }
            .benefits li {
                font-size: 16px;
                padding-left: 30px;
            }
            .cta-button {
                padding: 16px 30px;
                font-size: 16px;
            }
label {
    margin-top: 10px;
}

input, textarea {
    margin-bottom: 10px;
    padding: 8px;
}

button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

@media only screen and (max-width: 600px) {
    #content {
        padding: 10px;
    }
}
