/* styles.css - Betaliv Pro Plus (Direct-Response / Dark Theme) */
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
    --primary: #c20000;      /* Aggressive Red */
    --primary-dark: #800000;
    --secondary: #d4af37;    /* Premium Gold */
    --secondary-dark: #aa8a29;
    --accent: #2e7d32;       /* Success green for orders */
    
    --bg-dark: #0a0a0a;      /* Pitch black for fear/intensity sections */
    --bg-light: #1c1c1c;     /* Dark gray */
    --text-dark: #ffffff;    /* White text on dark bg */
    --text-light: #ffffff;
    --text-gold: #d4af37;
    --text-alert: #ff3333;
    
    --font: 'Prompt', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font);
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 16px;
    overflow-x: hidden;
}

/* Full-width Image Sections for AI Generated Graphics */
.graphic-section {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #000;
}

.graphic-section img {
    width: 100%;
    max-width: 800px; /* Mobile first, but constrained on desktop */
    display: block;
    height: auto;
}

/* Text Overlay Sections (If we need HTML text on top of AI Backgrounds) */
.text-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    z-index: 10;
}

.title-heavy {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px #000, 0 0 10px red;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight-red {
    background-color: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

.highlight-gold {
    color: var(--secondary);
    text-shadow: 1px 1px 2px #000;
}

/* Urgent Alert Bar */
.urgent-bar {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation: flashBg 2s infinite;
}

@keyframes flashBg {
    0% { background-color: var(--primary); }
    50% { background-color: #ff0000; }
    100% { background-color: var(--primary); }
}

/* CTA Buttons */
.cta-container {
    padding: 20px;
    text-align: center;
    background-color: #111;
    border-bottom: 1px solid #333;
}

.btn-pulse {
    background: linear-gradient(180deg, #388e3c, #1b5e20);
    color: white;
    font-size: 24px;
    font-weight: 800;
    padding: 15px 30px;
    border: 3px solid #4caf50;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
    animation: pulse 1.5s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(76, 175, 80, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(76, 175, 80, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(76, 175, 80, 0.5); }
}

/* Checkout Section */
.checkout-section {
    background-color: #fff;
    color: #000;
    padding: 40px 15px;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    border: 2px solid var(--primary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.checkout-header {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 20px;
}

.checkout-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.checkout-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
}

.form-packages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.package-option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.package-option.selected {
    border-color: var(--primary);
    background: #fff0f0;
}

.package-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.pkg-details {
    flex-grow: 1;
}

.pkg-title {
    font-weight: 800;
    font-size: 16px;
    color: #000;
}

.pkg-price {
    color: var(--primary);
    font-weight: 800;
    font-size: 18px;
    float: right;
}

.btn-submit-order {
    background: #ff0000;
    color: white;
    font-weight: 900;
    font-size: 24px;
    padding: 20px;
    width: 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255,0,0,0.4);
    transition: background 0.3s;
}

.btn-submit-order:hover {
    background: #cc0000;
}

.trust-badges {
    text-align: center;
    padding: 20px;
    background: #eee;
}

.trust-badges img {
    max-width: 100%;
    height: auto;
}

/* Video Player */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-bottom: 5px solid var(--primary);
    border-top: 5px solid var(--primary);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sticky Bottom CTA */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.85);
    padding: 15px;
    z-index: 999;
    text-align: center;
    backdrop-filter: blur(5px);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
}
.sticky-bottom-bar .btn-pulse {
    margin: 0;
    padding: 12px 20px;
    font-size: 22px;
}
