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 {
    background: #0a1520;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fff;
}

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

.tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.tab {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: #8b9bb3;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab.active {
    color: #fff;
    border-bottom-color: #3b82f6;
}

.header-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-live {
    background: #1e3a4f;
    color: #4fd1c5;
}

.btn-wins {
    background: #2d1f3f;
    color: #a78bfa;
}

.table-wrapper {
    background: #0f1c2a;
    border-radius: 12px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px 20px;
    background: #0a1520;
    font-size: 13px;
    font-weight: 500;
    color: #8b9bb3;
}

.bet-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s;
}

.bet-row:hover {
    background: rgba(59, 130, 246, 0.05);
}

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

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

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

.player-name {
    color: #8b9bb3;
    font-size: 14px;
}

.time {
    color: #8b9bb3;
    font-size: 13px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.badge-bet {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.badge-multiplier {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

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

@media (max-width: 1024px) {
    .table-header,
    .bet-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .time,
    .badge-bet {
        display: none;
    }
}

@media (max-width: 768px) {
    .table-header {
        display: none;
    }

    .bet-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    .game-info {
        grid-column: 1;
    }

    .player-name,
    .badge-multiplier,
    .payout {
        font-size: 13px;
    }

    .tabs {
        gap: 20px;
    }

    .tab {
        font-size: 14px;
        padding: 12px 0;
    }
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #8b9bb3;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-link:hover {
    color: #3b82f6;
}

.footer-description {
    color: #8b9bb3;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #8b9bb3;
    font-weight: 500;
    transition: all 0.3s;
}

.payment-icon:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b9bb3;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: #8b9bb3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #3b82f6;
}

.copyright {
    color: #6b7a8f;
    font-size: 14px;
}

.licenses {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.license-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    color: #8b9bb3;
    text-decoration: none;
    transition: all 0.3s;
}

.license-badge:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.info-text {
    color: #6b7a8f;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 30px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }

    .payment-methods {
        gap: 8px;
    }

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

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.bonus-container {
    max-width: 1400px;
    margin: 0 auto;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.bonus-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bonus-card-1 .bonus-content  {
    max-width: 100%;
}

.bonus-card-1 {
    background: url("../images/banner_1.webp") no-repeat 0 0;
    background-size: cover;
}

.bonus-card-2 {
    background: url("../images/banner_2.webp") no-repeat 0 0;
    background-size: cover;
}

.bonus-card-3 {
    background: url("../images/banner_3.webp") no-repeat 0 0;
    background-size: cover;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L20,0 L20,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/><path d="M25,0 L30,0 L30,100 L25,100 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat-x;
    opacity: 0.3;
}

.bonus-card-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.bonus-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 55%;
}

.bonus-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-bottom: 15px;
}

.bonus-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #fef08a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h1.bonus-title {
    width: 100%;
    font-size: 24px;
}

.bonus-subtitle {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 20px;
}

.bonus-btn {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.bonus-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

@media (max-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .bonus-title {
        font-size: 30px;
    }

    .bonus-card {
        height: 180px;
    }
}

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

    .bonus-card {
        height: 200px;
    }

    .bonus-content {
        max-width: 60%;
    }

    .bonus-card-image {
        width: 40%;
    }

    .bonus-title {
        font-size: 28px;
    }

    .bonus-subtitle {
        font-size: 14px;
    }

    .bonus-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .bonus-card {
        height: 180px;
        padding: 20px;
    }

    .bonus-content {
        max-width: 58%;
    }

    .bonus-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }

    .bonus-title {
        font-size: 24px;
    }

    .bonus-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .bonus-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.header {
    background: #0f1c2a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 20px;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: #3b82f6;
}

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: #8b9bb3;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s;
}

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

header .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    @media (max-width: 640px) {
        display: none;
    }
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-login {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-signup {
    background: #3b82f6;
    color: #fff;
}

.btn-signup:hover {
    background: #2563eb;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #0f1c2a;
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: #8b9bb3;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-actions .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
}

@media (max-width: 1023px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .header-actions {
        display: none;
    }
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    background: #0f1c2a;
    padding: 50px 40px;
    border-radius: 16px;
    line-height: 1.8;
}

.main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.main-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 35px;
    margin-bottom: 18px;
    line-height: 1.4;
}

.main-content p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.8;
}

.main-content ul,
.main-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.main-content ul li,
.main-content ol li {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.7;
    padding-left: 10px;
}

.main-content ul li::marker {
    color: #3b82f6;
}

.main-content ol li::marker {
    color: #3b82f6;
    font-weight: 600;
}

.main-content strong {
    color: #fff;
    font-weight: 600;
}

.main-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

.main-content a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Table Styles */
.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #0a1520;
    border-radius: 12px;
    overflow: hidden;
}

.main-content table thead {
    background: #1e293b;
}

.main-content table th {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-content table td {
    padding: 16px;
    font-size: 15px;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-content table tbody tr {
    transition: background 0.3s;
}

.main-content table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

/* FAQ Styles */
.faq-section {
    margin-top: 50px;
}

.faq-item {
    background: #0a1520;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.faq-icon {
    font-size: 24px;
    color: #3b82f6;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 20px 25px;
}

.faq-answer-content p {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 30px 25px;
    }

    .main-content h2 {
        font-size: 26px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .main-content h3 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .main-content p,
    .main-content ul li,
    .main-content ol li {
        font-size: 15px;
    }

    /* Mobile Table - Scroll Horizontally */
    .main-content .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -25px;
    }

    .main-content table {
        min-width: 600px;
        margin: 0;
    }

    .main-content table th,
    .main-content table td {
        padding: 12px;
        font-size: 13px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 20px 18px 20px;
    }

    .faq-answer-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .main-content {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .main-content h2 {
        font-size: 24px;
    }

    .main-content h3 {
        font-size: 18px;
    }

    .main-content .table-wrapper {
        margin: 20px -20px;
    }
}

.games-section {
    max-width: 100%;
    padding: 0 20px;
    margin: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-all-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.count-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.games-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 190px);
    grid-auto-flow: column;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) rgba(255, 255, 255, 0.05);
}

.games-grid::-webkit-scrollbar {
    height: 8px;
}

.games-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.games-grid::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 10px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.game-card {
    position: relative;
    width: 190px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px 15px 15px;
}

.game-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.game-provider {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.favorite-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.1);
}

.favorite-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.favorite-btn.active .favorite-icon {
    color: #ef4444;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .games-section {
        padding: 0 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .header-controls {
        width: 100%;
        justify-content: space-between;
    }

    .nav-buttons {
        display: none;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, 160px);
        gap: 15px;
    }

    .game-card {
        width: 160px;
        height: 200px;
    }

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

    .game-provider {
        font-size: 10px;
    }

    .favorite-btn {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
    }

    .favorite-icon {
        font-size: 16px;
    }
}