/* =========================================
   VARIABLES & THEMING
   ========================================= */
:root {
    --color-bg-dark: #0a0005; /* Black with a hint of wine */
    --color-wine-deep: #4a0010;
    --color-wine-light: #8b0022;
    --color-gold: #d4af37;
    --color-gold-bright: #ffd700;
    --color-gold-dark: #997a00;
    --color-text-main: #f0e6e6;
    --color-text-muted: #b3a3a3;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --glass-bg: rgba(74, 0, 16, 0.15);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* =========================================
   RESET & GLOBAL OUTFIT
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-dark);
    background-image: radial-gradient(circle at 50% 0%, var(--color-wine-deep) 0%, var(--color-bg-dark) 50%);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../images/bg_smoke.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
}

.font-playfair {
    font-family: var(--font-heading);
}

.highlight-gold {
    color: var(--color-gold-bright);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.text-center { text-align: center; }
.text-lg { font-size: 1.2rem; }

/* Effects */
.glow-effect {
    position: absolute;
    width: 100vw;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(139, 0, 34, 0.3) 0%, rgba(10, 0, 5, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.top-glow { top: -100px; left: 0; }
.middle-glow { top: 50%; left: 0; transform: translateY(-50%); }

/* =========================================
   BUTTONS
   ========================================= */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--color-gold-bright);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.6), inset 0 0 15px rgba(255,255,255,0.6);
    background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold));
}

.full-width {
    width: 100%;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.pulse-animation {
    animation: pulse-gold 2s infinite;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 60px 0 40px;
    text-align: center;
}

.headline {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrapper {
    position: relative;
    max-width: 350px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 40px rgba(139, 0, 34, 0.4);
    border: 1px solid var(--glass-border);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,0,5,0.9) 0%, rgba(10,0,5,0) 40%);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

/* =========================================
   PAIN & CONTRAST
   ========================================= */
.pain-contrast {
    padding: 50px 0;
    position: relative;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--color-text-main);
}

.blocks-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pain-block {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
}

.pain-block:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold-dark);
}

.gold-icon {
    width: 26px;
    height: 26px;
    color: var(--color-gold);
}

.pain-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    color: var(--color-wine-light);
    color: #ff5e7e; /* Slightly brighter contrast */
}

.pain-block p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* =========================================
   UNIQUE MECHANISM
   ========================================= */
.mechanism {
    padding: 60px 0;
    position: relative;
}

.mechanism-box {
    background: linear-gradient(180deg, rgba(74, 0, 16, 0.4) 0%, rgba(10, 0, 5, 0.8) 100%);
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.stars-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.mechanism-text {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.mechanism-subtext {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* =========================================
   PRODUCT & SCARCITY
   ========================================= */
.product-section {
    padding: 40px 0;
}

.product-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-gold-bright);
    letter-spacing: 1px;
}

.benefits-list {
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--color-wine-deep);
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 40px;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.gold-bullet {
    color: var(--color-gold);
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.benefits-list strong {
    color: var(--color-gold);
    font-weight: 600;
}

.scarcity-box {
    text-align: center;
    margin: 30px 0;
}

.scarcity-label {
    color: #ff4757;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 3rem;
    color: var(--color-gold-bright);
    background: rgba(0,0,0,0.8);
    border: 2px solid var(--color-wine-light);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(139, 0, 34, 0.5);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* =========================================
   CHECKOUT & GUARANTEE
   ========================================= */
.checkout-section {
    padding: 40px 0 60px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.1), rgba(255,255,255,0) 50%);
    transform: rotate(30deg);
    pointer-events: none;
}

.price-old {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.price-old del {
    color: #ff4757;
}

.price-current {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-gold-bright);
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.guarantee-box {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    border: 1px dashed var(--color-gold-dark);
    border-radius: 15px;
    background: rgba(10, 0, 5, 0.5);
}

.shield-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: var(--color-gold);
}

.guarantee-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.guarantee-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #000;
    padding: 30px 0;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #222;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* =========================================
   MEDIA QUERIES (Desktop scaling)
   ========================================= */
@media (min-width: 768px) {
    .headline { font-size: 3rem; }
    .subheadline { font-size: 1.3rem; }
    .blocks-container {
        flex-direction: row;
        justify-content: space-between;
    }
    .pain-block {
        flex: 1;
    }
    .benefits-list {
        padding: 40px;
    }
    .hero-image-wrapper {
        max-width: 450px;
    }
}
