/* Custom Properties */
:root {
    --bg-color: #050508;
    --text-primary: #e0e0e0;
    --text-secondary: #9ba0aa;
    --neon-primary: #9d4edd;
    --neon-secondary: #ff9e00;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, .serif-title { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); margin-bottom: 20px; letter-spacing: 1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
p { margin-bottom: 1.5rem; color: var(--text-secondary); font-size: 1.1rem; }

.highlight {
    background: linear-gradient(135deg, var(--neon-secondary), var(--neon-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.section { padding: 100px 0; position: relative; }
.section-title { text-align: center; max-width: 800px; margin: 0 auto 60px; }

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.15);
}

.line-through { text-decoration: line-through; opacity: 0.6; }

/* Stars and glowing backgrounds */
.stars {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0));
    background-repeat: repeat; background-size: 200px 200px; opacity: 0.3;
}
.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; z-index: 0; pointer-events: none; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--neon-primary), transparent 70%); top: -200px; right: -200px; animation: drift 20s infinite alternate ease-in-out; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #ff007f, transparent 70%); bottom: 20%; left: -200px; animation: drift 25s infinite alternate-reverse ease-in-out; }

@keyframes drift { 0% { transform: translate(0, 0); } 100% { transform: translate(100px, 150px); } }

/* Navbar */
nav {
    position: fixed; top: 0; width: 100%; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; z-index: 100;
    background: rgba(5, 5, 8, 0.8); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border);
}
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
.logo span { color: var(--neon-primary); }
.nav-btn {
    color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 600; padding: 8px 20px;
    border: 1px solid var(--neon-primary); border-radius: 30px; transition: var(--transition);
}
.nav-btn:hover { background: var(--neon-primary); box-shadow: 0 0 15px var(--neon-primary); }

/* Buttons */
.btn {
    display: inline-block; padding: 15px 40px; font-family: var(--font-heading); font-weight: 700;
    font-size: 1.2rem; color: #fff; text-decoration: none; border-radius: 50px; border: none;
    cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 2px;
    position: relative; overflow: hidden; z-index: 1;
    background: linear-gradient(45deg, var(--neon-primary), #5a189a);
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, #7b2cbf, var(--neon-secondary)); z-index: -1; transition: opacity 0.4s ease; opacity: 0;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 25px rgba(157, 78, 221, 0.5); }

.btn-large { padding: 20px 60px; font-size: 1.5rem; width: 100%; max-width: 400px; display: inline-flex; justify-content: center; margin-top: 2rem; animation: pulsebtn 2s infinite; }
@keyframes pulsebtn { 0% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(157, 78, 221, 0); } 100% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0); } }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; }
.hero-content { display: flex; align-items: center; gap: 50px; }
.hero-text { flex: 1; }
.badge { display: inline-block; padding: 5px 15px; background: rgba(157, 78, 221, 0.2); border: 1px solid var(--neon-primary); border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: var(--neon-primary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.hero-image { flex: 1; display: flex; justify-content: center; }
.image-wrapper { position: relative; width: 100%; max-width: 400px; }
.image-wrapper img { width: 100%; height: auto; filter: drop-shadow(0 0 30px rgba(157, 78, 221, 0.5)); border-radius: 12px; }
.floating { animation: floating 6s ease-in-out infinite; }
@keyframes floating { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } 100% { transform: translateY(0px) rotate(0deg); } }

/* Grid Sections */
.grid { display: grid; gap: 30px; }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.dark-gradient { background: linear-gradient(to bottom, transparent, rgba(157, 78, 221, 0.05), transparent); }
.content-center { text-align: center; max-width: 800px; margin: 0 auto; }
.large-text { font-size: 1.5rem; color: #fff; line-height: 1.8; }
.bonus-container { display: flex; flex-direction: column; gap: 40px; }
.bonus-card { position: relative; padding: 3rem; }
.bonus-badge { position: absolute; top: -15px; left: 30px; background: var(--neon-secondary); color: #000; padding: 5px 20px; border-radius: 20px; font-weight: 800; font-size: 0.9rem; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(255, 158, 0, 0.4); }
.emphasis { color: #fff; font-weight: 600; font-style: italic; margin-top: 1rem; }
.testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Offer */
.offer-box { max-width: 800px; margin: 0 auto; text-align: center; padding: 4rem 2rem; position: relative; overflow: hidden; border: 2px solid var(--neon-primary); }
.offer-box::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; box-shadow: inset 0 0 50px rgba(157, 78, 221, 0.2); pointer-events: none; }
.pulse { animation: flashText 2s infinite; }
@keyframes flashText { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.value-breakdown { margin: 40px 0; text-align: left; background: rgba(0,0,0,0.4); padding: 20px; border-radius: 10px; }
.value-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.item-name { color: #e0e0e0; }
.price-text { font-size: 4rem; font-weight: 800; display: block; line-height: 1.1; margin-top: 10px; }
.animated-alert { margin-top: 30px; color: var(--neon-secondary); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; animation: shake 5s infinite; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 1%, 3%, 5%, 7%, 9% { transform: translateX(-5px); } 2%, 4%, 6%, 8% { transform: translateX(5px); } 10% { transform: translateX(0); } }

/* Footer */
footer { padding: 80px 0 40px; text-align: center; border-top: 1px solid var(--glass-border); margin-top: 80px; }
.guarantee-box { max-width: 600px; margin: 0 auto 60px; }
.transform-msg { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-top: 30px; }

/* Reveal Animation */
.reveal { opacity: 0; transition: all 1s ease-out; }
.reveal-bottom { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.9); }
.reveal.active { opacity: 1; transform: translate(0) scale(1); }

/* Responsive Settings */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; padding-top: 60px; }
    .hero-text { order: 2; margin-top: 40px; }
    .hero-image { order: 1; }
    .cta-wrapper { display: flex; justify-content: center; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    nav { padding: 15px 20px; }
    h1 { font-size: 2.2rem; }
    .value-item { flex-direction: column; gap: 5px; }
    .price-text { font-size: 3rem; }
}
