:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a2235;
    --bg-card-hover: #1f2a40;
    --gold: #d4a537;
    --gold-light: #f0d078;
    --gold-dark: #b8860b;
    --text-primary: #f1f1f1;
    --text-secondary: #a0aec0;
    --text-muted: #6b7a90;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --success: #10b981;
    --border: #2d3748;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 24px rgba(212,165,55,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --container: 1200px;
    --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Prompt', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,14,23,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}
.header-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; height: var(--header-h); gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
    width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 800; color: #0a0e17;
}
.logo-text { font-size: 24px; font-weight: 800; color: var(--gold); letter-spacing: 2px; }

.nav-desktop { display: flex; gap: 8px; flex: 1; }
.nav-desktop a {
    color: var(--text-secondary); padding: 8px 16px; border-radius: var(--radius-sm);
    font-weight: 500; font-size: 15px; transition: all .2s;
}
.nav-desktop a:hover, .nav-desktop a.active {
    color: var(--gold); background: rgba(212,165,55,0.08);
}
.header-actions { display: flex; gap: 12px; }

/* HAMBURGER */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; position: relative; z-index: 1001;
}
.hamburger span {
    display: block; width: 24px; height: 2px; background: var(--gold);
    position: absolute; left: 6px; transition: all .3s;
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.nav-mobile {
    display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--bg-secondary); overflow-y: auto; padding: 24px; z-index: 10000;
    flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    display: block; padding: 14px 20px; color: var(--text-primary); font-size: 16px;
    font-weight: 500; border-radius: var(--radius-sm); transition: background .2s;
}
.nav-mobile a:hover, .nav-mobile a.active { background: rgba(212,165,55,0.1); color: var(--gold); }
.mobile-articles { border-top: 1px solid var(--border); margin-top: 12px; padding-top: 12px; }
.mobile-section-title { display: block; color: var(--text-muted); font-size: 13px; padding: 8px 20px; text-transform: uppercase; letter-spacing: 1px; }
.mobile-articles a { font-size: 14px; padding: 10px 20px; }
.btn-mobile-cta { display: block; text-align: center; margin-top: 16px; }

/* BUTTONS */
.btn-cta {
    display: inline-block; padding: 12px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0e17; font-weight: 700; font-size: 15px; border-radius: var(--radius-sm);
    border: none; cursor: pointer; transition: all .3s; text-align: center;
    box-shadow: 0 4px 16px rgba(212,165,55,0.3);
}
.btn-cta:hover {
    transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,165,55,0.4);
    color: #0a0e17;
}
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-outline {
    display: inline-block; padding: 12px 32px; border: 2px solid var(--gold);
    color: var(--gold); font-weight: 600; border-radius: var(--radius-sm);
    transition: all .3s; text-align: center;
}
.btn-outline:hover { background: var(--gold); color: #0a0e17; }

/* HERO */
.hero {
    position: relative; min-height: 600px; display: flex; align-items: center;
    margin-top: var(--header-h); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    filter: brightness(0.35);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,14,23,0.9) 0%, rgba(10,14,23,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 60px 20px; max-width: var(--container); margin: 0 auto; width: 100%; }
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--gold); }
.hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; max-width: 700px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* CONTENT SECTIONS */
main { margin-top: var(--header-h); }
.content-section { padding: 60px 0; }
.content-section:nth-child(even) { background: var(--bg-secondary); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.section-header h2 .highlight { color: var(--gold); }
.section-header p { color: var(--text-secondary); font-size: 17px; max-width: 700px; margin: 0 auto; }

h1, h2, h3, h4 { line-height: 1.4; }
h2 { font-size: 28px; font-weight: 700; margin: 40px 0 16px; }
h3 { font-size: 22px; font-weight: 600; margin: 32px 0 12px; color: var(--gold); }
h4 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; }

.article-content { max-width: 900px; margin: 0 auto; }
.article-content p { margin-bottom: 16px; color: var(--text-secondary); font-size: 16px; }
.article-content strong { color: var(--text-primary); }
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 28px; }
.article-content li { margin-bottom: 8px; color: var(--text-secondary); }

.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; color: var(--text-muted); font-size: 14px; }
.article-meta span { display: flex; align-items: center; gap: 6px; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: all .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 { margin-top: 0; font-size: 18px; }
.card-body p { color: var(--text-secondary); font-size: 15px; margin-bottom: 16px; }
.card-date { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.feature-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px 24px; text-align: center; transition: all .3s;
}
.feature-item:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.feature-icon { font-size: 48px; margin-bottom: 16px; }
.feature-item h3 { margin-top: 0; font-size: 18px; color: var(--text-primary); }
.feature-item p { color: var(--text-secondary); font-size: 15px; }

/* REVIEWS */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; transition: all .3s;
}
.review-card:hover { border-color: var(--gold); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #0a0e17; font-size: 20px;
}
.review-name { font-weight: 600; font-size: 16px; }
.review-date { color: var(--text-muted); font-size: 13px; }
.stars { display: flex; gap: 2px; margin-bottom: 12px; }
.star { font-size: 20px; color: var(--text-muted); }
.star.filled { color: var(--gold); }
.review-text { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* PROMO CARDS */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.promo-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: all .3s; position: relative;
}
.promo-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.promo-badge {
    position: absolute; top: 16px; right: 16px; background: var(--gold);
    color: #0a0e17; font-weight: 700; font-size: 13px; padding: 4px 12px;
    border-radius: 20px; z-index: 2;
}
.promo-card-img { height: 200px; overflow: hidden; }
.promo-card-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-card-body { padding: 24px; }
.promo-card-body h3 { margin-top: 0; }

/* BANNER SECTION */
.banner-section { padding: 40px 0; }
.banner-img {
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.banner-img img { width: 100%; display: block; }

/* FORM */
.form-section { max-width: 600px; margin: 0 auto; padding: 48px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; color: var(--text-primary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text-primary); font-family: 'Prompt', sans-serif;
    font-size: 15px; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); outline: none;
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; margin-top: var(--header-h); }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: 14px; }
.breadcrumb-list li + li::before { content: '›'; color: var(--text-muted); margin-right: 8px; }
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list .current { color: var(--gold); }

/* TABLE */
.info-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.info-table th, .info-table td { padding: 14px 18px; border: 1px solid var(--border); text-align: left; }
.info-table th { background: var(--bg-card); color: var(--gold); font-weight: 600; }
.info-table td { color: var(--text-secondary); }
.info-table tr:hover td { background: rgba(212,165,55,0.04); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q {
    padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; background: var(--bg-card); transition: background .2s;
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-q::after { content: '+'; font-size: 22px; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .3s; }
.faq-a p { padding: 16px 0; color: var(--text-secondary); }
.faq-item.open .faq-a { max-height: 500px; }

/* CTA STRIP */
.cta-strip {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 48px 20px; text-align: center; border-radius: var(--radius);
    margin: 40px 0;
}
.cta-strip h2 { color: #0a0e17; margin-top: 0; font-size: 28px; }
.cta-strip p { color: rgba(10,14,23,0.7); font-size: 16px; margin-bottom: 24px; }
.cta-strip .btn-cta { background: #0a0e17; color: var(--gold); }
.cta-strip .btn-cta:hover { background: #1a2235; }

/* UTILITIES */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.highlight { color: var(--gold); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.img-rounded { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-desktop, .header-actions { display: none; }
    .hamburger { display: block; }
    .hero { min-height: 480px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
    .card-grid, .feature-grid, .review-grid, .promo-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .form-section { padding: 24px; margin: 0 12px; }
    h2 { font-size: 24px; }
    h3 { font-size: 19px; }
    .section-header h2 { font-size: 26px; }
    .cta-strip { padding: 32px 16px; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .hero-btns { flex-direction: column; }
    .btn-cta { width: 100%; }
}

/* FOOTER */
.site-footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h3 { font-size: 17px; color: var(--gold); margin-bottom: 16px; margin-top: 0; }
.footer-col p { color: var(--text-secondary); font-size: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-secondary); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-cta { margin-top: 16px; }
.footer-bottom {
    border-top: 1px solid var(--border); padding: 24px 0; margin-top: 40px;
    text-align: center; color: var(--text-muted); font-size: 14px;
}

@media (max-width: 992px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } }
