﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a2c38;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 55px;
}

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

/* Header */
.header {
    background-color: #1a2c38;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3B82F6;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #2563EB;
}

.btn-secondary {
    background-color: #2D3748;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #374151;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background-image: url('img/header-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFFFFF;
    line-height: 1.2;
}

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

.social-login {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-login span {
    color: #A0AEC0;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 17px;
    background: radial-gradient(120% 120% at 50% 20%, rgba(64, 80, 97, 0.35), rgba(25, 35, 45, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.social-icon:hover {
    background: radial-gradient(140% 140% at 50% 20%, rgba(72, 88, 107, 0.4), rgba(28, 40, 52, 0.95));
    transform: scale(1.05);
}

.social-icon svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

/* Search Bar */
.search-section {
    padding: 30px 0;
}

.search-bar {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #2D3748;
    border-radius: 12px;
    padding: 0;
    overflow: visible;
}

.category-selector {
    position: relative;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

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

.category-arrow {
    font-size: 12px;
    color: #A0AEC0;
    transition: transform 0.3s ease;
}

.category-selector.active .category-arrow {
    transform: rotate(180deg);
}

.category-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #FFFFFF;
    border-radius: 12px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.category-selector.active .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-arrow {
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #FFFFFF;
}

.dropdown-item {
    padding: 12px 20px;
    color: #1A202C;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #F3F4F6;
}

.search-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.search-icon {
    color: #A0AEC0;
    flex-shrink: 0;
}

.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.search-bar input::placeholder {
    color: #A0AEC0;
}

/* Section Titles */
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
}

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

.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2D3748;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.question-icon {
    background-color: #3B82F6 !important;
    color: #FFFFFF !important;
}

.play-icon {
    background: linear-gradient(135deg, #9aa9bd 0%, #7f90a4 100%);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 6px 12px rgba(10, 20, 30, 0.35);
    position: relative;
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #1a2c38;
    margin-left: 4px;
}

.game-icon {
    background: linear-gradient(135deg, #9aa9bd 0%, #7f90a4 100%);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 6px 12px rgba(10, 20, 30, 0.35);
    position: relative;
}

.game-icon::after {
    content: '';
    position: absolute;
    inset: 10px;
    background: #1a2c38;
    mask: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M5.25 14.75L10.75 9.25L14.25 12.75L18.75 8.25" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M13.5 8.25H18.75V13.5" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') center/contain no-repeat;
}

.sports-icon::before {
    content: '';
}

.gift-icon::before {
    content: '';
}

.question-icon::before {
    content: 'i';
    font-style: italic;
}

/* Start Playing Section */
.start-playing {
    padding: 30px 0;
    display: none;
}

.start-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: stretch;
}

.start-card {
    background-color: #2D3748;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    max-width: 100%;
}


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

.start-card .card-image {
    width: 100%;
    /* height: 280px; */
    position: relative;
    background: linear-gradient(135deg, #1f2d3a 0%, #27394a 100%);
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-card .card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.sport-card .card-image {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    padding: 0;
    margin: 0;
}

.blue-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.green-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, transparent 70%);
}

.start-card .card-info {
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    background-color: #2D3748;
    box-sizing: border-box;
    width: 100%;
}

.start-card .card-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    line-height: 1.2;
}

.player-count {
    color: #10B981;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    line-height: 1.2;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Games Carousel */
.trending-games,
.trending-sports,
.promotions {
    padding: 20px 0;
}

.carousel-controls {
    display: inline-flex;
    background-color: #2D3748;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-top: 4px;
}

.carousel-controls::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.1);
}

.carousel-btn {
    width: 40px;
    height: 32px;
    border: none;
    background-color: transparent;
    color: #A0AEC0;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.carousel-btn.prev-btn {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.carousel-btn.next-btn {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.games-carousel,
.sports-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #2D3748 transparent;
}

.promotions-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #2D3748 transparent;
}

.games-carousel::-webkit-scrollbar,
.sports-carousel::-webkit-scrollbar,
.promotions-carousel::-webkit-scrollbar {
    height: 8px;
}

.games-carousel::-webkit-scrollbar-track,
.sports-carousel::-webkit-scrollbar-track,
.promotions-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.games-carousel::-webkit-scrollbar-thumb,
.sports-carousel::-webkit-scrollbar-thumb,
.promotions-carousel::-webkit-scrollbar-thumb {
    background-color: #2D3748;
    border-radius: 4px;
}

.game-card {
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc((100% - 105px) / 8);
    max-width: 135px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sport-card {
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc((100% - 105px) / 8);
    max-width: 135px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-card:hover,
.sport-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.game-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.game-info,
.sport-info {
    padding: 10px 1px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-card .players,
.sport-card .players {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.game-card .players .status-dot,
.sport-card .players .status-dot {
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Promotions */
.promotion-card {
    background-color: #2D3748;
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    height: 200px;
}

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

.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FFFFFF;
    color: #000000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.promo-text {
    padding: 50px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.promo-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.promo-text p {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 15px;
}

.promo-image {
    width: 45%;
    height: 85%;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
}

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

/* Recent Bets */
.recent-bets {
    padding: 60px 0;
}

.bets-tabs {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 0px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(8, 28, 40, 0.9);
}

.tab-btn {
    padding: 12px 26px;
    background: transparent;
    color: #8FA6BE;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tab-btn.active {
    background: #1a2c38;
    color: #FFFFFF;
    box-shadow: 0 12px 24px rgba(6, 24, 36, 0.45);
}

.tab-btn:hover:not(.active) {
    color: #C9DAF1;
}

.bets-table {
    border-radius: 22px;
    padding: 20px;
    /* background: rgba(8, 25, 36, 0.65); */
    /* backdrop-filter: blur(6px); */
    /* border: 1px solid rgba(255, 255, 255, 0.04); */
    overflow-x: auto;
}

.bets-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.bets-table thead {
    background: transparent;
}

.bets-table th {
    padding: 0 22px 6px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #8FA6BE;
    text-transform: uppercase;
}

.bets-table td {
    padding: 18px 22px;
    font-size: 15px;
    color: #F8FAFF;
}

.bets-table tbody tr td:first-child {
    border-radius: 16px 0 0 16px;
}

.bets-table tbody tr td:last-child {
    border-radius: 0 16px 16px 0;
}

.bets-table tbody tr {
    background-color: transparent;
    box-shadow: none;
}

.bets-table tbody tr:nth-child(even) {
    background-color: #213743;
}

.bets-table tbody tr:hover {
    filter: brightness(1.05);
    background-color: #264357;
}

.game-icon-small {
    margin-right: 12px;
    font-size: 20px;
}

.payout {
    font-weight: 600;
}

.payout.positive {
    color: #2ECC71;
}

.payout.negative {
    color: #F97316;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-list {
    width: 100%;
}

.faq-item {
    background-color: #2D3748;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-arrow {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: none;
}

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

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

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #FFFFFF;
    line-height: 1.8;
    font-size: 14px;
}

.faq-answer p u {
    text-decoration: underline;
    color: #FFFFFF;
}

/* Footer */
.footer {
    background-color: #071d2a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-column ul {
    list-style: none;
}

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

.footer-link {
    color: #C6DAF5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-link--external::after {
    content: '\2197';
    font-size: 12px;
    opacity: 0.65;
}

.footer-link--external:hover::after {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    color: #A0AEC0;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-legal {
    font-size: 12px !important;
    max-width: 800px;
    margin: 0 auto 15px !important;
}

.gambling-link {
    color: #3B82F6;
    text-decoration: none;
}

.gambling-link:hover {
    text-decoration: underline;
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 25px 0;
}

.btc-price {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
}

.language-selector {
    background-color: #2D3748;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.stake-logo-large {
    display: flex;
    align-items: center;
}

.logo-img-large {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.gcb-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.gcb-badge {
    background-color: #10B981;
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.gcb-logo span {
    font-size: 12px;
    color: #A0AEC0;
}

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

    .header-content {
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
    }

    .header-buttons {
        gap: 10px;
        flex-shrink: 0;
    }

    .btn {
        padding: 8px 15px;
        font-size: 13px;
        white-space: nowrap;
    }

    .hero h1 {
        font-size: 32px;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 14px;
    }

    .start-playing {
        display: block;
    }

    .start-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        align-items: stretch;
    }

    .start-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .card-image {
        /* height: 200px; */
        width: 100%;
        overflow: hidden;
        background: linear-gradient(135deg, #1f2d3a 0%, #27394a 100%);
    }

    .card-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .card-info {
        padding: 10px 15px;
        flex: 1;
    }

    .card-info h3 {
        font-size: 18px;
    }

    .player-count {
        font-size: 14px;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .carousel-controls {
        margin-top: 0;
    }

    .games-carousel,
    .sports-carousel,
    .promotions-carousel {
        gap: 12px;
    }

    .game-card,
    .sport-card {
        width: calc((100% - 24px) / 3);
        height: 200px;
        min-width: 0;
    }

    .game-image {
        height: 140px;
    }

    .sport-image {
        height: 100%;
    }

    .game-info {
        padding: 10px 15px;
    }

    .game-card .players {
        font-size: 11px;
    }

    .promotions-carousel {
        display: flex;
        grid-template-columns: none;
        gap: 15px;
    }

    .promotion-card {
        min-width: 100%;
        flex-shrink: 0;
        width: 100%;
    }

    .promo-image {
        width: 45%;
    }

    .bets-table {
        overflow-x: scroll;
    }

    .bets-table table {
        min-width: 800px;
    }

    .bets-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: 120px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .footer-logos {
        flex-direction: column;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .logo-img {
        height: 32px;
    }

    .header-buttons {
        gap: 8px;
    }

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

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .games-carousel,
    .sports-carousel,
    .promotions-carousel {
        gap: 10px;
    }

    .game-card,
    .sport-card {
        width: calc((100% - 20px) / 3);
        height: 180px;
    }

    .promotions-carousel {
        display: flex;
        grid-template-columns: none;
        gap: 15px;
    }

    .promotion-card {
        min-width: calc(100% - 30px);
        flex-shrink: 0;
        width: calc(100% - 30px);
    }

    .promo-image {
        width: 45%;
    }

    .game-image {
        height: 120px;
    }

    .sport-image {
        height: 100%;
    }

    .game-info {
        padding: 8px 12px;
    }

    .game-card .players {
        font-size: 10px;
    }
}