/* --- Variables : Mystic Emerald & Ancient Gold --- */
:root {
    --bg-dark: #06110B;
    --bg-card: rgba(10, 26, 20, 0.65);
    
    --gold: #D4AF37;
    --gold-light: #FFDF73;
    --emerald: #00FA9A;
    --emerald-dark: #008F58;
    
    --text-main: #E8F0EC;
    --text-muted: #A3B5AC;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --border-glass: rgba(212, 175, 55, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    --radius: 16px;
    --transition: all 0.3s ease;
}

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

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

/* --- Ambient Orbs --- */
.orb { position: fixed; border-radius: 50%; filter: blur(120px); z-index: -1; opacity: 0.15; }
.orb-1 { width: 500px; height: 500px; background: var(--emerald); top: -10%; left: -10%; }
.orb-2 { width: 600px; height: 600px; background: var(--gold); bottom: -20%; right: -10%; }

/* --- Base Typography & Utils --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: #FFF; margin-bottom: 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1.2rem; color: var(--text-muted); }

.gold-text { color: var(--gold); }
.emerald-text { color: var(--emerald); }
.danger-text { color: #FF4A4A; }
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.small-text { font-size: 0.95rem; }
.caption { font-size: 0.85rem; font-style: italic; color: #7A8F85; }

/* --- UI Elements --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}
.glass-card:hover { border-color: rgba(212, 175, 55, 0.4); }
.glass-card.p-0 { padding: 0; overflow: hidden; }
.border-emerald { border-top: 3px solid var(--emerald); }
.border-gold { border-top: 3px solid var(--gold); }
.border-red { border-top: 3px solid #FF4A4A; }

.btn { display: inline-block; padding: 12px 28px; border-radius: 30px; font-weight: 700; font-size: 0.95rem; transition: var(--transition); cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #A67C00); color: #000; border: none; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); color: #000; }

.badge { display: inline-block; background: rgba(0, 250, 154, 0.1); color: var(--emerald); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; border: 1px solid rgba(0, 250, 154, 0.3); margin-bottom: 20px; }
.disclaimer { border-left: 3px solid var(--gold); padding-left: 15px; background: rgba(212, 175, 55, 0.05); }
.disclaimer p { margin: 0; font-size: 0.9rem; }
.alert-box { background: rgba(0, 250, 154, 0.05); border: 1px dashed var(--emerald); padding: 15px; border-radius: 8px; }

/* --- Header & Nav --- */
.mystic-header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: var(--transition); border-bottom: 1px solid transparent; }
.mystic-header.scrolled { background: rgba(6, 17, 11, 0.9); backdrop-filter: blur(15px); padding: 12px 0; border-bottom: 1px solid var(--border-glass); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 35px; }
.nav-links { display: flex; gap: 25px; }
.nav-links a { color: var(--text-main); font-weight: 500; font-size: 0.95rem; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.burger span { width: 25px; height: 2px; background: var(--gold); transition: var(--transition); }

/* --- Layout --- */
.section-pad { padding: 90px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }

/* --- Hero --- */
.hero { padding: 150px 0 60px; min-height: 100vh; display: flex; align-items: center; }
.image-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-glass); box-shadow: var(--shadow-glass); position: relative; }
.image-frame::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 30px rgba(0,0,0,0.5); pointer-events: none; }
.rounded-img { border-radius: var(--radius); }

/* --- Lists --- */
.custom-list { counter-reset: mystic-counter; list-style: none; margin-bottom: 20px; }
.custom-list li { position: relative; padding-left: 35px; margin-bottom: 12px; color: var(--text-muted); }
.custom-list li::before { content: counter(mystic-counter); counter-increment: mystic-counter; position: absolute; left: 0; top: 0; color: var(--gold); font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; border-bottom: 1px solid var(--emerald); line-height: 1; }

.bullet-list { list-style: none; margin-bottom: 20px; }
.bullet-list li { position: relative; padding-left: 25px; margin-bottom: 10px; color: var(--text-muted); }
.bullet-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.9rem; }
.bullet-list.check li::before { content: '✔'; color: var(--emerald); }
.bullet-list.cross li::before { content: '✘'; color: #FF4A4A; }

/* --- Tables --- */
.overflow-x { overflow-x: auto; }
.mystic-table { width: 100%; border-collapse: collapse; text-align: left; }
.mystic-table th, .mystic-table td { padding: 18px 20px; border-bottom: 1px solid var(--border-glass); }
.mystic-table th { font-family: var(--font-heading); color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.mystic-table tr:last-child td { border-bottom: none; }
.rating-table .score { font-family: var(--font-heading); font-size: 1.3rem; color: var(--emerald); font-weight: 700; }

/* --- FAQ Accordion --- */
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.accordion-item { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.accordion-header { width: 100%; text-align: left; padding: 22px 25px; background: transparent; border: none; color: #FFF; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-header::after { content: '↓'; color: var(--gold); transition: var(--transition); font-family: var(--font-heading); }
.accordion-item.active { border-color: var(--gold); box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); }
.accordion-item.active .accordion-header::after { transform: rotate(180deg); color: var(--emerald); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 25px; }
.accordion-item.active .accordion-content { padding-bottom: 22px; }

/* --- Footer --- */
.mystic-footer { background: #030805; padding: 50px 0 30px; border-top: 1px solid var(--border-glass); margin-top: 50px; }
.footer-logo { height: 40px; margin: 0 auto 20px; opacity: 0.6; filter: grayscale(100%); }
.copyright { font-size: 0.85rem; color: #51635A; }

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(40px) scale(0.98); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
.delay-1 { transition-delay: 0.2s; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding-top: 120px; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; }
    .disclaimer { text-align: left; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .section-pad { padding: 60px 0; }
    .hidden-mobile { display: none; }
    
    /* Mobile Menu */
    .burger { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 260px; height: 100vh; background: rgba(6, 17, 11, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding-top: 90px; transition: var(--transition); border-left: 1px solid var(--border-glass); }
    .nav-links.active { right: 0; }
    .nav-links a { padding: 15px 30px; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}