/* Reset & Variables */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #f4d03f;
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-gray: #2a2a2a;
    --gray: #9ca3af;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-fluid { max-width: 100%; padding: 0 48px; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 12px 24px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gold);
    color: var(--black);
}

.header-actions {
    display: flex;
    gap: 12px;
}

.btn-login,
.btn-register {
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
}

.btn-login {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-login:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-register {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.5);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* Hero */
.hero {
    padding: 140px 0 100px;
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--white);
}

.gold-text {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 20px 48px;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.6);
}

.btn-hero-primary:hover .arrow {
    transform: translateX(5px);
}

.arrow {
    transition: var(--transition);
    font-size: 1.4rem;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-hero-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-trust {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
}

.trust-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Stats */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--black);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-tag.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.section-header.light h2 {
    color: var(--gold);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.85);
}

.white { color: var(--white); }

/* About */
.about-section {
    padding: 120px 0;
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    padding: 44px 36px;
    background: var(--black-gray);
    border-radius: 12px;
    border: 2px solid transparent;
    position: relative;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.3);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.1;
}

.about-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gold);
}

.about-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Games */
.games-section {
    padding: 120px 0;
    background: var(--black);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.game-item {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.game-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.3);
}

.game-icon-large {
    font-size: 5.5rem;
    margin-bottom: 28px;
}

.game-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gold);
}

.game-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.game-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.feature-item {
    text-align: center;
}

.feature-item strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--gray);
}

.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 8px;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
}

/* Bonuses */
.bonuses-section {
    padding: 120px 0;
    background: var(--black-light);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
}

.bonus-main {
    padding: 56px 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 20px;
    color: var(--black);
}

.bonus-label {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(10, 10, 10, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.bonus-value {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.bonus-main h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.bonus-main p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0.95;
}

.bonus-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 32px;
    background: rgba(10, 10, 10, 0.15);
    border-radius: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
}

.btn-bonus {
    width: 100%;
    padding: 22px;
    background: var(--black);
    color: var(--gold);
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 10px;
    text-align: center;
}

.btn-bonus:hover {
    background: var(--black-light);
    transform: translateY(-2px);
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bonus-small {
    padding: 28px;
    background: var(--black-gray);
    border-radius: 12px;
    display: flex;
    gap: 18px;
    transition: var(--transition);
}

.bonus-small:hover {
    background: var(--black);
    transform: translateX(10px);
}

.small-icon {
    font-size: 2.8rem;
}

.small-text h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--gold);
}

.small-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* FAQ */
.faq-section {
    padding: 120px 0;
    background: var(--black);
}

.faq-list {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    background: var(--black-light);
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden;
}

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

.faq-question {
    width: 100%;
    padding: 28px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    text-align: left;
}

.faq-toggle {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 32px 32px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* CTA */
.cta-section {
    padding: 120px 0;
    background: var(--black-light);
}

.cta-box {
    padding: 90px 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 24px;
    text-align: center;
    color: var(--black);
}

.cta-box h2 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 1.5rem;
    margin-bottom: 44px;
}

.btn-cta {
    padding: 24px 60px;
    background: var(--black);
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 12px;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--black-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    padding: 90px 0 36px;
    background: var(--black);
    border-top: 2px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 52px;
}

.footer-about p {
    color: var(--gray);
    line-height: 1.8;
    margin: 24px 0;
    font-size: 1.05rem;
}

.footer-license {
    padding: 14px 24px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    color: var(--gold);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: var(--gray);
    font-size: 1.05rem;
}

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

.footer-bottom {
    padding-top: 36px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 44px;
    right: 44px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-grid {
        grid-template-columns: 1fr;
    }
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 24px;
    }
    .nav,
    .header-actions {
        display: none;
    }
    .burger {
        display: flex;
    }
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
