/* Modern Premium Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #FF7B00;
    /* Vibrant Orange */
    --primary-glow: rgba(255, 123, 0, 0.4);
    --secondary: #FFC000;
    /* Citrus Yellow */
    --accent: #FFFFFF;
    --dark-bg: #0f0f0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-heading: 'inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Clean dark gradient background */
    background: radial-gradient(circle at top right, #1a1500 0%, #000000 40%);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: 800px;
    /* Focused reading width */
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0 60px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Wrapper (The VSL Fake Player) */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* Abstract citrus/anatomy background if image fails */
    background: linear-gradient(45deg, #111, #221a00);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 123, 0, 0.3);
    animation: pulse 2s infinite;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 5px;
    /* Visual centering */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 123, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0);
    }
}

/* CTA Button */
.cta-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 600px) {
    .cta-container {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(255, 123, 0, 0.1);
    transform: translateY(-3px);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 100%;
}

.secure-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Features/Benefits */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.highlight-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.highlight-title {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer & Compliance */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 60px;
    font-size: 0.7rem;
    color: #555;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    margin: 0 10px;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}