@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1a;
    --black-border: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #f0c850;
    --gold-dark: #b8941f;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --text-white: #f5f5f5;
    --text-gray: #a0a0a0;
    --text-dim: #707070;
    --gradient-gold: linear-gradient(135deg, #f0c850, #d4af37, #b8941f);
    --gradient-dark: linear-gradient(180deg, #0a0a0a, #141414);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', sans-serif;
    background: var(--black);
    color: var(--text-white);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--black-light);
    border-bottom: 1px solid var(--black-border);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-gray);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-links a {
    color: var(--text-gray);
    font-size: 13px;
    transition: color 0.3s;
}

.top-bar-links a:hover {
    color: var(--gold);
}

/* Header */
.header {
    background: var(--black);
    border-bottom: 2px solid var(--gold-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: none;
}

.logo span {
    font-size: 14px;
    display: block;
    background: none;
    -webkit-text-fill-color: var(--text-gray);
    letter-spacing: 1px;
    font-weight: 400;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav a {
    color: var(--text-white);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 60%;
}

.nav-cta {
    background: var(--gradient-gold) !important;
    color: var(--black) !important;
    -webkit-text-fill-color: initial;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--gold-glow);
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
}

/* Hero Banner Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    aspect-ratio: 4/3;
    max-height: 650px;
}

.hero-slider .slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.hero-slider .slide {
    min-width: 100%;
    position: relative;
}

.hero-slider .slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-slider .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.hero-slider .slide-text h2 {
    font-size: 28px;
    color: var(--gold);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-nav button.active {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,10,0.6);
    border: 1px solid var(--gold-dark);
    color: var(--gold);
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--black);
}

.slider-arrow.prev { left: 15px; }
.slider-arrow.next { right: 15px; }

/* CTA Buttons */
.btn-gold {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow);
    color: var(--black);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 70px 0;
}

.section:nth-child(even) {
    background: var(--black-light);
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-content {
    font-size: 16px;
    line-height: 2;
    color: var(--text-gray);
}

.section-content p {
    margin-bottom: 20px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 35px 28px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-dark);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--black-light), var(--black));
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
    padding: 35px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
}

.stat-item p {
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 5px;
}

/* Promo Section */
.promo-daily {
    background: var(--black-card);
    border: 2px solid var(--gold-dark);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-daily::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212,175,55,0.05), transparent 30%);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.promo-daily-content {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.promo-daily h3 {
    font-size: 26px;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.promo-daily p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Promo Cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.promo-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.promo-card-body {
    padding: 25px;
}

.promo-card h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.promo-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Review Section */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--gold-dark);
}

.review-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.review-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--text-white);
    font-size: 14px;
}

.review-date {
    color: var(--text-dim);
    font-size: 12px;
    margin-top: 4px;
}

.aggregate-rating {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--black-card);
    border: 1px solid var(--gold-dark);
    border-radius: 16px;
}

.aggregate-rating .big-stars {
    font-size: 36px;
    color: var(--gold);
    letter-spacing: 8px;
}

.aggregate-rating .rating-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin: 10px 0;
}

.aggregate-rating .rating-count {
    color: var(--text-gray);
    font-size: 14px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--gold-dark);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-white);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question .icon {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--black-light);
    border-top: 2px solid var(--gold-dark);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 2;
    display: block;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--black-border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
}

/* Keyword Bold */
.kw {
    color: var(--text-white);
    font-weight: 600;
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-col-text {
    color: var(--text-gray);
    line-height: 2;
}

.two-col-text h2 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.two-col img {
    border-radius: 16px;
    border: 1px solid var(--black-border);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(184,148,31,0.08));
    border: 1px solid var(--gold-dark);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-banner h2 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.cta-banner p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-dim);
}

.breadcrumb a {
    color: var(--text-gray);
}

.breadcrumb span {
    margin: 0 8px;
}

/* Table of content-like links */
.content-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.content-links a {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-gray);
    transition: all 0.3s;
}

.content-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid var(--gold-dark);
        z-index: 999;
        gap: 5px;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero-slider {
        aspect-ratio: 1/1;
    }

    .section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .promo-daily {
        padding: 25px 20px;
    }

    .cta-banner {
        padding: 30px 20px;
    }

    .aggregate-rating .rating-number {
        font-size: 36px;
    }

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stat-item h3 {
        font-size: 26px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .logo {
        font-size: 26px;
    }
    .hero-slider .slide-text h2 {
        font-size: 20px;
    }
}
