/* Base Settings & Theme */
:root {
    --bg-dark: #0a0806;
    --bg-card: #14110e;
    --gold: #d4af37;
    --gold-light: #f5d17a;
    --gold-dark: #997a15;
    --text-main: #fcfcfc;
    --text-muted: #c4beb4;
    --accent-red: #e63946;
    --font-heading: 'Cinzel', serif;
    --font-serif: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    z-index: 9999;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

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

.glow {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at center top, #1a1510 0%, var(--bg-dark) 80%);
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-image-container {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background: var(--gold);
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.1); }
}

.book-cover {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Floating Animation for Image */
.floating-element {
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes float {
    0% { transform: translateY(0px) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-20px) rotateX(-2deg) rotateY(2deg); }
    100% { transform: translateY(0px) rotateX(2deg) rotateY(-2deg); }
}

.eyebrow {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.subtitle.highlight {
    color: var(--text-main);
    font-weight: 500;
    font-style: normal;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    margin-bottom: 40px;
}

/* Offer Box & Countdown */
.offer-box {
    background: var(--bg-card);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.urgent-text {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    animation: flash 2s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.offer-expires {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.time-box {
    background: #000;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.time-box span:first-child {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.time-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.colon {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-top: -15px;
}

.price-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.old-price {
    font-size: 1.5rem;
    color: #888;
    text-decoration: line-through;
    font-family: var(--font-heading);
}

.new-price {
    font-size: 3rem;
    color: #4ade80; /* Bright green for price */
    font-weight: 800;
    font-family: var(--font-heading);
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

/* Buy Button */
.buy-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffdf73 50%, #b58c1a 100%);
    color: #000;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #fff;
    cursor: pointer;
    margin-bottom: 15px;
}

.buy-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #ffdf73 0%, #fff0b3 50%, #d4af37 100%);
}

.btn-text {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.btn-subtext {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 600;
}

/* Pulse / Shake Animation for Button */
.pulse-element {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.shield-icon {
    width: 20px;
    height: 20px;
    filter: invert(70%) sepia(30%) saturate(600%) hue-rotate(5deg) brightness(100%) contrast(90%);
}

/* Discover Section */
.discover-section {
    padding: 100px 0;
    background: #000;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.secrets-list {
    list-style: none;
    text-align: left;
    margin-bottom: 50px;
}

.secrets-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: transform 0.3s;
}

.secrets-list li:hover {
    transform: translateX(10px);
    background: #1a1714;
}

.icon-check {
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

.list-text strong {
    color: var(--gold-light);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 5px;
}

.list-text {
    font-size: 1.05rem;
    color: var(--text-main);
}

.wisdom-box {
    border: 1px dashed rgba(212,175,55,0.4);
    padding: 40px;
    border-radius: 10px;
    background: rgba(212,175,55,0.02);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.dynasty-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* Bottom CTA */
.bottom-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 8, 6, 0.9), rgba(10, 8, 6, 0.9)), url('https://www.transparenttextures.com/patterns/black-linen.png');
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.bottom-offer {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(212,175,55,0.3);
}

.huge-btn .btn-text {
    font-size: 1.5rem;
}

.savings-text {
    margin-top: 15px;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #111;
}

.footer-links {
    margin-top: 15px;
}

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

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

/* Responsive */
@media (max-width: 900px) {
    .main-title {
        font-size: 2.5rem;
    }
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .subtitle.highlight {
        border-left: none;
        border-top: 3px solid var(--gold);
        padding-left: 0;
        padding-top: 15px;
    }
    .secrets-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
