/* ============================================
   VOX CASINO 777 - PREMIUM DESIGN 2026
   Оранжевая тема / Полный редизайн
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #0b0b0f;
    color: #ededed;
    line-height: 1.55;
}

/* Шрифты */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

/* Цветовая система */
:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fdba74;
    --primary-glow: rgba(249, 115, 22, 0.2);
    --dark-bg: #0b0b0f;
    --card-bg: #13131a;
    --card-border: #1f1f2a;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --success: #22c55e;
    --gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-dark: linear-gradient(135deg, #13131a 0%, #0b0b0f 100%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
header {
    background: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    height: 52px;
    width: auto;
    transition: 0.2s;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--card-border);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
}

.btn-register {
    background: var(--gradient);
    color: white;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    background: var(--primary-dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient);
    color: white;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 42px;
    font-size: 1.15rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(249, 115, 22, 0.12), transparent);
    padding: 70px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-badge {
    background: rgba(249, 115, 22, 0.15);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 25px;
    color: var(--primary-light);
    border: 1px solid rgba(249, 115, 22, 0.3);
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #fdba74 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 20px;
}

/* BONUS CARD */
.bonus-box {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 32px;
    margin: 40px auto;
    max-width: 550px;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.bonus-box p {
    margin-bottom: 24px;
    color: var(--text-muted);
}

/* SECTION TITLES */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 60px 0 30px;
    position: relative;
    padding-left: 24px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--gradient);
    border-radius: 4px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 24px;
    width: 60px;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
}

/* GAME GRID */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.25s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px -10px rgba(249,115,22,0.2);
}

.game-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 14px;
    margin-bottom: 12px;
    background: #1a1a24;
    padding: 8px;
}

.game-card span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.game-card small {
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* TABLES */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

th {
    background: linear-gradient(135deg, rgba(249,115,22,0.15), transparent);
    font-weight: 600;
    color: var(--primary-light);
    font-size: 0.9rem;
}

td {
    color: var(--text-muted);
}

/* FEATURE LISTS */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.feature-list div {
    background: rgba(249,115,22,0.08);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    border: 1px solid rgba(249,115,22,0.2);
}

/* FAQ */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    margin: 16px 0;
    padding: 20px 24px;
    border-radius: 20px;
    transition: 0.2s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

/* QUOTE */
.quote {
    background: linear-gradient(135deg, rgba(249,115,22,0.08), transparent);
    padding: 28px 32px;
    border-radius: 24px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
    font-style: normal;
}

.quote p {
    font-size: 1rem;
    color: var(--text-muted);
}

.quote strong {
    color: var(--primary-light);
    margin-top: 12px;
    display: block;
}

/* FOOTER */
footer {
    background: #060608;
    padding: 48px 0 32px;
    margin-top: 70px;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.footer-logos img {
    height: 36px;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 45px 0;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .bonus-amount {
        font-size: 2.2rem;
    }
    .header-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        gap: 16px;
    }
    .header-buttons {
        order: 2;
    }
    .logo {
        order: 1;
    }
    .btn-login, .btn-register {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }
    th, td {
        padding: 12px;
        font-size: 0.85rem;
    }
    .btn {
        padding: 12px 24px;
    }
    .section-title {
        font-size: 1.5rem;
        margin: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        gap: 8px;
    }
    .btn-login {
        padding: 5px 12px;
    }
    .btn-register {
        padding: 5px 14px;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .bonus-box, .section-title {
    animation: fadeInUp 0.5s ease-out;
}