:root {
    --bg-color: #FDFDFD;
    --bg-light: #F4F4F4;
    --bg-dark: #111111;
    --text-color: #1a1a1a;
    --text-light: #555555;
    --text-white: #ffffff;
    --highlight-red: #bb0a0a; /* Blood Red */
    --highlight-gold: #FFD700;
    --btn-color: #00E676; /* Neon Green */
    --btn-hover: #00C853;
    --btn-text: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Default reading font */
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .main-headline {
    font-family: 'Inter', sans-serif; /* Headings */
    font-weight: 900;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 800px; /* Reading focused width */
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-white); }
.red-text { color: var(--highlight-red); }
.gold-text { color: var(--highlight-gold); }

/* Section Spacing */
section {
    padding: 40px 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
}

.super-headline {
    color: var(--highlight-red);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.main-headline {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.main-headline .highlight {
    color: var(--highlight-red);
    text-decoration: underline;
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 30px;
}

.image-wrapper {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-wrapper.small-img {
    max-width: 400px;
    margin: 20px auto;
    box-shadow: none;
}

.img-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* CTA Buttons */
.cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    background-color: var(--btn-color);
    color: var(--btn-text);
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 50px; /* Rounded pill shape */
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
    transition: transform 0.2s, background-color 0.2s;
    border-bottom: 4px solid var(--btn-hover);
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: var(--btn-hover);
}

.cta-button:active {
    transform: translateY(1px);
    border-bottom: none;
    margin-top: 24px; /* Offset the missing border */
}

.btn-subtext {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Content Sections */
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.text-body {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: justify;
}

.enemy-box {
    background: #fff;
    border-left: 5px solid var(--highlight-red);
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.enemy-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--highlight-red);
}

/* Solution List */
.solution-list {
    list-style: none;
    margin: 20px 0;
}

.solution-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--btn-color);
}

.text-highlight {
    background-color: #fff9c4; /* Pale yellow highlights */
    padding: 5px 10px;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
}

/* Offer Section */
.offer-box {
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.module-item {
    display: flex;
    margin-bottom: 20px;
}

.check-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.light-text {
    color: #ccc;
    text-align: center;
    font-size: 1.1rem;
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bonus-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.bonus-card h3 {
    color: var(--highlight-red);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Price Section */
.price-section {
    background-color: #FDFDFD;
    text-align: center;
    border-top: 2px dashed #ddd;
    border-bottom: 2px dashed #ddd;
}

.highlight-box {
    background-color: #ffebee;
    color: var(--highlight-red);
    padding: 10px;
    font-weight: bold;
    border-radius: 4px;
}

.price-display {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.new-price {
    font-size: 2.5rem;
    color: var(--btn-color); /* Green Price */
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    /* Or keep it Green on White? Neon green text on white is hard to read.
       Let's use a Dark Green for text on white bg for readability */
    color: #008000; 
}

.payment-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Urgency/Footer */
.urgency-box {
    background-color: #fff3e0;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffcc80;
    margin: 20px 0;
}

.urgency-title {
    color: #e65100;
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: #888;
    text-align: center;
    padding: 30px 0;
    font-size: 0.8rem;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.7rem;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .main-headline { font-size: 3rem; }
    .bonus-grid { grid-template-columns: repeat(3, 1fr); }
    .text-body { font-size: 1.2rem; }
}
