/* RESET & VARIABLES */
:root {
    --bg-main: #050505; /* Deep, almost absolute black */
    --bg-secondary: #111111; /* Slightly lighter for cards */
    --text-main: #e4e4e7; /* Soft white for readability */
    --text-muted: #a1a1aa;
    --gold: #d4af37; /* Ancient gold */
    --gold-glow: rgba(212, 175, 55, 0.3);
    --red-warning: #dc2626;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 18px; /* Larger base font for older demographic */
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-gold {
    color: var(--gold);
}

.highlight-red {
    color: var(--red-warning);
    font-weight: bold;
}

/* CONTAINERS */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.narrow-container {
    max-width: 800px;
}

/* BUTTONS & CTAS */
.cta-container {
    text-align: center;
    margin: 40px 0;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #b8860b, #ffd700, #b8860b);
    color: #000;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px var(--gold-glow);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #fff;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.btn-text-large {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn-text-small {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.secure-checkout {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 15px;
    font-family: var(--font-body);
}

/* HERO SECTION */
.hero {
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    border-bottom: 1px solid #333;
    padding-top: 20px;
}

.pre-headline {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.main-headline {
    font-size: 42px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.sub-headline {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #cbd5e1;
}

/* MOCKUP IMAGES */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
    transition: transform 0.3s ease;
}

.responsive-img:hover {
    transform: translateY(-5px);
}

.main-mockup {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* BULLETS SECTION */
.revelation-section {
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.bullets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.icon-check {
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    margin-top: -5px;
}

.bullet-item p {
    font-size: 18px;
}

/* AWAKENING SECTION */
.awakening-section {
    text-align: center;
    padding: 80px 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
}

.paragraph-text {
    font-size: 22px;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.mid-headline {
    font-size: 32px;
    color: var(--gold);
    margin: 60px 0 30px 0;
}

.quote-block {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.8;
    color: #fff;
    padding: 40px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-top: 60px;
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(212,175,55,0.05), rgba(0,0,0,0));
}

/* BONUSES SECTION */
.bonuses-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.bonus-card {
    display: flex;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bonus-card.reverse {
    flex-direction: row-reverse;
}

.bonus-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0) 70%);
}

.bonus-content {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-title {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 10px;
}

.bonus-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.bonus-value {
    margin-top: 20px;
    font-size: 18px;
    color: #a1a1aa;
}

.strike {
    text-decoration: line-through;
    color: var(--red-warning);
}

/* OFFER SECTION */
.offer-section {
    text-align: center;
    padding: 80px 0;
}

.offer-box {
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(0,0,0,0) 80%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.offer-title {
    font-size: 36px;
    color: #fff;
}

.offer-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.price-container {
    margin: 30px 0;
}

.old-price {
    display: block;
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    display: block;
    font-size: 56px;
    font-family: var(--font-heading);
    color: #10b981; /* Green for GO */
    font-weight: 900;
    margin-top: 10px;
}

.urgency-text {
    color: var(--red-warning);
    font-weight: bold;
    margin-top: 20px;
}

/* GUARANTEE SECTION */
.guarantee-section {
    background-color: var(--gold);
    color: #000;
    text-align: center;
    padding: 40px 0;
}

.guarantee-badge {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.guarantee-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.faq-grid {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 8px;
    border-left: 2px solid #333;
}

.faq-item h4 {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background-color: #000;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #111;
}

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

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

.footer-links a:hover {
    color: var(--gold);
}

.disclaimer {
    max-width: 600px;
    margin: 0 auto;
    font-size: 12px;
}

/* RESPONSIVE DESIGN (MOBILE) */
@media (max-width: 768px) {
    .main-headline {
        font-size: 32px;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .btn-text-large {
        font-size: 22px;
    }
    
    .bonus-card, .bonus-card.reverse {
        flex-direction: column;
    }
    
    .bonus-image {
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px dashed #333;
    }
    
    .new-price {
        font-size: 42px;
    }
    
    .quote-block {
        font-size: 20px;
        padding: 20px;
    }
}
