:root {
    --primary-red: #C30F16;
    --deep-red: #8B0000;
    --primary-gold: #D4AF37;
    --light-gold: #F3E5AB;
    --dark-green: #004D40;
    --forest-green: #1B4D3E;
    --bg-dark: #0F172A;
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
    /* Slightly larger base size for readability */
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, #1a0505 0%, var(--bg-dark) 70%);
}

.background-effects::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-red);
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
}

.background-effects::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--dark-green);
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid var(--glass-border);
}

.badge-urgent {
    display: inline-block;
    background: rgba(195, 15, 22, 0.2);
    color: #ff6b6b;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(195, 15, 22, 0.3);
    font-size: 0.9rem;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
}

.highlight-red {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(195, 15, 22, 0.4);
}

.highlight-gold {
    color: var(--primary-gold);
    font-style: italic;
}

.sub-headline-text {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
}

/* Product Intro */
.product-intro {
    padding: 40px 0;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.product-name {
    color: var(--primary-gold);
    font-weight: 700;
}

.recipe-count {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 16px 0;
    color: var(--text-light);
}

.scarcity-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.countdown-timer {
    display: flex;
    gap: 16px;
}

.time-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-red);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.time-box span {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.time-box .label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Pain Section */
.pain-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--text-light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    text-align: left;
}

.pain-item {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 0, 0, 0.08);
}

.icon-red {
    color: var(--primary-red);
    min-width: 24px;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.icon-gold {
    color: var(--primary-gold);
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-gold);
}

/* Product Showcase Image */
.product-showcase {
    margin: 30px 0;
    perspective: 1000px;
}

.book-cover-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.book-cover-img:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

/* Food Gallery */
.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.food-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.food-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.food-item:hover img {
    transform: scale(1.1);
}

.food-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--primary-gold);
    font-weight: 600;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Product Soul Section (Manifesto) */
.product-soul-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1e293b, #0F172A);
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.soul-content {
    max-width: 800px;
    margin: 0 auto;
}

.soul-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 24px;
    line-height: 1.8;
}

.highlight-paragraph {
    color: var(--text-light) !important;
    font-size: 1.6rem !important;
    font-weight: 600;
    margin: 40px 0 !important;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Emotional Value Section */
.emotional-value-section {
    padding: 80px 0;
    background: linear-gradient(to right, #0F172A, #1a0505);
}

.emotional-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.emotional-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-gold);
}

.emotional-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.emotional-image:hover img {
    transform: scale(1.05);
}

.emotional-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 30px;
}

.dream-list {
    list-style: none;
}

.dream-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.check-icon {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -5px;
}

.dream-list strong {
    font-size: 1.3rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dream-list p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* Food Porn Section */
.visual-sneak-peek {
    padding: 80px 0;
    background: #0b1120;
    /* Slightly darker/different shade */
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.food-porn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.porn-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.porn-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-gold);
}

.porn-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.porn-card:hover img {
    transform: scale(1.05);
}

.porn-content {
    padding: 24px;
    text-align: left;
}

.porn-content h4 {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.porn-content p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.featured {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), rgba(15, 23, 42, 0.8));
    border: 2px solid var(--primary-gold);
    transform: scale(1.02);
}

.best-value-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-gold);
    color: #000;
    padding: 8px 40px;
    font-weight: 800;
    transform: rotate(45deg);
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.offer-header h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 24px 0;
    font-family: 'Playfair Display', serif;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.features-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 32px;
}

.features-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.features-list li i {
    color: var(--primary-gold);
    width: 20px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 400px;
}

.primary {
    background: linear-gradient(135deg, var(--primary-gold), #F3E5AB);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.secondary {
    background: transparent;
    border: 2px solid var(--text-dim);
    color: var(--text-light);
}

.secondary:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

.secure-text {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0 100px;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-dim);
    border-top: 1px solid var(--glass-border);
}

/* 3D Headline Effect */
.headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.highlight-red {
    color: var(--primary-red);
    text-shadow:
        0 1px 0 #5e0000,
        0 2px 0 #500000,
        0 3px 0 #420000,
        0 4px 0 #350000,
        0 5px 0 #2b0000,
        0 6px 1px rgba(0, 0, 0, 0.1),
        0 0 5px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.3),
        0 3px 5px rgba(0, 0, 0, 0.2),
        0 5px 10px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.2),
        0 20px 20px rgba(0, 0, 0, 0.15);
    transform: perspective(500px) rotateX(5deg);
    display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offer-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 3rem;
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 80px 0 60px;
        background-attachment: scroll;
        /* Fix for mobile browser parallax */
    }

    .headline {
        font-size: 2.2rem;
        /* Smaller for mobile */
        word-wrap: break-word;
    }

    .highlight-red {
        text-shadow:
            0 1px 0 #5e0000,
            0 2px 0 #500000,
            0 3px 0 #420000;
        /* Subtle 3D on mobile */
    }

    .sub-headline-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Stack countdown on very small screens */
    .countdown-timer {
        gap: 8px;
    }

    .time-box {
        min-width: 60px;
        padding: 8px 12px;
    }

    .time-box span {
        font-size: 1.5rem;
    }

    /* Cards spacing */
    .glass-card,
    .offer-card,
    .porn-card {
        padding: 24px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 32px;
    }

    /* Offer adjustments */
    .price {
        font-size: 3rem;
    }

    .best-value-badge {
        font-size: 0.7rem;
        padding: 6px 30px;
        top: 15px;
        right: -30px;
    }

    .features-list li {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
        width: 100%;
        white-space: normal;
        /* Allow text wrap */
    }

    /* Food porn grid mobile */
    .food-porn-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .porn-card img {
        height: 250px;
        /* Taller images on mobile */
    }
}