/**
 * Casinio2 Theme CSS for kolikkopelit.ai
 * Deep indigo body + golden amber accents
 */

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-text);
    padding: 0;
    margin: 0;
    background: var(--color-bg);
    overflow-x: hidden;
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5 {
    color: var(--color-text-white);
    font-family: var(--font-heading);
}

h6 {
    color: var(--color-text-white);
    font-family: var(--font-main);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

a:hover {
    color: var(--color-primary-light);
}

p {
    font-family: var(--font-body);
    color: #999;
    line-height: 1.7;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

.text-base {
    background: linear-gradient(137.05deg, #FFD600 2.61%, #FF9900 94.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--color-bg-header);
    z-index: var(--z-fixed);
    padding: 0;
    transition: all 0.5s;
}

.header.menu-fixed {
    box-shadow: 0px -31px 32px 9px #234DD4;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.header-logo-text {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: #FFFFFF;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav */
.nav-main {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) 10px;
    color: var(--color-text-white);
    font-weight: 500;
    font-size: 13px;
    font-family: var(--font-heading);
    transition: all 0.3s;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: transparent;
}

.nav-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--color-bg-light);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: var(--space-sm);
    z-index: var(--z-dropdown);
    border-top: 2px solid var(--color-primary);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text);
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.nav-dropdown-link:hover {
    background: rgba(248, 175, 8, 0.1);
    color: var(--color-primary);
    padding-left: 20px;
}

.nav-dropdown-link.active {
    background: var(--color-primary);
    color: #000;
    font-weight: 600;
}

/* ===== BANNER / HERO ===== */
.banner__section {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, var(--color-bg-header) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.banner__left__wrap {
    position: relative;
    background: linear-gradient(135deg, #35082B 0%, #36309D 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    height: 100%;
}

.banner__left__items {
    padding: 40px;
    display: flex;
    align-items: center;
    min-height: 350px;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.banner__content .title__one {
    font-size: clamp(36px, 5vw, 76px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-white);
    font-family: var(--font-heading);
}

.banner__content .title__two {
    display: block;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 700;
    background: linear-gradient(137.05deg, #FFD600 2.61%, #FF9900 94.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.banner__content .cmn--btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    font-weight: 600;
    font-size: 18px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner__content .cmn--btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 175, 8, 0.4);
}

/* Winner Table */
.banner__winer {
    background: linear-gradient(180deg, #282B60 0%, #1F214F 100%);
    border-radius: var(--radius-xl);
    padding: 20px;
    height: 100%;
}

.banner__winer h5 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.banner__winer .head__user {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.banner__winer .head__user h6 {
    font-size: 14px;
    color: #999;
}

.banner__winer .user__body li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    transition: background 0.3s;
    border-radius: var(--radius-sm);
}

.banner__winer .user__body li:hover {
    background: rgba(255,255,255,0.05);
}

.banner__winer .user__body li .thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.banner__winer .user__body li .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner__winer .user__body li .thumb.casino-icon {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner__winer .user__body li .thumb.casino-icon svg {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.banner__winer .user__body li span {
    color: var(--color-text-white);
    font-size: 14px;
}

.banner__winer .user__body li .amaount {
    color: #05FF00 !important;
}

/* ===== FEATURE ICONS ===== */
.banner__feature {
    padding: 30px 0 0;
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.feature__wrap {
    background: linear-gradient(135deg, #282B60 0%, #231D70 100%);
    border-radius: var(--radius-xl);
    padding: 25px 20px;
}

.feature__items {
    text-align: center;
    padding: 15px;
    border-radius: var(--radius-lg);
    transition: all 0.4s;
    cursor: pointer;
}

.feature__items:hover {
    background: rgba(248, 175, 8, 0.1);
    transform: translateY(-5px);
}

.feature__items .thumb {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__items .thumb img {
    max-width: 100%;
    max-height: 100%;
}

.feature__items .thumb svg {
    width: 50px;
    height: 50px;
}

.feature__items h6 {
    font-size: 16px;
    color: var(--color-text-white);
    margin-top: 8px;
}

/* ===== GAME SECTION ===== */
.game__section {
    padding: 80px 0;
}

.game__head__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.game__head__wrap h2 {
    font-size: clamp(32px, 4vw, 57px);
    font-weight: 400;
    font-family: var(--font-heading);
}

.game__head__wrap .cmn--btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-full);
    transition: all 0.4s;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.game__head__wrap .cmn--btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 175, 8, 0.4);
}

.game__items {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.game__items > img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.game__items:hover > img {
    transform: scale(1.08);
}

.game__items .badge,
.game__items .badge2 {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
}

.game__items .badge {
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
}

.game__items .badge2 {
    background: var(--color-accent);
    color: #fff;
}

.game__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.game__items:hover .game__overlay {
    opacity: 1;
}

.game__overlay .btn__grp {
    display: flex;
    gap: 12px;
}

.game__overlay .cmn--btn {
    padding: 10px 28px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 15px;
    transition: all 0.3s;
}

.game__overlay .cmn--btn:hover {
    transform: scale(1.05);
}

.game__overlay .cmn--btn2 {
    padding: 10px 28px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: var(--radius-full);
    font-size: 15px;
    transition: all 0.3s;
}

.game__overlay .cmn--btn2:hover {
    background: #fff;
    color: #000;
}

.game__items .reaction {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    color: #fff;
    z-index: 3;
    transition: all 0.3s;
}

.game__items .reaction:hover {
    background: var(--color-primary);
    color: #000;
}

/* ===== TOURNAMENT SECTION ===== */
.tournament__section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.tournament__item {
    background: linear-gradient(135deg, #36309D 0%, #282B60 100%);
    border-radius: var(--radius-xl);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.tournament__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.tournament__item .thumb {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.tournament__item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournament__item .content h3 {
    font-size: 28px;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.tournament__item .content .sub {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.tournament__item .content .prize {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.tournament__item .content .cmn--btn {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 15px;
    transition: all 0.3s;
}

/* ===== PROMOTIONS SECTION ===== */
.promo__section {
    padding: 80px 0;
}

.promo__card {
    background: linear-gradient(135deg, #282B60 0%, #1F214F 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s;
}

.promo__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.promo__card .thumb {
    height: 200px;
    overflow: hidden;
}

.promo__card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.promo__card:hover .thumb img {
    transform: scale(1.08);
}

.promo__card .content {
    padding: 20px;
}

.promo__card .content h4 {
    font-size: 22px;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.promo__card .content p {
    font-size: 15px;
    margin-bottom: 15px;
}

.promo__card .content .cmn--btn {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 15px;
    transition: all 0.3s;
}

/* ===== JACKPOT SECTION ===== */
.jackpot__section {
    padding: 80px 0;
    background: linear-gradient(135deg, #251145 0%, #1F214F 100%);
    position: relative;
    overflow: hidden;
}

.jackpot__header {
    text-align: center;
    margin-bottom: 40px;
}

.jackpot__header h2 {
    font-size: clamp(40px, 5vw, 70px);
    background: linear-gradient(137.05deg, #FFD600 2.61%, #FF9900 94.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.jackpot__header .amount {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #05FF00;
    font-family: var(--font-heading);
    margin-top: 10px;
}

.jackpot__winners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.jackpot__winner__card {
    background: linear-gradient(180deg, #321C55 0%, #251145 100%);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(248, 175, 8, 0.1);
}

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

.jackpot__winner__card .thumb {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
}

.jackpot__winner__card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpot__winner__card .amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.jackpot__winner__card .game {
    font-size: 13px;
    color: #999;
}

/* ===== FAQ SECTION ===== */
.faq__section {
    padding: 80px 0;
}

.faq__section h2 {
    font-size: clamp(32px, 4vw, 57px);
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

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

.faq__item {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq__item .faq__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq__item .faq__header:hover {
    background: rgba(248, 175, 8, 0.05);
}

.faq__item .faq__header h6 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-white);
    margin: 0;
}

.faq__item .faq__header .faq__icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq__item.active .faq__header .faq__icon {
    transform: rotate(180deg);
}

.faq__item .faq__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item.active .faq__body {
    max-height: 500px;
}

.faq__item .faq__body p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: #999;
    line-height: 1.7;
}

/* ===== WINS TABLE ===== */
.wins__section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.wins__tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.wins__tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: var(--color-text-white);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-heading);
}

.wins__tab.active,
.wins__tab:hover {
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    border-color: transparent;
}

.wins__table {
    width: 100%;
    border-collapse: collapse;
}

.wins__table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    color: #999;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wins__table td {
    padding: 14px 16px;
    font-size: 15px;
    color: var(--color-text-white);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wins__table tr:hover td {
    background: rgba(255,255,255,0.03);
}

.wins__table .game-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wins__table .game-cell img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.wins__table .payout {
    color: #05FF00;
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact__section {
    padding: 80px 0;
}

.contact__methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact__method {
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.contact__method .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.contact__method .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact__method h6 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact__method p {
    font-size: 14px;
    color: #999;
}

/* ===== FOOTER ===== */
.footer__section {
    background: var(--color-bg-footer);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer {
    background: var(--color-bg-footer);
    color: var(--color-text-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    line-height: 1.7;
    font-family: var(--font-body);
}

.footer-title {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-md);
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: all 0.3s;
    padding-left: 0;
    font-family: var(--font-body);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(87, 93, 218, 0.3);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
}

.footer-bottom p a {
    color: var(--color-primary);
}

.footer-disclaimer {
    max-width: 800px;
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: var(--text-xs) !important;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 57px);
    font-family: var(--font-heading);
    margin-bottom: 12px;
    color: var(--color-text-white);
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-white);
    font-family: var(--font-body);
}

/* ===== COMMON BUTTON ===== */
.cmn--btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cmn--btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 175, 8, 0.4);
    color: #000;
}

.cmn--btn span {
    position: relative;
    z-index: 1;
}

.cmn--btn.cmn__custom {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

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

/* ===== CATEGORIES SECTION ===== */
.categories__section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-dark) 100%);
}

.category-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

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

.category-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-text-white);
}

.category-card-title {
    font-size: var(--text-lg);
    color: var(--color-text-white);
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
}

.category-card-count {
    font-size: var(--text-sm);
    color: var(--color-primary);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #36309D 0%, #282B60 100%);
    padding: var(--space-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    background: linear-gradient(137.05deg, #FFD600 2.61%, #FF9900 94.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
}

/* ===== TAGS SECTION ===== */
.tags-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-dark) 50%, var(--color-bg) 100%);
    position: relative;
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.tag-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tag-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.tag-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: rgba(248, 175, 8, 0.2);
}

.tag-card:hover::before {
    opacity: 1;
}

.tag-card-featured {
    background: linear-gradient(135deg, #36309D 0%, #282B60 100%);
    border-color: rgba(248, 175, 8, 0.2);
}

.tag-card-featured .tag-card-name {
    color: #fff;
    font-weight: var(--font-semibold);
}

.tag-card-featured .tag-card-count {
    background: rgba(248, 175, 8, 0.9);
    color: #000;
}

.tag-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(248, 175, 8, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
}

.tag-card-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.tag-card-name {
    flex: 1;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-card-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 var(--space-sm);
    background: rgba(248, 175, 8, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
}

/* ===== CAROUSEL ===== */
.carousel-section {
    background: var(--color-bg);
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.kw-pill {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-bg-light);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text-white);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.kw-pill:hover {
    border-color: var(--color-primary);
    background: rgba(248, 175, 8, 0.1);
    color: var(--color-primary);
    transform: scale(1.05);
}

/* ===== SEO CONTENT ===== */
.seo-content {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.seo-content h2 {
    font-size: var(--text-xl);
    color: var(--color-text-white);
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.seo-content p {
    color: #999;
    line-height: 1.7;
}

/* ===== MODAL ===== */
.modal {
    background: var(--color-bg-light);
}

.modal-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.modal-title {
    color: var(--color-text-white);
    font-family: var(--font-heading);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-item a {
    color: var(--color-primary);
}

.breadcrumb-item a:hover {
    color: var(--color-primary-light);
}

/* ===== ARTICLE CONTENT ===== */
.article-content {
    line-height: 1.75;
}

.article-content h2 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
}

.article-content h3 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
}

.article-content a {
    color: var(--color-primary);
}

.article-content a:hover {
    color: var(--color-primary-light);
}

.article-content th {
    background: var(--color-secondary);
}

.article-content tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

.article-content blockquote {
    border-left-color: var(--color-primary);
    background: var(--color-bg-light);
}

/* ===== CASINO CARDS ===== */
.casino-grid {
    grid-template-columns: repeat(5, 1fr);
}

.casino-card {
    background: linear-gradient(145deg, var(--color-bg-light) 0%, var(--color-bg-card) 100%);
    border: 1px solid rgba(255,255,255,0.08);
}

.casino-card:hover {
    border-color: rgba(248, 175, 8, 0.3);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.casino-card::before {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.casino-card-name {
    color: var(--color-text-white);
}

.casino-card-bonus {
    color: var(--color-primary);
    background: rgba(248, 175, 8, 0.1);
    border-color: rgba(248, 175, 8, 0.2);
}

.casino-card .btn {
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    box-shadow: 0 4px 12px rgba(248, 175, 8, 0.3);
}

.casino-card .btn:hover {
    box-shadow: 0 6px 20px rgba(248, 175, 8, 0.5);
}

/* ===== NEW CASINO CARDS (Article pages) ===== */
.casino-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: var(--space-2xl);
}

.casino-card-new {
    position: relative;
    background: linear-gradient(160deg, #1e2266 0%, #151845 40%, #0f1030 100%);
    border: 1px solid rgba(248, 175, 8, 0.12);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.casino-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F8AF08, #FF6B35, #F8AF08);
    opacity: 0.6;
    transition: opacity 0.4s;
}

.casino-card-new::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(248, 175, 8, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.casino-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 175, 8, 0.35);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(248, 175, 8, 0.08);
}

.casino-card-new:hover::before {
    opacity: 1;
}

/* Rank badge */
.ccn-rank {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #F8AF08 0%, #FF6B35 100%);
    color: #000;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(248, 175, 8, 0.35);
}

/* Background glow */
.ccn-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(248, 175, 8, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s;
}

.casino-card-new:hover .ccn-glow {
    opacity: 1.5;
}

/* Top section */
.ccn-top {
    position: relative;
    z-index: 1;
    padding: 28px 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ccn-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 175, 8, 0.1) 0%, rgba(118, 82, 225, 0.1) 100%);
    padding: 6px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.ccn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casino-card-new:hover .ccn-icon {
    transform: scale(1.1) rotate(-3deg);
}

.ccn-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Stars */
.ccn-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.ccn-star {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.12);
    transition: fill 0.3s;
}

.ccn-star.active {
    fill: #F8AF08;
    filter: drop-shadow(0 0 3px rgba(248, 175, 8, 0.5));
}

.ccn-rating-num {
    font-size: 14px;
    font-weight: 700;
    color: #F8AF08;
    margin-left: 6px;
    font-family: var(--font-heading);
}

/* Bonus strip */
.ccn-bonus {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    margin: 0 16px;
    background: linear-gradient(135deg, rgba(248, 175, 8, 0.08) 0%, rgba(255, 107, 53, 0.06) 100%);
    border: 1px solid rgba(248, 175, 8, 0.15);
    border-radius: 12px;
    flex: 1;
}

.ccn-bonus-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(248, 175, 8, 0.7);
    font-family: var(--font-heading);
}

.ccn-bonus-value {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

/* CTA Button */
.ccn-btn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px;
    padding: 13px 20px;
    background: linear-gradient(114deg, #F8AF08 0%, #FF6B35 50%, #F8AF08 100%);
    background-size: 200% 100%;
    color: #000;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(248, 175, 8, 0.25);
}

.ccn-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.ccn-btn:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 25px rgba(248, 175, 8, 0.4);
    color: #000;
    transform: scale(1.03);
}

.ccn-btn:hover svg {
    transform: translateX(4px);
}

/* Top 3 special ranks */
.casino-card-new:nth-child(1) .ccn-rank {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.5);
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.casino-card-new:nth-child(2) .ccn-rank {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    box-shadow: 0 3px 10px rgba(192, 192, 192, 0.4);
}

.casino-card-new:nth-child(3) .ccn-rank {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
    box-shadow: 0 3px 10px rgba(205, 127, 50, 0.4);
}

/* First card special glow */
.casino-card-new:nth-child(1) {
    border-color: rgba(255, 215, 0, 0.2);
}

.casino-card-new:nth-child(1)::before {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1199px) {
    .casino-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .casino-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .ccn-top {
        padding: 24px 14px 12px;
    }
    .ccn-icon {
        width: 52px;
        height: 52px;
    }
    .ccn-name {
        font-size: 15px;
        letter-spacing: 1px;
    }
    .ccn-bonus {
        margin: 0 12px;
        padding: 10px 12px;
    }
    .ccn-bonus-value {
        font-size: 13px;
    }
    .ccn-btn {
        margin: 12px;
        padding: 11px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .casino-grid-new {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== PROMOTION CARDS (Category/Subcategory pages) ===== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-item {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}

.promo-item:hover {
    transform: translateY(-10px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(248, 175, 8, 0.1);
}

/* Image */
.promo-item__img {
    position: absolute;
    inset: 0;
}

.promo-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.promo-item:hover .promo-item__img img {
    transform: scale(1.1);
}

/* Overlay gradient */
.promo-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(15, 16, 48, 0.95) 0%,
        rgba(31, 33, 79, 0.7) 35%,
        rgba(31, 33, 79, 0.2) 60%,
        rgba(31, 33, 79, 0.05) 100%
    );
    transition: background 0.5s ease;
}

.promo-item:hover .promo-item__overlay {
    background: linear-gradient(
        0deg,
        rgba(248, 175, 8, 0.9) 0%,
        rgba(248, 128, 33, 0.5) 25%,
        rgba(31, 33, 79, 0.3) 55%,
        rgba(31, 33, 79, 0.1) 100%
    );
}

/* Content */
.promo-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.promo-item__badge {
    display: inline-block;
    background: linear-gradient(131.94deg, #FF0909 2.85%, #FF9900 109%);
    border-radius: 0px 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 5px 18px 7px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.promo-item__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.4s;
}

.promo-item:hover .promo-item__title {
    color: #000;
    text-shadow: none;
}

/* CTA Button */
.promo-item__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(248, 175, 8, 0.3);
    margin-bottom: 10px;
}

.promo-item__btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.promo-item:hover .promo-item__btn {
    background: #000;
    color: #F8AF08;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.promo-item:hover .promo-item__btn svg {
    transform: translateX(4px);
}

/* Article count */
.promo-item__count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.4s;
}

.promo-item:hover .promo-item__count {
    color: rgba(0, 0, 0, 0.7);
}

/* Decorative border on hover */
.promo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: border-color 0.4s;
    z-index: 3;
    pointer-events: none;
}

.promo-item:hover::before {
    border-color: rgba(248, 175, 8, 0.4);
}

/* Top accent line */
.promo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F8AF08, #FF6B35, transparent);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s;
}

.promo-item:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .promo-item {
        aspect-ratio: 3 / 4;
    }
    .promo-item__content {
        padding: 20px 16px;
    }
    .promo-item__badge {
        font-size: 12px;
        padding: 4px 14px 5px;
        margin-bottom: 12px;
    }
    .promo-item__title {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .promo-item__btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .promo-item {
        aspect-ratio: 16 / 10;
    }
}

/* ===== PAGE INTERNAL ===== */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--color-bg-header) 0%, var(--color-bg) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 57px);
    font-family: var(--font-heading);
    color: var(--color-text-white);
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SIDEBAR ===== */
.sidebar-widget {
    background: var(--color-bg-light);
    border: 1px solid rgba(255,255,255,0.05);
}

.sidebar-title {
    color: var(--color-text-white);
    font-family: var(--font-heading);
    border-bottom-color: var(--color-primary);
}

/* ===== FORMS ===== */
.form-input,
.form-textarea,
.form-select {
    background: var(--color-bg-card);
    border-color: rgba(255,255,255,0.1);
    color: var(--color-text-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    cursor: pointer;
    background: none;
    border: none;
}

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

.mobile-nav {
    background: var(--color-bg-header);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== NOTIFICATION / TOAST ===== */
.notification-success {
    background: linear-gradient(135deg, rgba(5, 255, 0, 0.15) 0%, rgba(5, 255, 0, 0.05) 100%);
    border-color: rgba(5, 255, 0, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* ===== SEO SECTION ===== */
.seo__section {
    padding: 60px 0;
}

/* ===== BANNER / FEATURE / PROMO GRIDS ===== */
.banner__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.feature__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .banner__content .title__one {
        font-size: 48px;
    }
    .banner__content .title__two {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-main {
        display: none;
    }
    .banner__section {
        padding-top: 100px;
    }
    .banner__grid {
        grid-template-columns: 1fr;
    }
    .banner__left__wrap {
        min-height: 300px;
    }
    .feature__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .promo__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .game__section,
    .tournament__section,
    .promo__section,
    .jackpot__section,
    .faq__section,
    .wins__section,
    .contact__section {
        padding: 60px 0;
    }
    .jackpot__winners {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact__methods {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tags-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    .casino-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .banner__section {
        padding-top: 90px;
    }
    .banner__left__items {
        padding: 25px;
        min-height: 250px;
    }
    .banner__winer {
        padding: 16px;
    }
    .banner__winer .user__body li {
        padding: 6px 10px;
    }
    .banner__winer .user__body li .amaount {
        font-size: 12px !important;
    }
    .feature__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .feature__items {
        padding: 10px;
    }
    .feature__items .thumb {
        width: 50px;
        height: 50px;
    }
    .feature__items .thumb svg {
        width: 36px;
        height: 36px;
    }
    .feature__items h6 {
        font-size: 13px;
    }
    .promo__grid {
        grid-template-columns: 1fr;
    }
    .promo__card .thumb {
        height: 180px;
    }
    .game__items > img {
        height: 200px;
    }
    .jackpot__section {
        padding: 50px 0;
    }
    .jackpot__winners {
        grid-template-columns: 1fr 1fr;
    }
    .contact__methods {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .tags-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header h2 {
        font-size: 32px;
    }
    .faq__item .faq__header {
        padding: 14px 16px;
    }
    .faq__item .faq__header h6 {
        font-size: 15px;
    }
    .faq__item .faq__body p {
        padding: 0 16px 14px;
        font-size: 14px;
    }
    .top-casinos {
        padding: 50px 0;
    }
    .categories__section {
        padding: 40px 0 30px;
    }
    .seo__section {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .banner__content .title__one {
        font-size: 32px;
    }
    .banner__content .title__two {
        font-size: 26px;
    }
    .banner__content .cmn--btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    .feature__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .game__head__wrap {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .jackpot__winners {
        grid-template-columns: 1fr;
    }
    .contact__methods {
        grid-template-columns: 1fr;
    }
    .casino-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.contact-method-card {
    background: var(--color-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(248,175,8,0.15);
}
.contact-method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-method-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
.contact-method-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--color-text-white);
}
.contact-method-card p {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.6;
}
.contact-form-wrapper {
    background: var(--color-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.contact-form-header {
    text-align: center;
    margin-bottom: 36px;
}
.contact-form-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.contact-form-header p {
    color: var(--color-text);
    font-size: 15px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-white);
}
.contact-form .form-input,
.contact-form .form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--color-text-white);
    font-size: 15px;
    font-family: var(--font-main);
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(248,175,8,0.15);
}
.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
    color: rgba(255,255,255,0.35);
}
.contact-form .cmn--btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.contact-info-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 40px;
    background: var(--color-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}
.contact-info-section h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.contact-info-section p {
    color: var(--color-text);
    line-height: 1.7;
}

/* ===== 404 PAGE ===== */
.error-page {
    text-align: center;
    padding: 60px 20px 100px;
}
.error-code {
    font-family: var(--font-heading);
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}
.error-message {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.error-page .cmn--btn {
    display: inline-flex;
}

@media (max-width: 991px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .error-code {
        font-size: 100px;
    }
}

/* ===== CATEGORY IMAGE CARDS ===== */
.categories__section {
    padding: 60px 0 40px;
}
.categories__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.cat-card-img {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cat-card-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(248, 175, 8, 0.2);
}
.cat-card-img__thumb {
    position: absolute;
    inset: 0;
}
.cat-card-img__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-card-img:hover .cat-card-img__thumb img {
    transform: scale(1.08);
}
.cat-card-img__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(31, 33, 79, 0.92) 0%, rgba(31, 33, 79, 0.3) 50%, rgba(31, 33, 79, 0.1) 100%);
    transition: background 0.4s ease;
}
.cat-card-img:hover .cat-card-img__overlay {
    background: linear-gradient(0deg, rgba(248, 175, 8, 0.85) 0%, rgba(31, 33, 79, 0.4) 50%, rgba(31, 33, 79, 0.15) 100%);
}
.cat-card-img__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    z-index: 2;
}
.cat-card-img__content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}
.cat-card-img__count {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}
.cat-card-img:hover .cat-card-img__count {
    color: #fff;
}
@media (max-width: 1199px) {
    .categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .categories__grid {
        grid-template-columns: 1fr;
    }
    .cat-card-img {
        aspect-ratio: 16 / 9;
    }
}

/* ===== TOP CASINOS SHOWCASE ===== */
.top-casinos {
    padding: 70px 0;
}
.casino-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.casino-showcase-card {
    position: relative;
    background: linear-gradient(165deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}
.casino-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.casino-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(248, 175, 8, 0.15);
    border-color: rgba(248, 175, 8, 0.25);
}
.casino-showcase-card:hover::before {
    opacity: 1;
}
.casino-showcase-badge {
    position: absolute;
    top: 16px;
    right: -28px;
    padding: 4px 36px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    transform: rotate(45deg);
}
.casino-showcase-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.casino-showcase-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.casino-showcase-card:hover .casino-showcase-logo {
    transform: scale(1.1) rotate(-3deg);
}
.casino-showcase-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-white);
    margin-bottom: 12px;
}
.casino-showcase-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 16px;
}
.casino-showcase-rating .star-icon {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.15);
}
.casino-showcase-rating .star-icon.filled {
    fill: #F8AF08;
}
.casino-showcase-rating .rating-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: 6px;
}
.casino-showcase-bonus {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 10px 16px;
    background: rgba(248, 175, 8, 0.08);
    border: 1px dashed rgba(248, 175, 8, 0.25);
    border-radius: 10px;
}
.casino-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(114.26deg, #E4A91B 13.41%, #F88021 87.24%);
    color: #000;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.casino-showcase-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.casino-showcase-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
}
.casino-showcase-btn:hover svg {
    transform: translateX(4px);
}
@media (max-width: 1199px) {
    .casino-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .casino-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .casino-showcase-card {
        padding: 28px 18px 24px;
    }
}
@media (max-width: 480px) {
    .casino-cards-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}
