/* ===== COCOA CASINO — MAIN STYLES ===== */

/* --- RESET & BASE --- */
:root {
    --primary-bg: #1a120e;
    --secondary-bg: #0a0a0a;
    --card-bg: #2a1e16;
    --card-bg-alt: #332518;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(196, 149, 106, 0.25);
    --accent: #c4956a;
    --accent-hover: #b38459;
    --accent-dark: #9a7048;
    --green: #22a36a;
    --green-hover: #1b8a58;
    --blue-accent: #c4956a;
    --text-white: #ffffff;
    --text-light: #e8ddd4;
    --text-muted: #a89585;
    --text-dark: #7a6a5c;
    --gradient-hero: linear-gradient(135deg, #1a120e 0%, #3a2518 50%, #1a120e 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

[hidden] {
    display: none !important;
}

/* --- LAYOUT --- */
#css {
    width: 100%;
    min-height: 100vh;
}

.mainContent-cocoacasino-qa7 {
    width: 100%;
}

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

/* --- HEADER --- */
.header {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(196, 149, 106, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.headerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.header .logo a {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 40px;
    width: auto;
}

/* Desktop Menu */
.desktop-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-item a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.menu-item a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
}

/* Header Buttons */
.buttons-class-5r90-cocoacasino-ff {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-signup-main {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-signup-main:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-login-main {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent);
    color: #000;
    border: 2px solid var(--accent);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-login-main:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    color: #000;
}

/* Burger */
.burger {
    display: none;
    padding: 5px;
    cursor: pointer;
}

.burger img {
    width: 28px;
    height: 28px;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    cursor: default;
}

/* Mobile Menu */
.mobileMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--secondary-bg);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.mobileMenuTop-cocoacasino-qa7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobileMenuTop-cocoacasino-qa7 .logo img {
    height: 36px;
    width: auto;
}

.mobileMenuTop-cocoacasino-qa7 .close {
    padding: 5px;
}

.mobileMenuTop-cocoacasino-qa7 .close img {
    width: 28px;
    height: 28px;
}

.mobileMenuLinks-cocoacasino-qa7 {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.mobileMenuLinks-cocoacasino-qa7 a {
    display: block;
    padding: 14px 24px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s;
}

.mobileMenuLinks-cocoacasino-qa7 a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent);
}

/* --- HERO BANNER --- */
.hero-banner {
    background: var(--gradient-hero);
    padding: 60px 20px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-banner__left {
    flex: 1;
    max-width: 600px;
}

.hero-banner__right {
    flex: 0 0 auto;
    max-width: 400px;
}

.hero-banner__right img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.page-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-banner__descr {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* --- PROMO CTA --- */
.container-class-5r90-cocoacasino-ff.promo-cta {
    max-width: 700px;
    margin: -30px auto 40px;
    padding: 24px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.pulse-button-class-5r90-cocoacasino-ff {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent);
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.pulse-button-class-5r90-cocoacasino-ff:hover {
    background: var(--accent-hover);
    transform: scale(1.03);
    color: #000;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(226, 185, 61, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(226, 185, 61, 0); }
}

.promo-cta__code-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-side__promocode-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 185, 61, 0.1);
    border: 1px dashed var(--accent);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
}

.promo-cta__label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.promo-cta__code {
    color: var(--accent);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 1px;
}

.content-side__promocode-button {
    display: inline-block;
    padding: 8px 18px;
    background: var(--green);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.content-side__promocode-button:hover {
    background: var(--green-hover);
    color: var(--text-white);
}

/* --- MAIN CONTENT --- */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

.content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 45px 0 18px;
    line-height: 1.3;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 30px 0 12px;
}

.content p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.content ul,
.content ol {
    margin: 10px 0 20px 28px;
    color: var(--text-muted);
}

.content ul li,
.content ol li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.content ul ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.content strong {
    color: var(--text-light);
}

.content em {
    color: var(--text-muted);
    font-style: italic;
}

.general-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 20px 0 25px;
    border: 1px solid var(--border-color);
}

.casinos-similares-a-cocoacasino {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 30px 0 18px;
}

/* --- TABLE OF CONTENTS --- */
.table-of-contents-class-5r90-cocoacasino-ff {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 35px;
    overflow: hidden;
}

.table-of-contents-class-5r90-cocoacasino-ff .toggle {
    display: none;
}

.lbl-toggle {
    display: block;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: background 0.2s;
}

.lbl-toggle::after {
    content: "▼";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.lbl-toggle:hover {
    background: rgba(255, 255, 255, 0.03);
}

.toggle:checked ~ .lbl-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.table-box-class-5r90-cocoacasino-ff {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.toggle:checked ~ .table-box-class-5r90-cocoacasino-ff {
    max-height: 600px;
    padding: 0 24px 20px;
}

.table_link {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s;
}

.table_link:last-child {
    border-bottom: none;
}

.table_link:hover {
    color: var(--accent);
}

/* --- STYLED TABLE --- */
.styled-table-div-class-5r90-cocoacasino-ff {
    overflow-x: auto;
    margin: 16px 0 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.styled-table thead td {
    background: var(--card-bg);
    padding: 14px 18px;
    font-weight: 600;
    color: var(--text-white);
    border-bottom: 2px solid var(--border-light);
}

.styled-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.styled-table tbody tr:last-child td {
    border-bottom: none;
}

.styled-table tbody tr:hover td {
    background: rgba(226, 185, 61, 0.04);
}

/* --- TG BLOCK / CTA BANNER --- */
.tg-block-class-ff-cocoacasino-5r90 {
    margin: 35px 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, #3a2518 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tg-block-class-ff-cocoacasino-5r90_wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px;
}

.tg-block-class-ff-cocoacasino-5r90_image {
    flex-shrink: 0;
}

.tg-block-class-ff-cocoacasino-5r90_image img {
    width: 80px;
    height: auto;
    border-radius: var(--radius-sm);
}

.tg-block-class-ff-cocoacasino-5r90_text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.tg-block-class-ff-cocoacasino-5r90_text .text-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.btn-apk-class-5r90-cocoacasino-ff {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-apk-class-5r90-cocoacasino-ff:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    color: #000;
}

/* --- PAYMENT CARDS --- */
.payments-class-class-5r90-cocoacasino-ff {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin: 20px 0 30px;
}

.payment-card-class-ff-cocoacasino-5r90 {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: all 0.2s;
}

.payment-card-class-ff-cocoacasino-5r90:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.payment-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

.payment-info-class-ff-cocoacasino-5r90 {
    flex: 1;
    min-width: 0;
}

.payment-name-class-ff-cocoacasino-5r90 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
}

.payment-casinos-class-ff-cocoacasino-5r90 {
    font-size: 0.8rem;
    color: var(--text-dark);
}

.payment-button-class-ff-cocoacasino-5r90 {
    display: inline-block;
    padding: 8px 18px;
    background: var(--green);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.payment-button-class-ff-cocoacasino-5r90:hover {
    background: var(--green-hover);
    color: var(--text-white);
}

/* --- CASINO / LICENSE CARDS --- */
.casino-card-class-5r90-cocoacasino-ff {
    margin: 30px 0;
}

.casino-card-class-5r90-cocoacasino-ff h2 {
    margin-bottom: 20px;
}

.card-class-5r90-cocoacasino-ff {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.card-class-ff-cocoacasino-5r90 {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.25s;
}

.card-class-ff-cocoacasino-5r90:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card-new-class-img-cocoacasino-qa7 {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-new-class-logo-cocoacasino-qa7 {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.card-new-class-card-cocoacasino-qa7 {
    flex: 1;
}

.card-new-class-name-cocoacasino-qa7 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.card-new-class-score-cocoacasino-qa7 {
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.card-new-class-open-cocoacasino-qa7 {
    display: inline-block;
    padding: 10px 22px;
    background: var(--green);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.card-new-class-open-cocoacasino-qa7:hover {
    background: var(--green-hover);
    color: var(--text-white);
}

/* --- FAQ ACCORDION --- */
.faq-wrapper-class-ff-cocoacasino-5r90 {
    margin: 20px 0 40px;
}

.faq-item-class-ff-cocoacasino-5r90 {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item-class-ff-cocoacasino-5r90:hover {
    border-color: var(--border-light);
}

.faq-item-class-ff-cocoacasino-5r90__head {
    padding: 18px 50px 18px 22px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.faq-item-class-ff-cocoacasino-5r90__head::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease, content 0.3s ease;
}

.faq-item-class-ff-cocoacasino-5r90.active .faq-item-class-ff-cocoacasino-5r90__head::after {
    content: "−";
}

.faq-item-class-ff-cocoacasino-5r90__head h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.faq-item-class-ff-cocoacasino-5r90__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item-class-ff-cocoacasino-5r90__text {
    padding: 0 22px 18px;
}

.faq-item-class-ff-cocoacasino-5r90__text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item-class-ff-cocoacasino-5r90__body {
  display: none;
}

.faq-item-class-ff-cocoacasino-5r90.active .faq-item-class-ff-cocoacasino-5r90__body {
  display: block;
}


/* --- EXPERT OPINION --- */
.expert-opinion-class-ff-cocoacasino-5r90 {
    margin: 40px 0;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.expert-opinion-class-ff-cocoacasino-5r90 h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.expert-content-class-cocoacasino-qa7 {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.expert-info-class-cocoacasino-qa7 {
    flex-shrink: 0;
    text-align: center;
    min-width: 120px;
}

.expert-photo-class-ff-cocoacasino-5r90 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 2px solid var(--accent);
}

.expert-photo-class-ff-cocoacasino-5r90 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.expert-position {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

.expert-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* --- FOOTER BLOCK BUTTONS --- */
.footer-block-btn-class-cocoacasino-qa7 {
    background: linear-gradient(135deg, #1a120e 0%, #0a0a0a 100%);
    padding: 40px 20px;
    text-align: center;
}

.footer-block-btn-class-cocoacasino-qa7 .buttons-class-5r90-cocoacasino-ff {
    justify-content: center;
}

/* --- FOOTER --- */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(196, 149, 106, 0.15);
    padding: 40px 20px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.footer-desc {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-responsible {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.footer-responsible .footer-col-title {
    margin-bottom: 16px;
}

.footer-responsible-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-responsible-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.7;
}

.footer-responsible-logos a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-responsible-logos img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-bottom-line {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    text-align: center;
}

.footer-bottom-line p {
    color: var(--text-dark);
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }
}

/* Space Mobile Menu (footer slide-out) */
.space-mobile-menu {
    display: none;
}

.space-mobile-menu.fixed {
    display: none;
}

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

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.space-mobile-menu-block {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

.space-mobile-menu-block-ins {
    width: 280px;
    height: 100vh;
    background: #0a0a0a;
    padding: 20px 0;
    overflow-y: auto;
}

.space-mobile-menu-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border-color);
}

.space-mobile-menu-header img {
    height: 40px;
    width: auto;
    display: inline-block;
}

.space-mobile-menu-list {
    padding: 10px 0;
}

.mobile-menu {
    list-style: none;
}

.mobile-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.mobile-menu li a:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.03);
}

.space-mobile-menu-copy {
    padding: 20px;
    color: var(--text-dark);
    font-size: 0.8rem;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

.space-close-icon {
    top: 20px;
    right: 16px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.space-close-icon .to-right,
.space-close-icon .to-left {
    width: 24px;
    height: 2px;
    background: var(--text-muted);
    top: 50%;
    left: 50%;
}

.space-close-icon .to-right {
    transform: translate(-50%, -50%) rotate(45deg);
}

.space-close-icon .to-left {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* --- COOKIE BANNER --- */
#cookie-banner-new-old-34-83-28-1132 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(196, 149, 106, 0.2);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-icon-new-old-34-83-28-1132 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.banner-text .short-text {
    display: none;
}

#accept-cookies {
    padding: 10px 24px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

#accept-cookies:hover {
    background: var(--accent-hover);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px 50px;
    }

    .hero-banner__left {
        max-width: 100%;
    }

    .hero-banner__right {
        max-width: 300px;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .buttons-class-5r90-cocoacasino-ff {
        display: none;
    }

    .burger {
        display: block;
    }

    .header .buttons-class-5r90-cocoacasino-ff {
        display: none;
    }

    .footer-block-btn-class-cocoacasino-qa7 .buttons-class-5r90-cocoacasino-ff {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-title {
        font-size: 1.7rem;
    }

    .hero-banner__descr {
        font-size: 0.95rem;
    }

    .container-class-5r90-cocoacasino-ff.promo-cta {
        flex-direction: column;
        margin: -20px 20px 30px;
        padding: 20px;
    }

    .promo-cta__code-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .content-side__promocode-copy {
        justify-content: center;
    }

    .content-side__promocode-button {
        text-align: center;
    }

    .content h2 {
        font-size: 1.35rem;
    }

    .content h3 {
        font-size: 1.1rem;
    }

    .tg-block-class-ff-cocoacasino-5r90_wrapper {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .tg-block-class-ff-cocoacasino-5r90_text {
        justify-content: center;
    }

    .payments-class-class-5r90-cocoacasino-ff {
        grid-template-columns: 1fr;
    }

    .expert-content-class-cocoacasino-qa7 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-text .full-text {
        display: none;
    }

    .banner-text .short-text {
        display: inline;
    }

    #cookie-banner-new-old-34-83-28-1132 {
        padding: 12px 16px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.4rem;
    }

    .card-class-5r90-cocoacasino-ff {
        grid-template-columns: 1fr;
    }

    .styled-table {
        font-size: 0.85rem;
    }

    .styled-table thead td,
    .styled-table tbody td {
        padding: 10px 12px;
    }
}


/* ============================================================
   SUBPAGE STYLES (en-gb/*, pages/*)
   Kept from original for backward compatibility
   ============================================================ */

/* --- SUBPAGE HEADER --- */
.site-header {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(196, 149, 106, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.site-header .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-header .logo span { color: var(--accent); }

/* Subpage Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: var(--accent);
}

/* Subpage Burger */
.site-header .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.site-header .burger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* --- SUBPAGE HERO --- */
.hero {
    background: linear-gradient(135deg, #1a120e 0%, #3a2518 50%, #1a120e 100%);
    padding: 80px 20px;
    text-align: center;
}
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 30px; }

/* Subpage Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(196, 149, 106, 0.3); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* --- SUBPAGE CARDS --- */
.section { padding: 60px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}
.section-title span { color: var(--accent); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
}
.card:hover { border-color: var(--accent); transform: translateY(-4px); }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-muted); line-height: 1.6; }

/* --- SUBPAGE FEATURES --- */
.features-list { list-style: none; }
.features-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}
.features-list li::before { content: "✅"; font-size: 1.2rem; }

/* --- SUBPAGE TABLE --- */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.info-table th, .info-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-table th { background: var(--card-bg); color: var(--accent); font-weight: 600; }
.info-table tr:hover td { background: rgba(196, 149, 106, 0.08); }

/* --- SUBPAGE FORM --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.95rem; }
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--primary-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: #7c3aed; }

/* --- SUBPAGE FOOTER --- */
.site-footer {
    background: var(--card-bg);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 20px;
    margin-top: auto;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--accent); }
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 0;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- SUBPAGE PAGE CONTENT --- */
.page-hero {
    background: linear-gradient(135deg, #1a1932 0%, #2d1b69 100%);
    padding: 50px 20px;
    text-align: center;
}
.page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; }

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    line-height: 1.8;
}
.page-content h2 { font-size: 1.5rem; font-weight: 700; margin: 30px 0 14px; color: var(--accent); }
.page-content p { margin-bottom: 16px; color: var(--text-muted); }
.page-content ul { margin: 10px 0 20px 24px; color: var(--text-muted); }
.page-content ul li { margin-bottom: 8px; }

/* --- SUBPAGE RESPONSIVE --- */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: #1a1932;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .main-nav.open { display: flex; }
    .site-header .burger { display: flex; }
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 1.8rem; }
}