:root {
    
    --color-bg-dark: #050505;
    
    --color-bg-card: #0a0a0a;
    
    --color-primary: #D4AF37;
    
    --color-secondary: #F4C430;
    
    --color-accent: #C5A000;
    
    --color-text-main: #ffffff;
    --color-text-muted: #b0b0b0;
    --color-gold: #D4AF37;
    --glass-bg: rgba(10, 10, 10, 0.9);
    --glass-border: rgba(212, 175, 55, 0.2);

    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html,
body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    
    width: 100%;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}


.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}


.header {
    background-color: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    width: 95%;
    
    max-width: 1400px;
    
    margin: 0 auto;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 15px;
    
    margin: 0 20px;
    
    padding: 0;
}

.nav-links>li>a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-main);
    position: relative;
    padding: 5px 0;
    display: inline-block;
    white-space: nowrap;
    
    
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--color-primary);
}

.nav-links>li>a:hover::after {
    width: 100%;
}

.btn-header {
    padding: 8px 18px !important;
    
    font-size: 0.85rem !important;
    
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--color-text-main);
    border-radius: 2px;
    transition: 0.3s;
}


.hero {
    height: 100vh;
    min-height: 700px;
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    
    padding-top: 120px;
    
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--color-bg-dark), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 20px 0;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    color: var(--color-primary);
    font-size: clamp(2.2rem, 10vw, 4rem);
    margin-bottom: 10px;
    white-space: nowrap;
}

.hero-title-sub {
    display: block;
    color: white;
    font-size: clamp(1.15rem, 4.5vw, 2rem);
    line-height: 1.3;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2.8vw, 1.2rem);
    color: var(--color-text-muted);
    font-weight: 400;
    text-transform: none;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
}

.text-highlight {
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}


.hero-live-card {
    flex: 0 0 380px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    
    max-height: calc(100vh - 160px);
}

.hero-live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.live-section {
    padding: 15px 20px;
}

.live-section.upcoming {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    min-height: 0; 
    overflow-y: auto;
}

.live-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.live-card-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 5px;
    display: inline-block;
}

.live-status-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.live-status-dot span {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

.live-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.live-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.live-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.live-item-name {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.live-item-info {
    text-align: right;
}

.live-item-sub {
    font-size: 0.75rem;
    color: #aaa;
    display: block;
}

.live-item-val {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.live-card-footer {
    padding: 8px 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0; 
}


.hero-live-card.card-empty {
    flex: 0 0 auto;
    max-height: none;
    align-self: center;
}

.hero-live-card.card-empty .live-card-footer {
    padding: 30px 40px;
    background: transparent;
    border-top: none;
}

.hero-live-card.card-empty .live-contact {
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.hero-live-card.card-empty .live-phone {
    font-size: 1.4rem;
}

.hero-live-card.card-empty .btn-small {
    margin-top: 15px !important;
    padding: 10px 25px !important;
    font-size: 0.85rem !important;
}

.live-contact {
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.live-phone {
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    font-size: 1.1rem;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 130px;
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .hero-content {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
    }

    .hero-text {
        margin-bottom: 40px;
        order: 1;
    }

    .hero-live-card {
        order: 0;
        width: 100%;
        max-width: 500px;
        max-height: none;
        margin-bottom: 30px;
        overflow: visible;
        position: static !important;
        top: auto !important;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-live-card {
        padding: 0;
        margin-bottom: 30px;
    }

    .live-section {
        padding: 12px 14px;
    }

    .live-card-content {
        gap: 4px;
    }

    .live-item {
        padding: 5px 10px;
    }

    .live-item.active-tournament-highlight {
        padding: 6px 10px;
    }

    .live-card-header {
        margin-bottom: 10px;
    }

    .live-card-footer {
        padding: 8px 14px;
    }

    .hero-buttons {
        margin-bottom: 20px;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    z-index: 3;
}


.live-item {
    padding: 5px 12px;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 0;
}


.live-price-gold {
    color: #FFD700;
    font-weight: 800;
    font-size: 1rem;
    
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.live-price-red {
    color: #ff0000;
    font-weight: 800;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
}

/* Částka a přepočet na eura se každý drží na jednom řádku, ale přepočet smí
   spadnout na druhý řádek. Dřív měly celé ceny nowrap a u dlouhého názvu
   turnaje se řádek na mobilu nevešel do karty a text se sekal. */
.live-price-gold .amt,
.live-price-gold .fx-eur,
.live-price-red .amt,
.live-price-red .fx-eur,
.t-gtd .amt,
.t-gtd .fx-eur {
    white-space: nowrap;
}


.live-card-header {
    margin-bottom: 5px;
    
    padding-bottom: 5px;
}


.live-item.active-tournament-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    border-color: #FDB931;
    box-shadow: 0 0 8px rgba(253, 185, 49, 0.2);
    padding: 6px 12px;
}

.live-item.active-tournament-highlight .live-item-name {
    color: #000;
    text-shadow: none;
    font-weight: 800;
}

.live-item.active-tournament-highlight .live-item-sub {
    color: #333;
    font-weight: 600;
}

.live-item.active-tournament-highlight .live-item-val {
    color: #000;
}

/* Live PokerClock cards (Kings Casino style), used inside the existing
   "PRÁVĚ SE HRAJE" sidebar block — see .np-compact below for the narrow
   (~320px) layout actually used there. */
.np-card {
    display: grid;
    position: relative; /* kotva pro .is-paused overlay */
    grid-template-columns: 200px 1fr 260px;
    grid-template-areas: "left center right" "footer footer footer";
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.np-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
}

.np-card.is-offline {
    opacity: 0.55;
}

/* PAUSED — stejný princip i text jako #pause-overlay na fullscreen displeji, jen
   zmenšený a omezený na středový sloupec, ať zpod cedule nekouká odpočet. */
.np-center {
    position: relative;
}

.np-card.is-paused .np-center::after {
    content: "PAUSED";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.66);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    pointer-events: none;
    z-index: 2;
}

/* Turnaj ještě nezačal — místo odpočtu se ukáže čas startu, statistiky se schovají
   (visibility, ne display, ať se nerozhodí grid). */
.np-startsat {
    display: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.np-card.is-not-started .np-startsat {
    display: block;
}

.np-card.is-not-started .np-time,
.np-card.is-not-started .np-blinds {
    display: none;
}

/* Skrýt jen obsah, ne panely — jinak z karty zmizí tmavé boční sloupce a rozpadne se dojem. */
.np-card.is-not-started .np-stats-left .np-stat,
.np-card.is-not-started .np-right .np-stat {
    visibility: hidden;
}

.np-left {
    grid-area: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.np-logo {
    width: 44px;
    height: auto;
    opacity: 0.9;
}

/* Placeholder for the future tournament/club logo image — clearly marked
   as a stand-in so it's obvious where real artwork will go later. */
/* Logo je tmavě zlaté — na barevném podkladu karty by zaniklo, proto stejný tmavý
   rámeček jako má .display-logo-wrap na fullscreen displeji. */
.np-logo {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
    padding: 3px;
    border-radius: 8px;
    border: 1px solid #4e432d;
    background: rgba(14, 11, 8, 0.62);
    margin-bottom: 4px;
    flex-shrink: 0;
}

.np-name {
    font-weight: 800;
    font-size: 1.02rem;
    line-height: 1.25;
}

.np-buyin {
    font-size: 0.78rem;
    opacity: 0.8;
}

.np-center {
    grid-area: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
}

.np-time {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.np-card.is-break .np-time {
    color: var(--color-primary);
}

.np-blinds {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 10px;
    white-space: nowrap;
}

.np-right {
    grid-area: right;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    align-content: center;
}

.np-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.np-stat span {
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.65;
}

.np-stat strong {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.np-footer {
    grid-area: footer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.65);
    font-size: 0.78rem;
}

.np-footer span {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

.np-footer strong {
    font-size: 1.05rem;
    color: var(--color-primary);
}

.np-theme-0 { background: linear-gradient(135deg, #4c1d95, #2e1065); }
.np-theme-1 { background: linear-gradient(135deg, #7c2d12, #431407); }
.np-theme-2 { background: linear-gradient(135deg, #713f12, #422006); }
.np-theme-3 { background: linear-gradient(135deg, #1e293b, #0f172a); }

/* Compact variant — used inside the ~380px "PRÁVĚ SE HRAJE" sidebar card.
   Mirrors Kings Casino's own composition (title header, countdown flanked by
   narrow stat columns on both sides, guarantee strip) just scaled down to
   fit — stats split left/right so the countdown doesn't dominate the card. */
.np-card.np-compact {
    /* levý sloupec je širší než dřív — přibyl 3. řádek se stacky ("1 500 000") */
    grid-template-columns: 78px 1fr 68px;
    grid-template-areas:
        "header header header"
        "statsleft center right"
        "footer footer footer";
    margin-bottom: 10px;
}

.np-card.np-compact .np-left {
    grid-area: header;
}

.np-card.np-compact .np-stats-left {
    grid-area: statsleft;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px; /* 3 řádky místo 2 — menší mezera, ať karta nenaroste */
    padding: 8px 6px 8px 8px;
    background: rgba(0, 0, 0, 0.4);
}

/* Stacky bývají 5–7místné ("1 500 000") — menší písmo, ať se vejdou do sloupce. */
.np-card.np-compact .np-stats-left .np-stat strong {
    font-size: 0.68rem;
}

.np-card.np-compact .np-left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    gap: 8px;
}

.np-card.np-compact .np-left-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.np-card.np-compact .np-name {
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.np-card.np-compact .np-buyin {
    font-size: 0.72rem;
}

.np-card.np-compact .np-logo {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
}

.np-card.np-compact .np-center {
    padding: 8px 6px 10px 12px;
    min-width: 0;
}

.np-card.np-compact .np-time {
    font-size: 1.9rem;
}

.np-card.np-compact .np-blinds {
    font-size: 0.78rem;
    margin-top: 4px;
    white-space: normal;
}

.np-card.np-compact .np-right {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 8px 8px 8px 6px;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
}

.np-card.np-compact .np-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

/* Labely jako "Next break" / "Start. stack" se do úzkých sloupců vejdou jen na jeden
   řádek — jinak zalomí a rozhodí výšku řádků. */
.np-card.np-compact .np-stat span {
    font-size: 0.5rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.np-card.np-compact .np-stat strong {
    font-size: 0.76rem;
    white-space: nowrap;
}

.np-card.np-compact .np-footer {
    padding: 6px 12px;
    font-size: 0.7rem;
}

.np-card.np-compact .np-footer strong {
    font-size: 0.9rem;
}

@media (max-width: 760px) {
    .np-card:not(.np-compact) {
        grid-template-columns: 1fr;
        grid-template-areas: "left" "center" "right" "footer";
    }

    .np-card:not(.np-compact) .np-time {
        font-size: 2.6rem;
    }
}


.btn-small {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    transition: 0.3s;
}

.btn-small:hover {
    background: var(--color-primary);
    color: #000;
}


.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    margin: 8px auto;
    animation: scroll 2s infinite;
}



.events-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0a0a14 50%, var(--color-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.events-header {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 50px;
}

.events-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

.events-overview-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 2px;
}

.events-overview-link:hover {
    color: var(--color-primary);
}

.events-overview-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.events-overview-link:hover::after {
    width: 100%;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.event-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
}

.event-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #000;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card:hover .event-card-image img {
    
}

.event-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 60%);
    pointer-events: none;
}

.event-card-prize {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prize-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.prize-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.event-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 500;
}

.event-card-date svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.event-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
}


.live-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

.live-footer-events {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.events-footer-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    margin: 0;
}

.events-footer-link {
    font-size: 0.7rem;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.events-footer-link:hover {
    color: var(--color-secondary);
}

.live-footer-contact {
    text-align: right;
}


@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .events-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
    }

    .events-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .prize-amount {
        font-size: 1.6rem;
    }

    .event-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prize-amount {
        font-size: 1.8rem;
    }

    .event-card-title {
        font-size: 1.05rem;
    }

    .events-header h2 {
        font-size: 1.6rem;
    }
}


.live-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.15s ease;
}

.live-item-link:hover {
    transform: translateY(-2px);
}


.hero-live-card {
    justify-content: flex-start;
}




@media (max-height: 800px) and (min-width: 993px) {
    .hero-live-card {
        max-height: calc(100vh - 140px);
    }
    .live-section {
        padding: 10px 16px;
    }
    .live-card-content {
        gap: 4px;
    }
    .live-item {
        padding: 4px 10px;
    }
    .live-item.active-tournament-highlight {
        padding: 5px 10px;
    }
    .live-item-name {
        font-size: 0.85rem;
    }
    .live-item-sub {
        font-size: 0.7rem;
    }
    .live-item-val {
        font-size: 0.8rem;
    }
    .live-price-gold,
    .live-price-red {
        font-size: 0.9rem;
    }
    .live-card-title {
        font-size: 0.9rem;
    }
    .live-phone {
        font-size: 0.95rem;
    }
    .cashgame-header {
        margin: 5px 0 3px !important;
    }
}


@media (max-height: 700px) and (min-width: 993px) {
    .hero {
        padding-top: 100px;
    }
    .hero-content {
        padding-top: 10px;
    }
    .hero-live-card {
        max-height: calc(100vh - 110px);
        border-radius: 14px;
    }
    .live-section {
        padding: 8px 14px;
    }
    .live-card-content {
        gap: 3px;
    }
    .live-item {
        padding: 3px 10px;
        border-radius: 6px;
    }
    .live-item.active-tournament-highlight {
        padding: 4px 10px;
    }
    .live-item-name {
        font-size: 0.8rem;
    }
    .live-item-sub {
        font-size: 0.65rem;
    }
    .live-card-footer {
        padding: 5px 8px;
    }
    .live-contact {
        font-size: 0.65rem;
    }
    .live-phone {
        font-size: 0.85rem;
    }
    .live-card-footer .btn-small {
        padding: 5px 15px !important;
        font-size: 0.75rem !important;
        margin-top: 8px !important;
    }
}


@media (min-height: 1000px) and (min-width: 993px) {
    .live-section {
        padding: 20px 25px;
    }
    .live-card-content {
        gap: 8px;
    }
    .live-item {
        padding: 8px 14px;
    }
    .live-item.active-tournament-highlight {
        padding: 10px 14px;
    }
}


@media (min-width: 1600px) {
    .hero-live-card {
        flex: 0 0 420px;
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}


.now-playing-banner {
    position: relative;
    z-index: 5;
    margin-top: -50px;
    margin-bottom: 50px;
}

.now-playing-card {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border: 1px solid var(--color-primary);
    border-radius: 15px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.pulse-icon {
    width: 15px;
    height: 15px;
    background-color: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.4);
    margin-right: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.now-playing-info h3 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-secondary);
    letter-spacing: 2px;
}

.live-tournament {
    display: flex;
    flex-direction: column;
}

.badge-live {
    background: #D4AF37;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 10px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.live-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.btn-live {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-live:hover {
    background: #D4AF37;
    color: white;
}


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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #C5A000, #FFD700);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #C5A000);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-main);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}


.section-padding {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.floating-image {
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.about-text strong {
    color: var(--color-text-main);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background: var(--color-bg-card);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.hero-short {
    height: auto;
    min-height: unset;
    padding-top: 150px;
    padding-bottom: 40px;
}

.hero-short .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.hero-short h1 {
    margin-bottom: 5px;
}

.hero-short p {
    margin-bottom: 0;
}

.tournament-mode-toggle {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tournaments-section {
    background-color: #0d121d;
    
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.tournament-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tournament-card:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.t-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.t-date-box,
.t-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin-right: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.t-day,
.day {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.t-time,
.time {
    font-size: 0.85rem;
    color: white;
}

.date {
    font-size: 0.9rem;
    color: #ddd;
}

.t-info {
    flex: 1;
    min-width: 0;
}

.t-name {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.t-meta {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
}

.t-gtd,
.gtd {
    color: var(--color-gold);
    font-weight: 700;
    margin-left: 0;
}

.t-action {
    margin-left: 15px;
    flex-shrink: 0;
}

.icon-arrow {
    font-size: 0.85rem;
    color: var(--color-primary);
    white-space: nowrap;
}

.t-arrow {
    margin-left: 20px;
    color: var(--color-primary);
    transition: 0.3s;
}

.tournament-card.active .t-arrow {
    transform: rotate(180deg);
}


.t-details {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.tournament-card.active .t-details {
    max-height: 800px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.t-details::-webkit-scrollbar {
    width: 8px;
}

.t-details::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.t-details::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.t-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


@media (max-width: 768px) {
    .map-overlay {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: #050510 !important;
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item .label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.detail-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.t-description {
    padding: 20px;
    font-style: italic;
    color: #ccc;
}

.t-structure {
    padding: 0 20px 20px;
}

.t-structure h4 {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.structure-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}


.footer {
    background-color: black;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}


.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.feature-item p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}


@media (max-width: 900px) {
    .hero-short {
        padding-top: 140px;
        padding-bottom: 30px;
    }

    .hero-short h1 {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-dark);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .now-playing-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pulse-icon {
        margin: 0 auto;
    }

    .t-header {
        flex-wrap: wrap;
        padding: 15px;
    }

    .t-date-box,
    .t-date {
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }

    .t-info {
        flex: 1 1 0;
        min-width: 0;
    }

    .t-action {
        margin-left: auto;
    }

    .t-name {
        font-size: 1.1rem;
    }

    .t-meta {
        font-size: 0.85rem;
    }

    .t-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .tournament-card:hover {
        transform: none;
    }

    .t-structure table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .t-header {
        padding: 12px;
        gap: 8px;
    }

    .t-date-box,
    .t-date {
        width: 55px;
        height: 55px;
        margin-right: 10px;
    }

    .t-day,
    .day {
        font-size: 1rem;
    }

    .t-time,
    .time {
        font-size: 0.75rem;
    }

    .t-name {
        font-size: 1rem;
    }

    .t-meta {
        font-size: 0.8rem;
    }

    .t-action {
        display: none;
    }

    .t-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }

    .t-description {
        padding: 12px;
    }

    .t-structure {
        padding: 0 12px 12px !important;
    }

    .accordion-container {
        gap: 10px;
    }
}


.word-rotate {
    display: inline-block;
    color: var(--color-primary);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.4s ease;
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    width: 900px;
    
    max-width: 50vw;
    
    text-align: left;
    white-space: nowrap;
    vertical-align: bottom;
    
}


@media (max-width: 768px) {
    .word-rotate {
        width: 100%;
        
        display: block;
        
        margin-top: 10px;
    }
}

.word-rotate.rotate-out {
    opacity: 0;
    transform: translateY(20px) rotateX(-90deg);
}

.word-rotate.rotate-in {
    opacity: 0;
    transform: translateY(-20px) rotateX(90deg);
    transition: none;
    
}



.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    
    background-color: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 240px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 12px;
    padding: 15px 0;
    display: flex;
    
    flex-direction: column;

    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.dropdown-menu a {
    padding: 12px 25px;
    white-space: nowrap;
    color: var(--color-text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    width: 100%;
    display: block;
    text-align: left;
    transition: all 0.2s ease;
    position: relative;
    
    text-decoration: none;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--color-primary);
}

.dropdown-menu a:hover::after {
    width: 100%;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
    color: var(--color-primary);
    
}


@media (max-width: 900px) {
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        border: none;
        width: 100%;
        padding: 0;
        transform: none !important;
        
        visibility: visible;
        
        opacity: 1;
        
    }

    
    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-toggle::after {
        content: ' ▾';
    }

    .dropdown-menu a {
        text-align: center;
        padding-left: 0;
    }

    .dropdown-menu a:hover {
        padding-left: 0;
        background: rgba(212, 175, 55, 0.2);
    }
}




.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 900px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.content-text h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.content-text iframe {
    max-width: 100%;
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
}


table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

@media (max-width: 768px) {

    
    .table-responsive-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    
    .t-details-grid {
        grid-template-columns: 1fr 1fr;
        
        gap: 15px;
    }

    
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}


.games-carousel-section {
    margin-top: 60px;
    padding: 40px 0;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-track {
    display: flex;
    flex: 1 1 auto;
    justify-content: safe center;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin: 0px 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    
    -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    width: 200px;
    height: 260px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.carousel-card:hover {
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.15) 100%);
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    border-radius: 15px;
}

@media (hover: none) and (pointer: coarse) {
    
    .carousel-card:active {
        border-color: var(--color-secondary);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.15) 100%);
        transform: scale(0.97);
        box-shadow: 0 3px 8px rgba(212, 175, 55, 0.25);
    }
}

.carousel-card:hover::before {
    left: 100%;
}

.carousel-card-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.carousel-card-content {
    z-index: 1;
    position: relative;
}

.carousel-card-content h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-transform: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.carousel-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.3;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@media (hover: none) and (pointer: coarse) {
    
    .carousel-btn:active {
        background: var(--color-secondary);
        box-shadow: 0 0 15px rgba(244, 196, 48, 0.6);
    }
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}


@media (max-width: 1024px) {
    .carousel-card {
        min-width: 180px;
        width: 180px;
        height: 240px;
    }

    .carousel-card-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 992px) {
    .carousel-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        gap: 10px;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-card {
        min-width: 160px;
        width: 160px;
        height: 220px;
        padding: 20px 15px;
    }

    .carousel-card-image {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .carousel-card-content h4 {
        font-size: 1rem;
    }

    .carousel-card-content p {
        font-size: 0.8rem;
    }

    .carousel-btn {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {

    
    .scroll-indicator {
        display: none;
    }

    
    .t-details-grid {
        grid-template-columns: 1fr;
        
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .games-carousel-section {
        margin-top: 40px;
        padding: 30px 0;
    }

    .carousel-container {
        gap: 8px;
        padding: 0 5px;
    }

    .carousel-track {
        gap: 12px;
        padding: 20px 0;
        margin: 0px 40px;
    }

    .carousel-track::before { content: " "; }
    .carousel-track::after { content: " "; }

    .carousel-card {
        min-width: 130px;
        width: 130px;
        height: 190px;
        padding: 18px 12px;
        border-radius: 12px;
    }

    .carousel-card-image {
        width: 65px;
        height: 65px;
        margin-bottom: 12px;
    }

    .carousel-card-image img {
        filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
    }

    .carousel-card-content h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .carousel-card-content p {
        font-size: 0.7rem;
        margin: 0;
        opacity: 0.8;
    }

    .carousel-btn {
        display: flex;
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        border-width: 1.5px;
    }

    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
}




.cashgame-section {
    background-color: #0d121d;
}


.cg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}


.cg-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    width: 100%;
}

.cg-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.08);
}

.cg-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}


.cg-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cg-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cg-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    animation: cgPulse 2s ease-in-out infinite;
}

@keyframes cgPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.cg-card-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}


.cg-card-info {
    margin-bottom: 16px;
}

.cg-card-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.cg-card-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cg-card-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.cg-card-val-primary {
    font-size: 1.2rem;
    color: var(--color-primary);
}


.cg-card-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 12px;
    margin-bottom: 14px;
}

.cg-stat {
    flex: 1;
    text-align: center;
}

.cg-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.cg-stat-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.cg-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}


.cg-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #555;
}


.cg-info {
    text-align: center;
    margin-top: 48px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}


.cg-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.cg-empty-icon {
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 24px;
}

.cg-empty h2 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.cg-empty p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}


@media (max-width: 1100px) {
    .cg-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 860px) {
    .cg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 540px) {
    .cg-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 380px;
    }

    .cg-card {
        padding: 20px 16px;
    }

    .cg-card-val-primary {
        font-size: 1.1rem;
    }

    .cg-stat-value {
        font-size: 1rem;
    }
}

/* ===== Cookie Consent Bar ===== */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(5, 5, 16, 0.97);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    animation: cookieSlideUp 0.4s ease;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-hide {
    animation: cookieSlideDown 0.4s ease forwards;
}

@keyframes cookieSlideDown {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.cookie-consent-text p {
    margin: 0;
    color: var(--color-text-muted);
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(90deg, #C5A000, #FFD700);
    color: #000 !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cookie-btn-accept:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 0.85rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn-accept {
        flex: 1;
    }
    .cookie-btn-decline {
        flex: 0;
        white-space: nowrap;
    }
}