:root {
    --bg-dark: #050810;
    --bg-card: rgba(15, 20, 35, 0.6);
    --gold-primary: #D4AF37;
    --gold-light: #F9E596;
    --gold-dark: #997A15;
    --primary-gradient: linear-gradient(135deg, #F9E596 0%, #D4AF37 50%, #997A15 100%);
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-danger: #ef4444;
    --success: #10b981;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Lighting & Background */
.ambient-light {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.main-light {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
}

.secondary-light {
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.1) 0%, rgba(41, 98, 255, 0) 70%);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glassmorphism */
.glassmorphism {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glassmorphism-dark {
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

/* Text Utilities */
.gold-text {
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Specifics */
section {
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

/* 1. Confirmation */
.confirmation {
    padding-top: 60px;
}

.icon-success i {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    animation: successPop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.confirmation h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 18px;
    color: var(--text-muted);
}

.support-text {
    font-size: 16px;
    color: var(--gold-primary);
    margin-top: 15px;
    font-weight: 600;
}

/* 2. Transition */
.transition {
    padding-top: 20px;
    position: relative;
}

.divider-glow {
    width: 100px;
    height: 2px;
    background: var(--primary-gradient);
    margin: 0 auto 30px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.shift-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sad-reality {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 3. Big Idea */
.big-idea {
    padding: 30px 0;
}

.bold-headline {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

/* 4. Premium Offer Intro */
.premium-offer {
    padding-top: 10px;
}

.product-name {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name .subtitle {
    display: block;
    font-size: 18px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 5px;
}

.description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.highlight-desc {
    color: white;
    font-weight: 600;
    font-size: 20px;
}

/* 5. 3D Visual Bundle */
.bundle-visual {
    margin: 50px auto 30px;
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.full-bundle-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.1));
    transition: transform 0.4s ease, filter 0.4s ease;
    z-index: 1;
}

.full-bundle-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
}

.book-base-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotateX(75deg);
    width: 400px;
    height: 150px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.3) 0%, rgba(0,0,0,0) 70%);
    filter: blur(15px);
    z-index: 0;
    pointer-events: none;
}

/* 6. Core Pillars */
.pillars-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.pillar-card {
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.pillar-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: #4a5568;
    background: rgba(255,255,255,0.05);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.gold-icon {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.pillar-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pillar-card ul {
    list-style: none;
}

.pillar-card li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}

.gold-check {
    color: var(--gold-primary);
    margin-top: 4px;
    font-size: 14px;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* 7. Emotional Logic */
.trigger-box {
    padding: 40px 30px;
    margin: 20px 0;
}

.trigger-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted);
}

.trigger-text.danger {
    color: white;
    margin-top: 10px;
    font-size: 22px;
}

.divider-small {
    width: 50px;
    height: 2px;
    background: var(--gold-dark);
    margin: 20px auto;
}

.logic-text {
    font-size: 18px;
    line-height: 1.5;
}

/* 9. Price Structure */
.price-box {
    padding: 30px 20px;
}

.price-original {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.strike {
    text-decoration: line-through;
    color: var(--text-danger);
    font-weight: 600;
}

.price-current {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.big-price {
    font-size: 56px;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.price-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.benefit-item {
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 10. Urgency & CTA */
.urgency-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.pulse-tag, .warning-tag {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.countdown-wrapper {
    padding: 15px;
    margin-bottom: 30px;
    display: inline-block;
}

.countdown-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.countdown {
    font-size: 32px;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: 2px;
}

/* CTA BUTTON */
.cta-button {
    display: block;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    background: var(--primary-gradient);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    padding: 20px 30px;
    width: 100%;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.cta-button:active {
    transform: translateY(1px);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.cta-button:hover .btn-glow {
    opacity: 1;
}

/* Trust Elements */
.trust-icons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.secure-badge {
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 32px;
    color: var(--text-muted);
}

/* 12. Rejection */
.reject-link-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 30px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 10px;
}

.reject-link-btn:hover {
    color: white;
}

/* 13. Final Push */
.final-push {
    margin-top: 20px;
    padding-bottom: 60px;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.strong-push {
    font-size: 22px;
    color: white;
    margin-top: 10px;
}

/* Animations */
@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Desktop & Tablet adjustments */
@media (min-width: 768px) {
    .bold-headline {
        font-size: 48px;
    }
    .pillars-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .urgency-tags {
        flex-direction: row;
        justify-content: center;
    }
    .bundle-visual {
        transform: scale(1.2);
        margin: 80px auto;
    }
    .cta-button {
        width: 80%;
        margin: 0 auto;
        padding: 25px 40px;
        font-size: 22px;
    }
}
