/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0a14;
    color: #ececf0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

.highlight {
    color: #f0b90b;
}

/* ===== HEADER ===== */
.site-header {
    background: #12101f;
    padding: 16px 0;
    border-bottom: 2px solid #f0b90b40;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(4px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    color: #fff;
}

.logo-text .highlight {
    color: #f0b90b;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.main-nav a {
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    background: #f0b90b;
    color: #0b0a14;
    border-color: #f0b90b;
    box-shadow: 0 0 20px #f0b90b30;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #f0b90b;
    color: #0b0a14;
}

.btn-primary:hover {
    background: #d4a20a;
    transform: scale(1.03);
    box-shadow: 0 8px 25px #f0b90b50;
}

.btn-outline {
    background: transparent;
    border: 2px solid #f0b90b;
    color: #f0b90b;
}

.btn-outline:hover {
    background: #f0b90b;
    color: #0b0a14;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(145deg, #12101f 0%, #1a1730 100%);
    text-align: center;
    border-bottom: 4px solid #f0b90b;
}

.hero-badge {
    display: inline-block;
    background: #f0b90b20;
    color: #f0b90b;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    border: 1px solid #f0b90b40;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FEATURES ===== */
.features {
    padding: 50px 0;
    background: #0b0a14;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item {
    background: #12101f;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid #2a2642;
}

.feature-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 12px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #f0b90b;
}

/* ===== TOP GAMES ===== */
.top-games {
    padding: 50px 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.game-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.game-card {
    background: #12101f;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid #2a2642;
    transition: 0.3s;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: #f0b90b;
    box-shadow: 0 10px 30px #00000060;
}

.game-image {
    font-size: 3.6rem;
    padding: 20px 0;
    border-radius: 12px;
    margin-bottom: 10px;
}

.game-card h4 {
    color: #f0b90b;
}

/* ===== PAGE CONTENT (shared) ===== */
.page-content {
    padding: 50px 0 70px;
    min-height: 60vh;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 6px;
}

.page-subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ===== GAMES PAGE ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.game-full-card {
    background: #12101f;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #2a2642;
    transition: 0.3s;
}

.game-full-card:hover {
    border-color: #f0b90b;
    background: #1a1730;
}

.game-icon {
    font-size: 2.6rem;
    width: 60px;
    text-align: center;
}

.game-info h3 {
    color: #f0b90b;
}

/* ===== BONUSES ===== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: #12101f;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #2a2642;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.bonus-card.featured {
    border-color: #f0b90b;
    background: #1a1730;
}

.bonus-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f0b90b;
    color: #0b0a14;
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
}

.bonus-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #f0b90b;
    margin: 12px 0;
}

.bonus-card .btn {
    margin-top: 16px;
}

/* ===== RULES ===== */
.rule-item {
    background: #12101f;
    border-left: 6px solid #f0b90b;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.rule-item h2 {
    color: #f0b90b;
    font-size: 1.4rem;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: #12101f;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #2a2642;
}

.about-text p {
    margin-bottom: 16px;
}

.about-contact {
    background: #0b0a14;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #2a2642;
}

.about-contact h3 {
    color: #f0b90b;
    margin-bottom: 12px;
}

/* ===== RESPONSIBLE ===== */
.responsible-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.tip-card {
    background: #12101f;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #2a2642;
}

.tip-card h3 {
    color: #f0b90b;
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0b0a14;
    border-top: 2px solid #1a1730;
    padding: 30px 0;
    text-align: center;
    margin-top: 20px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #f0b90b;
}

.footer-disclaimer {
    color: #888;
    font-size: 0.9rem;
    margin: 8px 0;
}

.footer-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 12px 0;
}

.footer-nav a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #f0b90b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 16px;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .main-nav.open {
        display: block;
    }
    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    .page-title {
        font-size: 2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .game-full-card {
        flex-direction: column;
        text-align: center;
    }
    .bonus-card.featured {
        order: -1;
    }
}