 :root {
            --primary: #E50914;
            --primary-dark: #B00710;
            --secondary: #221F1F;
            --light: #F5F5F1;
        }

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;
}

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;
}

 .domain-highlight {
            color: white;
            background-color: var(--primary);
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.3em;
            display: inline-block;
            margin: 5px 0;
        }
        .benefits {
            background-color: #FFF5F5;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
        }
        .benefits li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 35px;
            font-size: 17px;
        }
        .benefits li:before {
            content: "▶";
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 18px;
        }
        .cta-box {
            background: linear-gradient(135deg, var(--secondary), #333);
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 16px 35px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .cta-button:hover {
            background-color: #FF0A16;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
        }
        .urgency {
            color: var(--primary);
            font-weight: bold;
            font-size: 20px;
            text-align: center;
            margin: 25px 0;
            padding: 15px;
            border: 2px dashed var(--primary);
            border-radius: 8px;
        }
        .use-cases {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .use-case {
            background-color: var(--light);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: transform 0.3s;
        }
        .use-case:hover {
            transform: translateY(-5px);
        }
        .use-case strong {
            color: var(--primary);
            font-size: 18px;
            display: block;
            margin-bottom: 10px;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 35px 0;
            text-align: center;
        }
        .stat-item {
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }
        .testimonial {
            font-style: italic;
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            position: relative;
        }
        .testimonial:before {
            content: """;
            font-size: 60px;
            color: var(--light);
            position: absolute;
            top: 10px;
            left: 15px;
            z-index: 0;
        }
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        @media (max-width: 768px) {
            .header {
                padding: 20px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            .cta-button {
                padding: 14px 25px;
                font-size: 16px;
            }

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