/* --- PREMIUM MINIMAL LUXURY (TERRACOTTA & GOLD) VARIABLE SYSTEM --- */
:root {
    --bg-main: #0F0D0C;
    --bg-card: #1A1613;
    --bg-accent: #26201B;
    --primary-gold: #D4AF37;
    --light-gold: #F3E5AB;
    --dark-gold: #AA7C11;
    --terracotta: #C85A32;
    --terracotta-hover: #E26A3F;
    --text-bright: #F5EFEB;
    --text-muted: #A69990;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-glow: rgba(200, 90, 50, 0.25);
    --font-heading: 'Cinzel', 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-muted);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-accent);
    border: 2px solid var(--bg-main);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* --- SELECTION --- */
::selection {
    background: var(--terracotta);
    color: var(--text-bright);
}

/* --- LAYOUT & UTILITIES --- */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-bright);
    font-weight: 700;
    letter-spacing: 0.03em;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 400;
}

strong {
    color: var(--light-gold);
    font-weight: 600;
}

/* --- HEADER / NAVIGATION --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 13, 12, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo-container {
    width: 240px;
    height: 50px;
}

.nav-cta {
    display: inline-block;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--primary-gold);
    color: var(--bg-main);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    background: radial-gradient(circle at 70% 30%, var(--bg-accent) 0%, var(--bg-main) 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-bright) 30%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--border-glow);
    transition: var(--transition-smooth);
}

.hero-image-wrap:hover {
    transform: translateY(-5px);
    border-color: var(--terracotta);
}

.hero-image-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-image-wrap figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 22, 19, 0.9);
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-bright);
    border-top: 1px solid var(--border-color);
}

/* --- DATA TABLE SECTION --- */
.table-section {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.table-section h2 {
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.table-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--terracotta);
    margin: 12px auto 0;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
    background: var(--bg-main);
}

th, td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--bg-accent);
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(38, 32, 27, 0.4);
    color: var(--text-bright);
}

/* --- TWO COLUMN CONTENT SECTION --- */
.content-section {
    padding: 80px 0;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.grid-2col.reverse {
    direction: rtl;
}

.grid-2col.reverse .text-block {
    direction: ltr;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    position: relative;
}

/* --- LISTS CONFIGURATIONS --- */
ol, ul {
    list-style: none;
    margin-bottom: 24px;
}

ol {
    counter-reset: li-counter;
}

ol li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

ol li::before {
    content: counter(li-counter);
    counter-increment: li-counter;
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: var(--terracotta);
    color: var(--text-bright);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 0.9rem;
    font-weight: 700;
}

ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

ul li::before {
    content: '✦';
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--primary-gold);
    font-size: 1rem;
}

/* --- BONUS BLOCKS SPECIAL STYLE --- */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition-smooth);
}

.bonus-card:hover {
    border-color: var(--terracotta);
    box-shadow: 0 10px 25px rgba(200, 90, 50, 0.1);
}

.bonus-card h3 {
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-size: 1.4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* --- PROS AND CONS BLOCKS --- */
.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
}

.panel-card {
    padding: 32px;
    border-radius: 8px;
    background: var(--bg-card);
    border-top: 3px solid var(--border-color);
}

.panel-card.pros {
    border-top-color: #2e7d32;
}

.panel-card.cons {
    border-top-color: var(--terracotta);
}

.panel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.panel-card.pros ul li::before {
    color: #4caf50;
    content: '✓';
}

.panel-card.cons ul li::before {
    color: var(--terracotta);
    content: '✕';
}

/* --- RESPONSIBLE GAMBLING BLOCK --- */
.responsible-block {
    background: linear-gradient(135deg, #1A1311 0%, #2B1610 100%);
    border: 1px solid var(--terracotta);
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

.responsible-block h2 {
    color: var(--terracotta);
    margin-bottom: 20px;
}

.responsible-badge {
    display: inline-block;
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    padding: 4px 12px;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    background: var(--bg-main);
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-bright);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-trigger::after {
    transform: rotate(45deg);
    color: var(--terracotta);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-content {
    padding: 8px 24px 24px;
    max-height: 300px;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-logo {
    width: 180px;
    height: 40px;
    margin: 0 auto 24px;
    opacity: 0.6;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 2.6rem; }
    .grid-2col { gap: 40px; }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image-wrap {
        max-width: 600px;
        margin: 0 auto;
    }
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-2col.reverse {
        direction: ltr;
    }
    .bonus-grid, .split-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2rem; }
    th, td { padding: 12px 14px; font-size: 0.9rem; }
    .responsible-block { padding: 24px; }
    ol li { padding-left: 36px; }
    ol li::before { width: 24px; height: 24px; line-height: 24px; }
}