:root {
    --gold: #C5A059;
    --black: #050505;
    --dark-grey: #121212;
    --white: #FFFFFF;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    scroll-behavior: smooth;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; text-align: center; }

/* HERO SECTION */
.hero-section {
    height: 100vh;
    background: url('/img/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.2));
}

.content-wrapper { position: relative; z-index: 2; max-width: 600px; text-align: left; }
.main-title { font-family: 'Cinzel', serif; font-size: 4.5rem; line-height: 1; margin: 10px 0; }
.sub-title { font-size: 1.2rem; color: var(--gold); letter-spacing: 5px; text-transform: uppercase; }

/* INSIGHTS CARDS */
.dark-section { padding: 40px 0; background: var(--dark-grey); }
.section-title { font-family: 'Cinzel', serif; font-size: 2.5rem; margin-bottom: 60px; color: var(--gold); }
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.insight-card { background: #1a1a1a; padding: 40px; border: 1px solid #333; transition: 0.3s; }
.insight-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.gold-num { font-size: 3rem; font-weight: bold; color: rgba(197, 160, 89, 0.2); display: block; }

/* OFFER SECTION */
.offer-section { padding: 120px 0; background: var(--black); }
.flex-offer { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; }
.floating-book { width: 350px; box-shadow: 0 30px 60px rgba(0,0,0,0.8); border: 1px solid #222; }
.book-details { max-width: 500px; text-align: left; }
.btn-gold-fill { 
    background: var(--gold); color: var(--black); padding: 20px 50px; 
    text-decoration: none; font-weight: bold; display: inline-block; margin-top: 30px; 
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-section {
        padding-left: 5%;
        justify-content: center;
        text-align: center;
        background-attachment: scroll; 
    }

    .content-wrapper {
        text-align: center;
        margin: 0 auto;
    }

    .flex-offer {
        flex-direction: column; 
        text-align: center;
    }

    .book-visual {
        margin-bottom: 40px;
    }

    .floating-book {
        width: 80%;
    }

    .book-details {
        text-align: center;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* AUTHOR SECTION STYLES */
.author-section {
    padding: 80px 0;
    background: #080808; 
    border-top: 1px solid #1a1a1a;
}

.flex-author {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.author-image-wrapper {
    position: relative;
    flex: 1;
}

.author-img {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    filter: grayscale(20%); 
    border: 1px solid #222;
}

.img-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: 1;
}

.author-text-content {
    flex: 1.2;
}

.gold-tag {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 25px;
}

.author-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
}

.author-bio-secondary {
    font-size: 1rem;
    color: #999;
    font-style: italic;
}

.author-signature {
    font-family: 'Cinzel', serif; 
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 30px;
}

/* RESPONSIVE AUTHOR SECTION */
@media (max-width: 768px) {
    .flex-author {
        flex-direction: column;
        text-align: center;
    }
    
    .img-frame {
        display: none;
    }
    
    .author-name {
        font-size: 2.2rem;
    }
}
/* PREMIUM OFFER SECTION */
.offer-section {
    padding: 150px 0;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.flex-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

/* features */
.book-visual-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-glow {
    position: absolute;
    width: 300px;
    height: 400px;
    background: var(--gold);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}

.floating-book-large {
    width: 100%;
    max-width: 420px; 
    z-index: 2;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.9);
    transition: transform 0.5s ease;
}

.floating-book-large:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.02);
}

/* BOOK PRESENT */
.book-details-premium {
    flex: 1;
    text-align: left;
}

.gold-text-large {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin: 10px 0;
    line-height: 1;
}

.price-tag-premium {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.benefit-list-premium {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.benefit-list-premium li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ccc;
}

.bullet-gold {
    width: 8px;
    height: 8px;
    background: var(--gold);
    margin-right: 15px;
    display: inline-block;
}

.btn-gold-mega {
    background: var(--gold);
    color: var(--black);
    padding: 25px 60px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: 0.3s;
}

.btn-gold-mega:hover {
    background: #fff;
    transform: translateY(-3px);
}

.vault-link {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.vault-link a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.vault-link a:hover {
    border-bottom: 1px solid var(--gold);
}

@media (max-width: 992px) {
    .flex-offer {
        flex-direction: column;
        text-align: center;
    }
    .book-details-premium {
        text-align: center;
    }
    .floating-book-large {
        max-width: 300px;
    }
    .gold-text-large {
        font-size: 2.5rem;
    }
}
/* MINIMALIST OFFER SECTION */
.offer-minimal {
    padding: 50px 0;
    background: #000;
    color: #fff;
}

.flex-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px; 
}

.book-clean {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 10px 30px rgba(255,255,255,0.05));
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.book-clean:hover {
    transform: translateY(-10px);
}

.title-minimal {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 200;
    margin: 0;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.tagline-minimal {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.price-minimal {
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 40px;
}

.btn-minimal {
    border: 1px solid #fff;
    color: #fff;
    padding: 18px 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    transition: 0.4s;
    display: inline-block;
}

.btn-minimal:hover {
    background: #fff;
    color: #000;
}

.vault-minimal {
    margin-top: 30px;
}

.vault-minimal a {
    color: #444;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.vault-minimal a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .flex-minimal {
        flex-direction: column;
        gap: 60px;
    }
    .title-minimal {
        font-size: 2.5rem;
    }
}
/* TESTIMONIALS SECTION */
.testimonial-section {
    padding: 80px 0;
    background: #050505;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #1a1a1a;
    padding: 50px 40px;
    max-width: 450px;
    text-align: left;
    transition: 0.4s;
    position: relative;
}

.highlight-card {
    border-color: var(--gold); 
    background: rgba(197, 160, 89, 0.05);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #eee;
    font-style: italic;
    margin-bottom: 35px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
}

.client-info cite {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
}
.site-footer {
    padding: 60px 0 40px;
    background: #000;
    text-align: center;
}

.footer-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
    opacity: 0.5;
}

.copyright-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #444; 
    text-transform: uppercase;
    margin-bottom: 10px;
}

.author-credits {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px;
    }
}
/* VAULT & MAJESTY STYLES */
.vault-body {
    background: #000;
    color: #fff;
    min-height: 100vh;
}

/* LOGIN SCREEN */
.login-vault {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #111 0%, #000 100%);
}

.vault-card {
    text-align: center;
    padding: 60px;
    border: 1px solid #1a1a1a;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
}

.vault-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 5px;
    margin: 20px 0;
}

.vault-input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;
    margin-bottom: 30px;
    outline: none;
}

.error-msg {
    color: #ff4444;
    font-size: 0.7rem;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* MAJESTY CONTENT */
.majesty-content {
    padding: 60px 0;
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.majesty-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    margin: 10px 0;
}

.reveal-card {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(145deg, #0a0a0a, #111);
}

.coupon-box-premium {
    margin: 40px 0;
    padding: 30px;
    border: 1px dashed rgba(197, 160, 89, 0.5);
}

.coupon-code-large {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 10px;
    margin-top: 10px;
}

.gold-bg {
    background: var(--gold) !important;
    color: #000 !important;
    font-weight: bold;
}

.vault-footer {
    margin-top: 100px;
    font-size: 0.6rem;
    color: #444;
    letter-spacing: 2px;
}
/* EXCLUSIVE PAGE */
.btn-vault-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 20px 60px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
    cursor: pointer;
    outline: none;
}

.btn-vault-gold:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3); 
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-vault-gold {
        width: 100%;
        padding: 22px 0;
        letter-spacing: 2px;
    }
}

* {
    box-sizing: border-box; 
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .login-vault {
        width: 100vw; 
        padding: 20px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vault-card {
        width: 100%; 
        max-width: 100%;
        margin: 0;
        padding: 40px 20px;
        border-left: none; 
        border-right: none;
    }

    .vault-input {
        width: 100%;
        max-width: 100%;
        font-size: 16px; 
    }

    .btn-vault-gold {
        width: 100%;
        box-sizing: border-box;
    }
}
@media (max-width: 768px) {

    .vault-title {
        font-size: 1.5rem; 
        letter-spacing: 2px;
        line-height: 1.2;
        margin: 15px 0;
    }
    
    .vault-instruction {
        font-size: 0.9rem;
        padding: 0 10px; 
    }
}
@media (max-width: 768px) {

    .majesty-title {
        font-family: 'Cinzel', serif;
        font-size: 1.8rem; 
        letter-spacing: 3px;
        margin-bottom: 8px;
        line-height: 1.2;
        text-align: center;
    }
}

.mobile-break {
    display: none; 
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
        content: "";
        margin-top: 5px;
    }

    .real-statement {
        font-size: 0.95rem;
        line-height: 1.6; 
        text-align: center;
        padding: 0 10px;
    }
}
.real-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.real-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 30px;
}

.product-highlight-minimal h4 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.coupon-box-simple {
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 20px 0;
    margin: 30px 0;
}

.coupon-code-clean {
    font-weight: bold;
    color: #fff;
    letter-spacing: 8px;
    font-size: 1.5rem;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .real-title { font-size: 1.4rem; }
    .real-desc { font-size: 0.9rem; }
    .coupon-code-clean { letter-spacing: 4px; font-size: 1.2rem; }
}
/* PARTNERSHIP SECTION */
.partnership-intro {
    padding: 60px 0;
    text-align: center;
}

.container-small {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.partnership-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    margin-top: 20px;
}

.exclusive-proposal-box {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: rgba(197, 160, 89, 0.05);
}

.proposal-highlight {
    font-size: 1.4rem;
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.proposal-math {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

/* TECHNICAL SECTION */
.technical-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 30px 0;
}

.tech-item {
    text-align: center;
}

.tech-val {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.tech-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

.formula-desc {
    margin-bottom: 40px;
    color: #888;
    font-style: italic;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .proposal-highlight { font-size: 1.2rem; }
    .tech-val { font-size: 2rem; }
    .technical-grid { gap: 20px; }
}
/* CLEAN TECHNICAL SECTION */
.supplement-technical-clean {
    padding: 40px 0;
    background: #000;
}

.flex-tech {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.product-image-area {
    flex: 1;
    text-align: right;
}

.product-shot {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.1)); 
}

.technical-details-area {
    flex: 1.2;
    text-align: left;
}

.technical-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #222;
}

.formula-desc-clean {
    color: #888;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    max-width: 500px;
}

@media (max-width: 768px) {
    .flex-tech {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .product-image-area {
        text-align: center;
    }
    
    .product-shot {
        max-width: 280px;
    }
    
    .technical-details-area {
        text-align: center;
    }
    
    .technical-stats {
        justify-content: center;
    }
    
    .stat-num {
        font-size: 2.2rem;
    }

    .formula-desc-clean {
        margin: 0 auto 40px;
    }
}
.ozelyt-invitation {
    padding: 80px 0;
    background: #000;
    border-top: 1px solid #111; 
    text-align: center;
}

.invitation-content {
    max-width: 600px;
    margin: 0 auto;
}

.gold-tag-small {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    opacity: 0.8;
}

.invitation-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666; 
    margin-bottom: 25px;
    font-weight: 300;
}

.link-minimal-gold {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    transition: 0.3s;
}

.link-minimal-gold:hover {
    color: var(--gold);
    border-bottom-color: #fff;
}

@media (max-width: 768px) {
    .ozelyt-invitation {
        padding: 60px 20px;
    }
    
    .invitation-text {
        font-size: 0.9rem;
    }
}
.red-link {
    color: #ff0000 !important; 
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    padding-bottom: 5px;
}

.red-link:hover {
    color: #ff4d4d !important; 
    border-bottom-color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4); 
}
.mobile-book-cover {
    display: none;
}

@media (max-width: 768px) {
    .mobile-book-cover {
        display: block; 
        margin: 0 auto 20px; 
        max-width: 250px; 
        height: auto;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    }

    .hero-section {
        padding-top: 10px; 
    }

    .brand-tag {
        margin-top: 5px;
        display: block;
    }
}
@media (max-width: 768px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important; 
        padding-top: 40px !important; 
    }

    .content-wrapper {
        position: relative;
        transform: translateY(-40px); 
        
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .mobile-book-cover {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
.desktop-break {
    display: block; 
}

@media (max-width: 768px) {
    .desktop-break {
        display: none; 
    }
}
.hero-statement {
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-statement {
        margin-bottom: 20px; 
    }
}