:root {
    --black: #050505;
    --dark: #0f0f0f;
    --gold: #D4AF37;
    --gold-bright: #F5D269;
    --white: #ffffff;
    --gray: #888888;
}

body {
    margin: 0; font-family: 'Inter', sans-serif;
    background: var(--black); color: var(--white);
    line-height: 1.6; overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.gold-text { color: var(--gold); }
.gold-bg { background: var(--gold); }
.label { font-size: 11px; letter-spacing: 4px; color: var(--gold); font-weight: 800; margin-bottom: 20px; display: block; }

/* Header */
header { padding: 25px 0; background: rgba(0,0,0,0.9); border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand-name { font-family: 'Cinzel', serif; font-size: 24px; color: white; text-decoration: none; }
nav a { margin: 0 15px; color: white; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--gold); }

.stat-badge { border: 1px solid var(--gold); padding: 5px 15px; border-radius: 2px; }
.badge-top { display: block; font-size: 9px; color: var(--gold); font-weight: 800; }
.badge-bottom { font-weight: 800; font-size: 13px; }

/* Hero Animation */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; }
.hero-content { max-width: 600px; position: relative; z-index: 5; }
.animate-up { animation: fadeInUp 1s ease-out forwards; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-skew-image {
    position: absolute; right: 0; top: 0; width: 45%; height: 100%;
    background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1200&q=80') center/cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    filter: brightness(0.6); transition: 0.5s;
}
.hero:hover .hero-skew-image { transform: scale(1.05); filter: brightness(0.8); }

/* Buttons & Components */
.btn-gold { background: var(--gold); color: #000; padding: 18px 35px; font-weight: 800; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); }
.btn-outline { border: 1px solid white; color: white; padding: 18px 35px; text-decoration: none; display: inline-block; margin-left: 10px; transition: 0.3s; }
.btn-outline:hover { background: white; color: black; }

.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 50px 0; text-align: center; border-bottom: 1px solid #222; }
.s-item strong { display: block; font-size: 32px; color: var(--gold); }
.s-item span { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

.dark-card { background: var(--dark); padding: 50px 40px; border: 1px solid #222; transition: 0.4s; }
.dark-card:hover { border-color: var(--gold); transform: translateY(-10px); }

.cta-banner { padding: 60px 0; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.btn-dark { background: #000; color: #fff; padding: 15px 30px; text-decoration: none; font-weight: 800; }
