/* --- ЗМІННІ ТА ОСНОВИ (CHICKEN ROAD STYLE) --- */
:root {
    --bg-dark: #0b0e14;       /* Глибокий темний фон */
    --bg-header: #05070a;     /* Майже чорний для шапки */
    --accent-yellow: #f4d03f; /* Колір курчати/золота */
    --accent-green: #2ecc71;  /* Колір успішного ходу */
    --text-white: #ffffff;
    --text-gray: #bdc3c7;     /* Світло-сірий для читабельності */
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- HEADER --- */
.header {
    background-color: var(--bg-header);
    padding: 12px 0;
    border-bottom: 2px solid var(--accent-yellow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-list a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--accent-yellow);
}

.auth-group {
    display: flex;
    gap: 8px;
}

/* --- КНОПКИ --- */
.btn {
    border: none;
    padding: 10px 18px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: #000;
}

.btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
}

.btn-outline:hover {
    background: var(--accent-yellow);
    color: #000;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 8px;
}

/* --- HERO BANNER --- */
.hero-wrapper {
    margin-top: 15px;
    text-align: center;
}

.banner-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    line-height: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-content-below {
    padding: 30px 0;
}

.promo-text {
    color: var(--accent-green);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.bonus-amount {
    font-size: clamp(28px, 8vw, 58px);
    font-weight: 900;
    margin: 10px 0 20px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* --- КОНТЕНТ (БЕЗ БЛОКІВ) --- */
.content-block {
    margin: 30px 0;
}

.content-block h1 {
    font-size: clamp(26px, 6vw, 42px);
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.content-block h2 {
    font-size: clamp(20px, 5vw, 28px);
    margin: 35px 0 15px;
    border-left: 4px solid var(--accent-green);
    padding-left: 15px;
    color: #fff;
}

.content-block p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 18px;
    text-align: justify;
}

.content-block ul, .content-block ol {
    margin: 15px 0 20px 25px;
    color: var(--text-gray);
}

.content-block li {
    margin-bottom: 8px;
}

/* --- ТАБЛИЦІ --- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    border: 1px solid #1c222b;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #12161f;
    min-width: 500px;
}

th, td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #1c222b;
}

th {
    background-color: #1a202a;
    color: var(--accent-yellow);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

td {
    color: var(--text-gray);
    font-size: 15px;
}

/* Технічна таблиця */
.info-table table td:first-child {
    font-weight: 700;
    color: var(--text-white);
}

/* --- FAQ --- */
.faq-item {
    background-color: #0f131a;
    padding: 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #1c222b;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-yellow);
}

.faq-item h4 {
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--bg-header);
    padding: 40px 0;
    margin-top: auto;
    border-top: 1px solid #222;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

/* --- МЕДІА-ЗАПИТИ --- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-list {
        gap: 15px;
        order: 3;
    }

    .auth-group {
        order: 2;
    }

    .logo-img {
        height: 30px;
    }

    .btn-lg {
        width: 100%;
        padding: 15px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}