html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a2e;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #16213e;
    border-radius: 12px;
    overflow: hidden;
}

.tabs {
    display: flex;
    background: #0f1419;
    padding: 0;
}

.tab {
    padding: 16px 24px;
    background: none;
    border: none;
    color: #8892b0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab.active {
    color: white;
    background: #16213e;
}

.tab:hover {
    color: white;
}

.actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    background: #16213e;
    border-bottom: 1px solid #2a3441;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-live {
    background: #6366f1;
    color: white;
}

.btn-live:hover {
    background: #5855eb;
}

.btn-wins {
    background: #374151;
    color: #d1d5db;
}

.btn-wins:hover {
    background: #4b5563;
}

.table-container {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}

.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: #1f2937;
}

.table-container::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}

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

th {
    background: #0f1419;
    color: #8892b0;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid #2a3441;
    white-space: nowrap;
}

td {
    padding: 12px;
    border-bottom: 1px solid #2a3441;
    white-space: nowrap;
}

tr:hover {
    background: #1e293b;
}

.game-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
}

.game-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.game-name {
    font-weight: 500;
    color: white;
    font-size: 14px;
}

.player-name {
    color: #8892b0;
    font-size: 14px;
}

.time {
    color: #6b7280;
    font-size: 12px;
}

.bet-amount {
    background: #374151;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.multiplier {
    background: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.payout {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

/* Game-specific icon colors */
.icon-wild-cash { background: #0ea5e9; }
.icon-hold-spin { background: #f59e0b; }
.icon-chicken-road { background: #ef4444; }
.icon-thunder-coins { background: #06b6d4; }
.icon-buffalo-power { background: #f59e0b; }
.icon-cross-road { background: #8b5cf6; }
.icon-volcanoes { background: #f59e0b; }
.icon-hawaiian { background: #06b6d4; }

/* Responsive design */
@media (max-width: 768px) {

    .tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .actions {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    th {
        padding: 12px 8px;
        font-size: 11px;
    }

    td {
        padding: 8px;
    }

    .game-cell {
        min-width: 140px;
    }

    .game-name {
        font-size: 13px;
    }

    .player-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        border-radius: 8px;
    }

    .tab {
        padding: 10px 12px;
    }

    .actions {
        padding: 10px 12px;
    }

    .game-cell {
        min-width: 120px;
        gap: 6px;
    }

    .game-icon {
        width: 20px;
        height: 20px;
    }

    .game-name {
        font-size: 12px;
    }

    .player-name {
        font-size: 12px;
    }
}

.footer {
    background: #0f1419;
    padding: 60px 0 0;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.2s ease;
    display: block;
    padding: 4px 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    background: #0a0d14;
    margin-top: 60px;
    padding: 32px 0;
    border-top: 1px solid #1e293b;
}

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

.footer-info p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-link {
    color: #8892b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Payment methods section */
.footer-payments {
    grid-column: 1 / -1;
    margin-top: 24px;
    padding-top: 32px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.payment-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 8px;
    color: #8892b0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 36px;
        padding: 0 16px;
    }

    .footer {
        padding: 48px 0 0;
    }

    .footer-bottom-content {
        padding: 0 16px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 14px;
    }

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

    .payment-methods {
        gap: 12px;
    }

    .payment-method {
        padding: 10px 16px;
        font-size: 12px;
    }

    .footer-social {
        gap: 16px;
    }

    .social-link {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 12px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-bottom-content {
        padding: 0 12px;
    }

    .footer-info p {
        font-size: 13px;
    }

    .payment-methods {
        gap: 8px;
    }

    .payment-method {
        padding: 8px 12px;
        font-size: 11px;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

.header {
    background: #0f1419;
    border-bottom: 1px solid #2a3441;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #6366f1;
    transition: color 0.2s ease;
}

/* Desktop Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.2s ease;
}

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

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: #8892b0;
    border: 1px solid #374151;
}

.btn-login:hover {
    color: white;
    border-color: #6b7280;
    background: rgba(255, 255, 255, 0.05);
}

.btn-register {
    background: #6366f1;
    color: white;
}

.btn-register:hover {
    background: #5855eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger Icon */
.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f1419;
    border-bottom: 1px solid #2a3441;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.mobile-nav-links li {
    margin-bottom: 16px;
}

.mobile-nav-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #1e293b;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
    color: white;
    padding-left: 8px;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-auth-buttons .btn {
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
}

/* Main Content */
.main-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.placeholder {
    color: #8892b0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        padding: 0 16px;
    }

    .mobile-menu {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 12px;
    }

    .logo {
        font-size: 20px;
    }

    .mobile-menu {
        padding: 12px;
    }

    .mobile-nav-links a {
        font-size: 15px;
        padding: 10px 0;
    }

    .mobile-auth-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 56px;
        padding: 0 8px;
    }

    .logo {
        font-size: 18px;
    }

    .hamburger {
        width: 20px;
        height: 15px;
    }

    .mobile-menu {
        padding: 8px;
    }

    .mobile-nav-links a {
        font-size: 14px;
        padding: 8px 0;
    }

    .mobile-auth-buttons .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Animation for smooth transitions */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-menu.active {
    animation: slideDown 0.3s ease forwards;
}

.promo-banners {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Фонові градієнти для кожного банера */
.welcome-banner {
    background: url("../images/banner-1.webp") no-repeat center center;
    background-size: cover;
}

.cashback-banner {
    background: url("../images/banner-2.webp") no-repeat center center;
    background-size: cover;
}

.highroller-banner {
    background: url("../images/banner-3.webp") no-repeat center center;
    background-size: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    color: white;
}

.promo-header {
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin: 15px 0;
}

.promo-amount {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.promo-description {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.promo-code {
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-button {
    background: #5BDCE5;
    color: #2c1810;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promo-button:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Додаткові декоративні елементи */
.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.promo-card:hover::before {
    transform: translateX(100%);
}

/* Мобільна адаптація */
@media (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .promo-card {
        height: 160px;
    }

    .promo-overlay {
        padding: 20px;
    }

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

    .promo-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .promo-card {
        height: 140px;
    }

    .promo-overlay {
        padding: 18px;
    }

    .promo-header {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .promo-amount {
        font-size: 1.4rem;
    }

    .promo-description {
        font-size: 0.9rem;
    }

    .promo-code {
        font-size: 0.8rem;
    }

    .promo-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .promo-banners {
        gap: 12px;
    }

    .promo-card {
        height: 130px;
    }

    .promo-overlay {
        padding: 15px;
    }

    .promo-amount {
        font-size: 1.2rem;
    }

    .promo-description {
        font-size: 0.85rem;
    }

    .promo-button {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

}

/* Планшетна адаптація */
@media (min-width: 769px) and (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card:nth-child(3) {
        grid-column: 1 / -1;
        height: 180px;
    }
}

/* Спеціальна адаптація для великих планшетів */
@media (min-width: 900px) and (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-card:nth-child(3) {
        grid-column: auto;
        height: 160px;
    }
}

/* Анімація появи карток */
.promo-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.promo-card:nth-child(1) { animation-delay: 0.1s; }
.promo-card:nth-child(2) { animation-delay: 0.2s; }
.promo-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.big-wins-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.trophy-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.control-btn:active {
    transform: scale(0.95);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 1s ease;
    will-change: transform;
}

.win-item {
    flex: 0 0 300px;
    margin-right: 16px;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.win-item:last-child {
    margin-right: 0;
}

.win-card {
    background: linear-gradient(135deg, #16213e 0%, #1e2a4a 100%);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.win-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.win-item:hover .win-card {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.win-item:hover .win-card::before {
    opacity: 1;
}

.game-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.game-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #374151, #4b5563);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);

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

.game-details {
    flex: 1;
    min-width: 0;
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #8892b0;
}

.player-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.player-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.win-amount {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-top: 8px;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Auto-scroll animation */
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-316px);
    }
}

.carousel-track.auto-scrolling {
    animation: autoScroll 1s linear infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }

    .win-item {
        flex: 0 0 280px;
        margin-right: 12px;
    }

    .win-card {
        padding: 12px;
    }

    .game-name {
        font-size: 14px;
    }

    .win-amount {
        font-size: 18px;
    }

    .control-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 12px;
    }

    .section-title {
        font-size: 18px;
    }

    .win-item {
        flex: 0 0 260px;
        margin-right: 8px;
    }

    .game-image {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .game-name {
        font-size: 13px;
    }

    .win-amount {
        font-size: 16px;
    }
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #16213e;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Typography */
.content-container h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 40px;
    position: relative;
    padding-left: 16px;
    border-left: 4px solid #6366f1;
}

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

.content-container h2 strong {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-container h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 32px;
    position: relative;
    padding-left: 12px;
    border-left: 3px solid #10b981;
}

.content-container h3 strong {
    color: white;
}

.content-container p {
    color: #cbd5e1;
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.7;
}

/* Lists */
.content-container ul {
    margin: 20px 0;
    padding-left: 0;
}

.content-container li {
    color: #cbd5e1;
    margin-bottom: 12px;
    padding: 8px 0 8px 32px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 3px solid #6366f1;
    margin-bottom: 8px;
}

.content-container li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    color: #10b981;
    font-weight: bold;
    font-size: 14px;
}

/* Tables */
.table-wrapper {
    margin: 24px 0;
    overflow-x: auto;
    border-radius: 8px;
    background: #0f1419;
    border: 1px solid #2a3441;
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #1f2937;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}

.content-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.content-container table tbody tr:first-child td {
    background: #0a0d14;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-container td {
    padding: 14px 16px;
    border-bottom: 1px solid #2a3441;
    color: #cbd5e1;
    font-size: 14px;
    vertical-align: top;
}

.content-container td:first-child {
    font-weight: 500;
    color: white;
    background: rgba(99, 102, 241, 0.1);
}

.content-container tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.content-container tbody tr:first-child:hover {
    background: #0a0d14;
}

.content-container td strong {
    color: white;
    font-weight: 600;
}

/* Highlight important sections */
.content-container > p:first-of-type {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
    font-size: 17px;
    margin-bottom: 24px;
}

/* Special styling for sections */
.content-container h2:nth-of-type(1) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    margin-bottom: 20px;
}

/* Payment methods table special styling */
.table-wrapper:has(table:contains("Method")) {
    background: linear-gradient(135deg, #0f1419, #1e293b);
    border: 1px solid #10b981;
}

/* Support table special styling */
.table-wrapper:has(table:contains("Support Type")) {
    background: linear-gradient(135deg, #0f1419, #1e2a4a);
    border: 1px solid #6366f1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        margin: 16px;
        padding: 32px 20px;
    }

    .content-container h2 {
        font-size: 24px;
        margin-bottom: 20px;
        margin-top: 32px;
    }

    .content-container h3 {
        font-size: 20px;
        margin-bottom: 16px;
        margin-top: 24px;
    }

    .content-container p {
        font-size: 15px;
        margin-bottom: 16px;
        text-align: left;
    }

    .table-wrapper {
        margin: 20px -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .content-container table {
        min-width: 500px;
    }

    .content-container td {
        padding: 12px 12px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .content-container {
        margin: 12px;
        padding: 24px 16px;
        border-radius: 8px;
    }

    .content-container h2 {
        font-size: 22px;
        margin-bottom: 18px;
        margin-top: 28px;
        padding-left: 12px;
    }

    .content-container h3 {
        font-size: 18px;
        margin-bottom: 14px;
        margin-top: 20px;
        padding-left: 10px;
    }

    .content-container p {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .content-container li {
        padding: 6px 0 6px 28px;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .content-container li::before {
        left: 10px;
        font-size: 12px;
    }

    .table-wrapper {
        margin: 16px -16px;
        border-radius: 0;
    }

    .content-container table {
        min-width: 450px;
    }

    .content-container td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .content-container > p:first-of-type {
        padding: 16px;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .content-container h2:nth-of-type(1) {
        padding: 16px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .content-container {
        margin: 8px;
        padding: 20px 12px;
    }

    .content-container h2 {
        font-size: 20px;
        margin-bottom: 16px;
        margin-top: 24px;
        padding-left: 10px;
        border-left-width: 3px;
    }

    .content-container h3 {
        font-size: 16px;
        margin-bottom: 12px;
        margin-top: 18px;
        padding-left: 8px;
        border-left-width: 2px;
    }

    .content-container p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .content-container li {
        padding: 5px 0 5px 24px;
        font-size: 13px;
        margin-bottom: 5px;
    }

    .content-container li::before {
        left: 8px;
        font-size: 11px;
    }

    .table-wrapper {
        margin: 12px -12px;
    }

    .content-container table {
        min-width: 400px;
    }

    .content-container td {
        padding: 8px 6px;
        font-size: 11px;
    }

    .content-container tbody tr:first-child td {
        font-size: 12px;
    }

    .content-container > p:first-of-type {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .content-container h2:nth-of-type(1) {
        padding: 12px;
        margin-bottom: 12px;
    }
}

/* Animation for smooth loading */
.content-container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.content-container h2:hover {
    border-left-color: #8b5cf6;
    transition: border-left-color 0.2s ease;
}

.content-container h3:hover {
    border-left-color: #06d6a0;
    transition: border-left-color 0.2s ease;
}

.content-container li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #8b5cf6;
    transition: all 0.2s ease;
}

/* Print styles */
@media print {
    .content-container {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .content-container h2, h3 {
        color: black;
        border-left-color: #333;
    }

    .content-container p, li, td {
        color: black;
    }
}