/* Global Styles */
:root {
    --bg-color: #0d0218;
    /* Deep dark violet/black */
    --primary-color: #D4AF37;
    /* Gold */
    --secondary-color: #4B0082;
    /* Indigo */
    --text-color: #f0f0f0;
    --accent-color: #b8860b;
    /* Dark Goldenrod */
    --card-bg: #1a0a2e;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Top Navigation */
.top-nav {
    background-color: rgba(13, 2, 24, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.nav-brand {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    margin-top: 60px;
    /* Offset for fixed header */
    background: linear-gradient(rgba(13, 2, 24, 0.7), rgba(13, 2, 24, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    /* Mystical background */
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--primary-color);
}

.hero-content {
    z-index: 2;
}

.pre-headline {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.sub-headline {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 800px;
    margin: 20px auto 40px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #b8860b, #ffd700);
    color: #000;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    border-color: #fff;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

.pulse-fast {
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    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);
    }
}

/* Identification Section */
.identification {
    padding: 60px 0;
    text-align: center;
}

.identification .text-block {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.alert-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
}

.alert-box h3 {
    margin-top: 0;
    color: #ffcc00;
}

/* Pattern Break */
.pattern-break {
    background-color: #150822;
    /* Slightly Lighter Purple */
    text-align: center;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

/* Product Reveal */
.product-reveal {
    text-align: center;
    background: radial-gradient(circle at center, #2e1245, var(--bg-color));
}

.gold-text {
    font-size: 2.8rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.book-container {
    margin: 40px auto;
    max-width: 450px;
    /* Increased size */
    position: relative;
    display: flex;
    justify-content: center;
}

.book-cover-img {
    width: 100%;
    height: auto;
    display: block;
    /* Soft golden glow behind the PNG */
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    transition: transform 0.3s ease;
}

.book-cover-img:hover {
    transform: scale(1.05);
    /* Intensify glow on hover */
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.9));
}


/* 5 Laws Section */
.five-laws {
    background-color: var(--bg-color);
}

.laws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.law-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
    text-align: center;
}

.law-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.law-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.law-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Timeline */
.timeline-section {
    background: #150822;
    /* Alternating bg */
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 20px;
    /* Small layout adjustment for simplicity */
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 90%;
    margin-left: 20px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -17px;
    background-color: var(--bg-color);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

/* Community 77 */
.community-77 {
    text-align: center;
    background: #000;
    padding: 80px 0;
}

.badge-77 {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    line-height: 140px;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Offer Section */
.offer-section {
    text-align: center;
    padding: 80px 0 40px;
    background: linear-gradient(to top, #000, #1a0a2e);
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 40px auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-tag {
    font-size: 2rem;
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 15px;
    font-size: 1.5rem;
}

.new-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .gold-text {
        font-size: 2rem;
    }

    .timeline::after {
        left: 20px;
    }

    .badge-77 {
        width: 100px;
        height: 100px;
        line-height: 90px;
        font-size: 3rem;
    }
}