/* ================================================ */
/* IMPORT EXTRA FONT WEIGHT                         */
/* ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ================================================ */
/* ROOT VARIABLES — Premium Gold Casino             */
/* ================================================ */
:root {
    --primary:        #e8a020;
    --primary-dark:   #c47a0a;
    --primary-light:  #ffd060;
    --primary-glow:   rgba(232, 160, 32, 0.18);

    --dark:           #080910;
    --surface:        #0f1018;
    --surface2:       #161824;
    --surface3:       #0b0c14;
    --surface-glass:  rgba(22, 24, 36, 0.7);

    --border:         #1e2138;
    --border-gold:    rgba(232, 160, 32, 0.25);
    --border-light:   rgba(232, 160, 32, 0.12);

    --light:          #f0f2fa;
    --text:           #b8c4de;
    --text-muted:     #606880;

    --accent:         #ffd060;
    --green:          #22d47e;
    --green-glow:     rgba(34, 212, 126, 0.15);

    --brand-line:     3px;

    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      20px;

    --shadow-gold:    0 0 28px rgba(232, 160, 32, 0.22);
    --shadow-dark:    0 8px 40px rgba(0, 0, 0, 0.7);
    --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.5);
}

/* ================================================ */
/* RESET & BASE                                     */
/* ================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6, a, button, input, textarea, select {
    font-family: 'Inter', sans-serif;
}

a { color: inherit; text-decoration: none; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232,160,32,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(90,60,180,0.04) 0%, transparent 60%);
    color: var(--text);
    line-height: 1.65;
    border-top: var(--brand-line) solid var(--primary);
    min-height: 100vh;
}

/* ================================================ */
/* KEYFRAMES                                        */
/* ================================================ */
@keyframes pulse-gold {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(232,160,32,0.5); }
    50%       { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 5px rgba(232,160,32,0); }
}

@keyframes shimmer {
    0%        { left: -70%; }
    60%, 100% { left: 130%; }
}

@keyframes float-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(232,160,32,0.25), 0 8px 32px rgba(0,0,0,0.6); }
    50%       { box-shadow: 0 0 40px rgba(232,160,32,0.4),  0 8px 32px rgba(0,0,0,0.6); }
}

@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin-badge {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ================================================ */
/* HEADER                                           */
/* ================================================ */
.header {
    background: rgba(8, 9, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 1px 0 rgba(232,160,32,0.08);
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 66px;
}

.logo {
    color: var(--primary);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 0 8px rgba(232,160,32,0.3));
    transition: filter 0.3s;
}

.logo:hover { filter: drop-shadow(0 0 14px rgba(232,160,32,0.55)); }

.main-nav { display: none; }

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-btn span {
    width: 28px;
    height: 2.5px;
    background: var(--text);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--primary); }
.burger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--primary); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 20, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-gold);
    height: 0;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    z-index: 998;
    box-shadow: 0 8px 30px rgba(0,0,0,0.8);
}

.mobile-menu.open { height: 360px; padding: 12px 24px; }

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.mobile-menu a:hover { color: var(--primary); padding-left: 6px; }
.mobile-menu a:hover::before { opacity: 1; }

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        gap: 0;
        margin-left: 28px;
    }
    .main-nav a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 0 16px;
        height: 66px;
        display: flex;
        align-items: center;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        border-right: 1px solid var(--border);
        transition: color 0.2s, background 0.2s;
        position: relative;
    }
    .main-nav a:first-child { border-left: 1px solid var(--border); }
    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        right: 50%;
        height: 2px;
        background: var(--primary);
        transition: left 0.25s, right 0.25s;
    }
    .main-nav a:hover { color: var(--primary); background: rgba(232,160,32,0.04); }
    .main-nav a:hover::after { left: 16px; right: 16px; }
    .burger-btn { display: none; }
}

/* ================================================ */
/* MAIN WRAPPER                                     */
/* ================================================ */
.main { background: transparent; }
.article { background: transparent; }

/* ================================================ */
/* HERO                                             */
/* ================================================ */
.hero {
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(232,160,32,0.08) 0%, transparent 65%),
        linear-gradient(180deg, var(--surface) 0%, var(--dark) 100%);
    border-bottom: 1px solid var(--border-gold);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 48px,
            rgba(232,160,32,0.018) 48px,
            rgba(232,160,32,0.018) 49px
        );
    pointer-events: none;
}

.hero-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 24px 0;
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(232,160,32,0.12), rgba(232,160,32,0.06));
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: 0 0 12px rgba(232,160,32,0.08);
}

.hero-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-gold 1.8s ease-in-out infinite;
    box-shadow: 0 0 8px var(--primary);
    flex-shrink: 0;
}

.hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.hero p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 16px;
    text-align: justify;
}

.hero-banner {
    max-width: 960px;
    margin: 28px auto 0;
    padding: 0 24px;
    position: relative;
}

.hero-banner a { display: block; border-radius: var(--radius-lg); overflow: hidden; }

.hero-banner img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--border-gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-banner img:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-gold), 0 12px 48px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .hero-banner { padding: 0 16px; margin-top: 20px; }
    .hero-banner img { border-radius: var(--radius-md); }
    .hero h1 { font-size: 1.4rem; }
    .hero-container { padding: 28px 16px 0; }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border-gold);
    margin-top: 6px;
}

.hero-stat {
    background: var(--surface);
    padding: 18px 16px;
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

.hero-stat::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.hero-stat:hover { background: rgba(22,24,36,0.9); }
.hero-stat:hover::before { transform: scaleX(1); }

.hero-stat__value {
    display: block;
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-stat__label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .hero-stat { padding: 14px 10px; }
    .hero-stat__label { font-size: 0.62rem; }
}

/* ================================================ */
/* CTA BUTTON                                       */
/* ================================================ */
@keyframes cta-shimmer {
    0%        { left: -70%; }
    60%, 100% { left: 130%; }
}

.cta-btn-wrap {
    margin: 30px 0 10px;
    text-align: center;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8a020, #f5c040, #c47a0a);
    background-size: 200% auto;
    color: #0a0900;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(232,160,32,0.4), 0 1px 0 rgba(255,255,255,0.1) inset;
    transition: box-shadow 0.25s, transform 0.2s, background-position 0.4s;
    animation: float-glow 3s ease-in-out infinite;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: cta-shimmer 2.8s ease-in-out infinite;
}

.cta-btn:hover {
    background-position: right center;
    box-shadow: 0 6px 36px rgba(232,160,32,0.6), 0 0 0 2px rgba(232,160,32,0.3);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .cta-btn { font-size: 0.82rem; padding: 13px 24px; }
}

/* ================================================ */
/* GAME SECTIONS                                    */
/* ================================================ */
.games-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 12px 24px 36px;
}

.games-section { margin-bottom: 40px; }

.games-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.games-section__header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.games-section__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.games-section__icon svg { width: 18px; height: 18px; }

.games-section__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--light);
    letter-spacing: 0.04em;
    margin: 0;
    flex: 1;
    text-transform: uppercase;
}

.games-section__more {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    background: var(--primary-glow);
    transition: all 0.2s;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.games-section__more:hover {
    background: rgba(232,160,32,0.15);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(232,160,32,0.2);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

@media (max-width: 900px) { .games-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 580px) { .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; } }
@media (max-width: 360px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }

.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 8px;
    cursor: pointer;
}

.game-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s;
    box-shadow: 0 3px 12px rgba(0,0,0,0.5);
    background: var(--surface2);
    border: 1px solid transparent;
}

.game-card:hover img {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 32px rgba(0,0,0,0.6), 0 0 0 1px var(--border-gold);
}

.game-card__name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    transition: color 0.2s;
}

.game-card:hover .game-card__name { color: var(--primary-light); }

/* ================================================ */
/* INFO SECTION                                     */
/* ================================================ */
.info-section-wrap {
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(232,160,32,0.04) 0%, transparent 60%),
        var(--surface);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: 0;
}

.info-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 44px 24px 52px;
}

.info-section h2 {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--light);
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-section h2::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.5em;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(232,160,32,0.4);
}

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

.info-section h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--light);
    margin-top: 30px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    padding-left: 14px;
    border-left: 3px solid var(--primary-dark);
    border-radius: 0 0 0 2px;
}

.info-section p {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.82;
    text-align: justify;
    margin-bottom: 14px;
}

.info-section .table-wrapper { margin: 22px 0; }
.info-section .faq-item { margin-bottom: 10px; }

/* ================================================ */
/* TABLE                                            */
/* ================================================ */
.table-wrapper {
    overflow-x: auto;
    margin: 22px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--surface2);
}

.table-wrapper::-webkit-scrollbar { height: 4px; }
.table-wrapper::-webkit-scrollbar-track { background: var(--surface2); }
.table-wrapper::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

table { width: 100%; border-collapse: collapse; min-width: 540px; }

thead { position: relative; }

th {
    background: linear-gradient(135deg, rgba(232,160,32,0.15), rgba(232,160,32,0.06));
    color: var(--primary-light);
    padding: 13px 18px;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    border-bottom: 2px solid var(--border-gold);
}

td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    background: var(--surface3);
    font-size: 0.92rem;
    line-height: 1.55;
    transition: background 0.2s;
}

tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: rgba(15,16,24,0.6); }
tr:hover td { background: rgba(232,160,32,0.05); }

/* ================================================ */
/* CONTENT LIST                                     */
/* ================================================ */
.content-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px;
}

.content-list li {
    position: relative;
    padding: 10px 0 10px 24px;
    color: var(--text);
    line-height: 1.65;
    border-bottom: 1px solid rgba(30,33,56,0.8);
    font-size: 0.95rem;
}

.content-list li:last-child { border-bottom: none; }

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 6px rgba(232,160,32,0.5);
}

ol.content-list {
    counter-reset: content-counter;
    padding: 0;
    margin: 14px 0 18px;
}

ol.content-list li {
    counter-increment: content-counter;
    padding-left: 36px;
}

ol.content-list li::before {
    content: counter(content-counter);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #0a0900;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    top: 12px;
    transform: none;
    box-shadow: 0 2px 8px rgba(232,160,32,0.35);
}

/* ================================================ */
/* FAQ ITEMS                                        */
/* ================================================ */
.faq-item {
    background: var(--surface2);
    border: 1px solid var(--border);
    margin-bottom: 10px;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.25s;
}

.faq-item:hover {
    border-color: var(--border-gold);
    background: rgba(22,24,36,0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,160,32,0.1);
}

.faq-item:hover::before { opacity: 1; }

.faq-q {
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.faq-a { color: var(--text); font-size: 0.92rem; line-height: 1.75; }

/* ================================================ */
/* PROS / CONS                                      */
/* ================================================ */
.pros-cons { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }

.pc-box { padding: 22px; border-radius: var(--radius-md); }
.pros { background: rgba(34,212,126,0.05); border: 1px solid rgba(34,212,126,0.2); }
.cons { background: rgba(232,80,50,0.05); border: 1px solid rgba(232,80,50,0.2); }

/* ================================================ */
/* FOOTER                                           */
/* ================================================ */
.footer {
    background:
        linear-gradient(180deg, var(--surface) 0%, var(--surface3) 100%);
    color: var(--text);
    padding: 52px 24px 0;
    border-top: 1px solid var(--border-gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 0 36px;
    }
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.05rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.footer-legal {
    font-size: 0.72rem !important;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
    opacity: 0.6;
    margin-top: 10px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-nav a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.footer-nav a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-nav a:hover::before { opacity: 1; }

.footer-regulators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.footer-regulators img {
    height: 36px;
    width: auto;
    opacity: 0.35;
    transition: opacity 0.3s, transform 0.3s;
    filter: grayscale(100%);
}

.footer-regulators img:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    filter: grayscale(0%);
}

.footer-bottom {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); opacity: 0.55; }

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer { padding: 36px 20px 0; }
}

/* ================================================ */
/* STICKY CTA BAR                                   */
/* ================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(8,9,16,0.95);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -6px 32px rgba(0,0,0,0.7), 0 -1px 0 rgba(232,160,32,0.15);
    padding: 12px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-cta__name {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.sticky-cta__bonus {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.sticky-cta__btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary-dark));
    background-size: 200% auto;
    color: #060500;
    padding: 11px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    transition: all 0.25s;
    box-shadow: 0 3px 16px rgba(232,160,32,0.4);
}

.sticky-cta__btn:hover {
    background-position: right center;
    box-shadow: 0 5px 24px rgba(232,160,32,0.6);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .sticky-cta__name { display: none; }
    .sticky-cta__bonus { text-align: left; font-size: 0.8rem; }
    .sticky-cta__btn { padding: 10px 18px; font-size: 0.78rem; }
}

/* ================================================ */
/* SCROLL TO TOP                                    */
/* ================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 88px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--surface2);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.scroll-to-top:hover {
    background: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(232,160,32,0.45);
}

.scroll-to-top.show { display: flex; }

.scroll-to-top svg { fill: var(--primary); transition: fill 0.25s; }
.scroll-to-top:hover svg { fill: #060500; }

/* ================================================ */
/* BREADCRUMBS                                      */
/* ================================================ */
.breadcrumbs {
    max-width: 960px;
    margin: 0 auto;
    padding: 14px 24px 0;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumbs-list a { color: var(--primary); text-decoration: none; }
.breadcrumbs-list a:hover { color: var(--primary-light); text-decoration: underline; }
.breadcrumbs-sep { color: var(--border); }
.breadcrumbs-current { color: var(--text-muted); }

/* ================================================ */
/* FEATURE GRID (advantage cards)                   */
/* ================================================ */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 24px 0; }
@media (min-width: 620px) { .feature-grid { grid-template-columns: 1fr 1fr; } }

.feature-item {
    background: linear-gradient(135deg, rgba(22,24,36,0.9), rgba(15,16,24,0.8));
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: var(--radius-md);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.feature-item:hover {
    border-color: var(--border-gold);
    box-shadow: 0 6px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,160,32,0.1);
    transform: translateY(-2px);
}

.feature-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.feature-header svg { width: 26px; height: 26px; fill: var(--primary); flex-shrink: 0; }
.feature-item h3 {
    font-size: 1rem;
    color: var(--light);
    margin: 0;
    font-weight: 700;
    border: none;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}

/* ================================================ */
/* CASINO / INFO CARDS                              */
/* ================================================ */
.info-card {
    background: var(--surface2);
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.info-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.info-card .icon-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(232,160,32,0.3);
}

.info-card h3 { font-size: 0.95rem; margin-bottom: 5px; color: var(--light); font-weight: 700; }
.info-card p { color: var(--text); font-size: 0.86rem; line-height: 1.5; margin-bottom: 4px; }
.info-card p:last-child { margin-bottom: 0; }
.info-card a { color: var(--primary); text-decoration: none; }
.info-card a:hover { color: var(--primary-light); text-decoration: underline; }

/* ================================================ */
/* CONTENT SECTION (generic wrapper)                */
/* ================================================ */
.content-section {
    padding: 36px 24px;
    max-width: 960px;
    margin: 0 auto;
}

.section-wrap {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.content-section h2 {
    margin-top: 28px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 900;
}

.content-section h2::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.5em;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(232,160,32,0.4);
}

.content-section h2:first-of-type { margin-top: 0; }

.content-section h3 {
    margin-top: 22px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--light);
    padding-left: 14px;
    border-left: 3px solid var(--primary-dark);
    border-radius: 0 0 0 2px;
}

.content-section p {
    margin-bottom: 14px;
    line-height: 1.8;
    text-align: justify;
    color: var(--text);
}

.content-section a { color: var(--primary); transition: color 0.15s; }
.content-section a:hover { color: var(--primary-light); }

/* ================================================ */
/* BONUS BADGE                                      */
/* ================================================ */
.bonus-nodep {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: var(--primary-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    margin-bottom: 10px;
}
.bonus-nodep__value {
    font-size: 1.15rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}
.bonus-nodep__label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Badges */
.card-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.card-badge--new  { background: #f59e0b; color: #1a0a00; }
.card-badge--excl { background: #8b5cf6; color: #fff; }
.card-badge--top  { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #060500; }

/* Kod */
.kod-brak {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px dashed var(--border);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.74rem;
    color: var(--text-muted);
}

.kod-box {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px dashed var(--border-gold);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--primary-light);
    background: var(--primary-glow);
    cursor: pointer;
    transition: background 0.15s;
    user-select: all;
}
.kod-box:hover { background: rgba(232,160,32,0.2); }
.kod-box svg { width: 11px; height: 11px; stroke: var(--primary); stroke-width: 2; fill: none; }

/* ================================================ */
/* RESPONSIBLE GAMING CALLOUT                       */
/* ================================================ */
.rg-callout {
    margin-top: 22px;
    padding: 18px 22px;
    background: rgba(232,160,32,0.04);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text);
    line-height: 1.7;
}

.rg-callout strong { color: var(--light); font-size: 1rem; }

/* ================================================ */
/* HIDDEN / LEGACY ELEMENTS                         */
/* ================================================ */
.author-box, .info-box, .author-avatar, .author-info,
.author-label, .author-name, .verified-badge,
.info-content, .info-label, .info-value,
.header-icons, .icon-item, .header-mobile-title,
.casino-card, .listing { display: none; }
