/* ROOT VARIABLES - Golden Aztec Premium */
:root {
    --bg-dark: #111315;
    --bg-darker: #0a0b0d;
    --bg-panel: #1a1d21;
    
    --color-gold: #D4AF37;
    --color-gold-light: #FFDF73;
    --color-gold-dark: #B8860B;
    --color-red: #E63946;
    
    --text-main: #E2E8F0;
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
}

/* Reset & Setup */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text-white); line-height: 1.2; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px;}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.3rem; color: var(--color-gold); }
p { margin-bottom: 1.2rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-darker { background-color: var(--bg-darker); }
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-red { color: var(--color-red); }
.text-muted { color: var(--text-muted); }
.text-xs { font-size: 0.85rem; }
.text-sm { font-size: 0.95rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mt-5 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-800 { max-width: 800px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.align-center { align-items: center; }
.align-start { align-items: start; }

/* Buttons & Tags */
.btn-gold {
    display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
    color: #111; font-family: var(--font-heading); font-weight: 800; border-radius: 4px;
    box-shadow: var(--shadow-gold); border: none; cursor: pointer; transition: var(--transition);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3); }

.gold-tag {
    display: inline-block; padding: 6px 14px; border: 1px solid var(--color-gold);
    color: var(--color-gold-light); font-size: 0.8rem; font-family: var(--font-heading);
    letter-spacing: 2px; margin-bottom: 1rem; border-radius: 2px; background: rgba(212, 175, 55, 0.05);
}

/* Lists */
.gold-list, .check-list, .bullet-list, .cross-list, .steps-list { list-style: none; padding-left: 0; }
.gold-list li, .check-list li, .bullet-list li, .cross-list li, .steps-list li { position: relative; padding-left: 28px; margin-bottom: 12px; }
.gold-list li::before { content: '◈'; position: absolute; left: 0; color: var(--color-gold); font-size: 1.2rem; line-height: 1; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #4CAF50; font-weight: bold; }
.bullet-list li::before { content: '•'; position: absolute; left: 0; color: var(--color-gold); font-size: 1.5rem; line-height: 0.8; }
.cross-list li::before { content: '✕'; position: absolute; left: 0; color: var(--color-red); font-weight: bold; }

/* Header */
.gold-header {
    position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 0;
    background: rgba(10, 11, 13, 0.9); backdrop-filter: blur(10px); border-bottom: var(--border-gold);
    transition: var(--transition);
}
.gold-header.scrolled { padding: 10px 0; background: rgba(10, 11, 13, 0.98); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: var(--text-white); }
.nav-links a:hover { color: var(--color-gold); }

/* Mobile Menu Toggle */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.mobile-toggle span { display: block; width: 25px; height: 2px; background-color: var(--color-gold); transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero-section { position: relative; padding: 160px 0 80px; min-height: 90vh; display: flex; align-items: center; }
.glow-bg { position: absolute; top: 20%; left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 60%); z-index: -1; filter: blur(50px); }
.hero-text { color: var(--text-muted); font-size: 1.05rem; }
.floating-img { animation: float 6s ease-in-out infinite; border-radius: 16px; }
.shadow-gold { filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)); }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }

/* Info Grid (Overview) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.info-card { background: var(--bg-panel); padding: 20px; border-radius: 6px; border-top: 2px solid var(--color-gold-dark); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.info-card.full-span { grid-column: 1 / -1; background: rgba(212, 175, 55, 0.05); }
.info-label { display: block; font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }
.info-value { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-white); }

/* Boxes & Cards */
.box-inset { background: var(--bg-panel); border: var(--border-gold); padding: 40px; border-radius: 8px; box-shadow: inset 0 0 20px rgba(0,0,0,0.5); }
.alert-box { background: rgba(230, 57, 70, 0.1); border-left: 4px solid var(--color-red); padding: 20px; border-radius: 0 6px 6px 0; }
.alert-box h4 { color: var(--color-red); margin-bottom: 10px; }
.warning-panel { border: 2px solid var(--color-gold); padding: 30px; border-radius: 6px; background: rgba(212,175,55,0.03); }
.flow-card { background: var(--bg-panel); border: 1px solid #2a2a2a; padding: 30px; border-radius: 8px; }
.border-bot-gold { border-bottom: 1px solid var(--color-gold); }
.rounded-img { border-radius: 12px; }
.border-gold-thin { border: 1px solid rgba(212, 175, 55, 0.4); }
.caption { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }

/* Ratings */
.rating-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.rating-header { display: flex; justify-content: space-between; font-family: var(--font-heading); color: var(--text-white); margin-bottom: 5px; }
.rating-track { width: 100%; height: 6px; background: #222; border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light)); border-radius: 3px; width: 0; transition: width 1.5s ease-in-out; }

/* Pros/Cons Box */
.pros-cons-box { background: var(--bg-panel); border-top: 3px solid var(--color-gold); padding: 30px; border-radius: 6px; }
.pros-cons-box.border-red { border-top-color: var(--color-red); }

/* Accordion */
.accordion { border-top: var(--border-gold); }
.acc-item { border-bottom: var(--border-gold); }
.acc-header {
    width: 100%; padding: 20px 0; background: transparent; border: none; text-align: left;
    color: var(--text-white); font-family: var(--font-heading); font-size: 1.1rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition);
}
.acc-header:hover { color: var(--color-gold-light); }
.acc-header .icon { color: var(--color-gold); font-size: 1.5rem; transition: transform 0.3s; }
.acc-item.active .icon { transform: rotate(45deg); color: var(--color-red); }
.acc-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.acc-item.active .acc-content { padding-bottom: 20px; }

/* Verdict Banner */
.verdict-banner { border: 2px dashed var(--color-gold-dark); padding: 40px; background: rgba(212,175,55,0.02); }

/* Footer */
.site-footer { padding: 60px 0 20px; border-top: 1px solid #222; background: #080808; }
.footer-logo { height: 45px; opacity: 0.3; filter: grayscale(100%); transition: var(--transition); }
.footer-logo:hover { opacity: 1; filter: none; }

/* JS Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .reverse-mobile .visual-block { order: 1; }
    .reverse-mobile .content-block { order: 2; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .floating-img { max-width: 80%; margin: 0 auto; }
}

@media (max-width: 768px) {
    .desktop-nav {
        position: fixed; top: 75px; left: -100%; width: 100%; height: calc(100vh - 75px);
        background: rgba(10, 11, 13, 0.98); flex-direction: column; justify-content: center;
        align-items: center; transition: var(--transition); border-top: 1px solid #222;
    }
    .desktop-nav.active { left: 0; }
    .nav-links { flex-direction: column; text-align: center; gap: 2rem; }
    .nav-links a { font-size: 1.3rem; }
    .mobile-toggle { display: flex; }
    
    h1 { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
    .box-inset { padding: 25px; }
}