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

button {
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
    border: none;
}

.no-highlight{
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}

a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0B141B;
    color: white;
    line-height: 1.4;
}

.bottom-nav{
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
    border: none;
}

/* Global section padding */
.section-container {
    padding: 15px 24px;
}

/* App Banner Styles */
.app-banner {
    background-color: #0B181B;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    font-weight: 400;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-btn {
    background: url('images/close-btn.png') no-repeat center;
    background-size: contain;
    border: none;
    width: 16px;
    height: 16px;
    cursor: pointer;
    padding: 0;
}

.banner-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.banner-right {
    display: flex;
    align-items: center;
}

.download-btn {
    background: transparent;
    border: 1px solid #00FF90;
    color: #00FF90;
    padding: 6px 10px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.download-icon {
    background: url('images/dl-btn.png') no-repeat center;
    background-size: contain;
    width: 16px;
    height: 16px;
    display: inline-block;
}

/* Main Navigation Styles */
.main-nav {
    background-color: #0B181B;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    min-width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-right {
    display: flex;
    gap: 12px;
}

.login-btn {
    background: transparent;
    border: 1px solid #00FF90;
    color: #00FF90;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.join-btn {
    background: #00FF90;
    border: none;
    color: #0B181B;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    height: 37px;
    width: 100px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 174, 0.3), 0 3px 0 #02B085, inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slideshow Banner Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B181B 0%, #1a1a1a 50%, #0B181B 100%);
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide.active {
    display: block;
}




/* Slide Indicators */
.slide-indicators {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    display: flex;
    gap: 4px;
    z-index: 3;
    height: 2px;
    padding: 0 6px;
}

.indicator {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 1px;
}

.indicator.active {
    background: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(0, 255, 136, 0.7);
}

/* Register Section Styles */
.register-section {
    background-color: #0B181B;
    padding: 15px 0 20px 0;
    text-align: center;
}

.register-btn {
    background: #00FF90;
    border: none;
    color: #0B181B;
    padding: 16px 60px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 174, 0.3), 0 5px 0 #03D59A, inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    letter-spacing: 0;
    position: relative;
    width: 90%;
}


.social-icons {
    display: flex;
    justify-content: center;
    width:60%;
    margin:auto;
}

.social-icon {
    display: flex;
    flex-basis: 25%;
    justify-content: center;
    align-items: center;
}

.social-icon img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}


/* Gaming Categories Section */
.gaming-section {
    background-color: #0B181B;
}

.gaming-card {
    background: radial-gradient(ellipse at top left, rgba(0, 255, 144, 0.36) 0%, #2A2A32 65%);
    border-radius: 12px;
    padding: 20px 30px;
    margin:0 auto 16px auto;
    display: flex;
    gap: 16px;
   
    cursor: pointer;
    

 
}

.card-icon {
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    flex-basis: 18%;
    padding-top: 5px;
}

.card-icon img {
    width: 85%;
    height: auto;
    object-fit: contain;
}



.card-content {
    flex-basis: 80%;
    min-width: 0;
}

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

.card-header h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    margin-right: 12px;
}

.badge {
    background: rgba(0, 255, 144, 0.16);
    color: rgba(0, 255, 144, 1);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: auto;
}

.card-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.card-arrow {
    color: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-arrow svg {
    width: 24px;
    height: 24px;
}



/* Trending Games Section */


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

.trending-header h2 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.view-all-btn {
    background: none;
    color: #00FF90;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.trending-games {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-right: -24px;
    padding-right: 24px;
}

.trending-games::-webkit-scrollbar {
    display: none;
}

.trending-game {
    border-radius: 12px;
    padding: 30px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 180px;
    min-height: 220px;
    flex-shrink: 0;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aviator-card {
    background-image: url('images/webp/aviator.webp');
}

.spins-card {
    background-image: url('images/webp/spins.webp');
}

.aztec-card {
    background-image: url('images/webp/aztec.webp');
}

.bonanza-card {
    background-image: url('images/webp/bonanza.webp');
}

.top-badge {
    background: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
    margin-bottom: 15px;
}


.wins-count {
    background: #00FF90;
    color: #0B141B;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.5);
    letter-spacing: 0.5px;
}



/* Trending Sports Section */

.sports-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-right: -24px;
    padding-right: 24px;
}

.sports-cards::-webkit-scrollbar {
    display: none;
}

.sports-card {
    background: #141E26;
    border-radius: 8px;
    padding: 5px;
    min-width: 250px;
    max-width: 250px;
    flex-shrink: 0;
    border: 1px solid #354959;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sports-header {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
}

.sports-icon {
    width: 12px;
    height: 12px;
    background: url('images/sports-logo.png') no-repeat center;
    background-size: contain;
}

.sports-title {
    color: #898E92;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.sports-time {
    color: #898E92;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 8px;
}

.team {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.team-logo {
    width: 15px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
    object-fit: contain;
}

.team-name {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 500;
}


.bet-description {
    color: #898E92;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}

.odds-section {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

.odds-box {
    background: #263440;
    border: 1px solid #354959;
    border-radius: 3.29px;
    padding: 3px 4px;
    text-align: center;
    flex: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.odds-number {
    color: #888;
    font-size: 8px;
    font-weight: 400;
   
}

.odds-value {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
}

.sports-btn {
    background: #263440;
    border: none;
    color: #FFFFFF;
    padding: 7px 14px;
    border-radius: 3.29px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}




/* Mobile Responsive */
@media (max-width: 480px) {
    .app-banner {
        padding: 10px 12px;
    }
    
    .banner-text {
        font-size: 13px;
    }
    
    .download-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .main-nav {
        padding: 12px;
    }
    
    .logo {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 70px;
    }
    
    .login-btn, .join-btn {
        padding: 8px 14px;
        font-size: 13px;
        width: 90px;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .slideshow-container {
        height: 400px;
    }
    
    
    .register-section {
        padding: 5px 0 30px 0;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    
    .gaming-card {
        padding: 16px 24px;
        gap: 12px;
    }
    
    .card-icon {
        height: auto;
    }
    
    .card-icon img {
        width: 85%;
        height: auto;
        object-fit: contain;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .card-content p {
        font-size: 13px;
    }
    
    .badge {
        padding: 3px 6px;
    }

    
    .trending-header h2 {
        font-size: 20px;
    }
    
    .trending-games {
        gap: 10px;
    }
    
    .trending-game {
        padding: 8px 10px;
        min-width: 133px;
        min-height: 163px;
        justify-content: space-between;
    }
    
    .wins-count {
        font-size: 10px;
        padding: 5px 6px;
    }
    
    .top-badge {
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 10px;
    }
    
}

/* Refer & Earn Section */
.refer-earn-container {
    padding: 15px 24px;
}

.refer-earn-section {
    border: 1px solid #19212C;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
}

.refer-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-align: center;
}


.refer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #172027;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 10px;
}

.live-rewards {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.results-not-found {
    color: #898E92;
    font-size: 14px;
    font-weight: 400;
}

/* Winners Section */

.winners-header {
    margin-bottom: 20px;
}

.winners-title {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.winners-tabs {
    display: inline-flex;
    margin-top: 12px;
    background: #2A2A2A;
    border-radius: 4.76px;
    overflow: hidden;
}

.tab-btn {
    background: #2A2A32;
    border: none;
    color: #FFFFFF;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.tab-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.tab-btn:last-child {
    border-radius: 0 6px 6px 0;
}

.tab-btn.active {
    background: #00FF90;
    color: #2A2A32;
}

.tab-btn:hover:not(.active) {
    background: #2A2A32;
}

.winners-table {
    border-radius: 8px;
    overflow: hidden;
}

.table-headers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.2fr;
    padding: 12px 16px;
    align-items: center;
}

.header-cell {
    color: rgba(197, 221, 240, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.winners-list {
    display: flex;
    flex-direction: column;
}

.winner-entry {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.2fr;
    align-items: center;
    padding: 16px;
    border-radius:4px;
    background: rgba(197, 221, 240, 0.05);
    margin: 5px 0px;
}

.winner-entry:last-child {
    border-bottom: none;
}

.winner-entry:nth-child(4) {
    opacity: 0.4;
}

.winner-entry:nth-child(5) {
    opacity: 0.2;
}

.player-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.player-identifier {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.wager-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wager-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wager-amount {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
}

.wager-multiplier {
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.game-type {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-name {
    color: #00FF90;
    font-size: 15px;
    font-weight: 500;
}

.info-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: rgba(197, 221, 240, 0.4);
    border: 2px solid rgba(197, 221, 240, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* FAQ Section */

.faq-title {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
}

.question-text {
    color: #929AAA;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

.faq-chevron {
    width: 16px;
    height: 16px;
    background: url('images/drop-down.png') no-repeat center;
    background-size: contain;
    margin-left: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    color: #CCCCCC;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0 20px 16px 20px;
}

.faq-footer {
    text-align: center;
    margin-top: 20px;
}

.learn-more-link {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.learn-more-text {
    color: #00FF90;
    transition: color 0.3s ease;
}

.blog-text {
    color: #CCCCCC;
}

.learn-more-link:hover .learn-more-text {
    color: #00E676;
}

/* Payment Methods Section */
.payment-section {
    padding: 20px 0px;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-top: 1px solid #263440;
    border-bottom: 1px solid #263440;
}

.payment-methods {
    overflow: hidden;
    width: 100%;
}

.payment-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.payment-methods::-webkit-scrollbar {
    display: none;
}

.payment-item {
    flex-shrink: 0;
    min-width: calc(100vw / 2.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Provider Section */
.provider-section {
    padding: 20px 0px;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1px solid #263440;
}

.provider-methods {
    overflow: hidden;
    width: 100%;
}

.provider-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.provider-methods::-webkit-scrollbar {
    display: none;
}

.provider-item {
    flex-shrink: 0;
    min-width: calc(100vw / 2.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Footer Section */
.footer {
    background-color: #0B141B;
    padding: 40px 24px;
    width: 100%;
    padding-bottom: 130px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Top Section */
.footer-top {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-text {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-separator {
    width: 1px;
    height: 30px;
    background-color: #CCCCCC;
}

.footer-social-icons {
    display: flex;
    gap: 3px;
    width:100%;
}

.footer-social-icon {
    flex-basis: 16.6%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-social-icon img {
    width: 100%;
    height: auto;
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    border-radius:50%;
}

.footer-social-icon:hover {
    transform: scale(1.1);
}

/* Footer Middle Section */
.footer-middle {
    margin-bottom: 40px;
}

.footer-description {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 20px 0;
}
.language-selector-container{
    width:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.language-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 150px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
    border: none;
    text-decoration: none;
}

.language-selector:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2F3E4A;
    border-radius: 8px;
    padding: 0;
    margin-top: 4px;
    width: 150px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
}

.language-dropdown.show {
    max-height: 160px;
    padding: 4px 0;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    cursor: pointer;
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.language-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.language-chevron {
    color: #FFFFFF;
    font-size: 12px;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    gap: 80px;
}

.footer-column {
    flex: 1;
}

.column-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFFFFF;
}

/* Register Page Styles */
.register-page {  
    position: relative;
    overflow-x: hidden;
    
    background: linear-gradient(to bottom, 
    rgba(12, 28, 32, 1) 0%,
    rgba(11, 20, 27, 1) 90%
    );
}

/* Register Page Slideshow Banner */
.register-slideshow {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.register-slideshow .slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.register-slideshow .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.register-slideshow .slide.active {
    display: block;
}

.register-slideshow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, 
        rgba(11, 25, 30, 0) 0%,
        rgba(11, 25, 30, 0.3) 15%,
        rgba(11, 25, 30, 0.5) 30%,
        rgba(11, 25, 30, 0.7) 60%,
        rgba(11, 25, 30, 0.8) 80%,
        rgba(11, 25, 30, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Register Page Form Container */
.register-form-container {
    padding: 32px 24px;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 3;
    margin-top: -23%;

}

.register-form-title {
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Register Page Registration Tabs */
.register-tabs {
    display: flex;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1A1A1A;
}

.register-tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background-color: #1A1A1A;
    color: #888;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius:8px;
}


.register-tab-btn.active {
    background-color: #00FF90;
    color: #0B141B;
    z-index: 2;
}

.register-tab-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.6) contrast(100%);
}

.register-tab-btn.active .tab-icon-image {
    filter: brightness(0) saturate(100%) invert(8%) sepia(23%) saturate(809%) hue-rotate(144deg) brightness(99%) contrast(100%);
}

/* Register Page Form Fields */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.register-form-group {
    position: relative;
}

.register-referral-input {
    margin-top: 10px;
    animation: slideDown 0.3s ease-out;
}

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

.register-form-input {
    width: 100%;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    border:none;
}

.register-form-input:focus {
    outline: none;
    border-color: #00ff88;
}

.register-form-input::placeholder {
    color: #888;
}

/* Register Page Phone Input with Flag */
.register-phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 0 16px;
}

.register-phone-input-container:focus-within {
    border-color: #00ff88;
}

.register-country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
    border-right: 1px solid white;
    cursor: pointer;
}

.register-flag-icon {
    width: 20px;
    height: 15px;
    background: url('images/games/us-flag.png') no-repeat center;
    background-size: contain;
}

.register-country-arrow {
    color: #888;
    font-size: 12px;
}

.register-phone-input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    padding: 16px 0 16px 12px;
    font-family: inherit;
}

.register-phone-input::placeholder {
    color: #888;
}

/* Register Page Password Input with Eye Icon */
.register-password-input-container {
    position: relative;
}

.register-password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-icon {
    width: 16px;
    height: 16px;
    color: white;
}

.register-password-strength {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 2px;
}

.register-strength-dot {
    width: 8px;
    height: 8px;
    background-color: #888;
    border-radius: 50%;
}


/* Register Page Checkbox Styles */
.register-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 5px 0;
}

.register-checkbox {
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.register-checkbox.checked {
    background-color: #00ff88;
    border-color: #00ff88;
}

.register-checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0B141B;
    font-size: 12px;
    font-weight: bold;
}

.register-checkbox-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.register-agreement-link {
    color: #7AFF7A;
}

/* Register Page Register Button */
.register-main-btn {
    width: 100%;
    padding: 12px 60px;
    background: #00FF90;
    border: none;
    color: #0B181B;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 174, 0.3), 0 5px 0 #03D59A, inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    margin: 10px 0;
    letter-spacing: 0;
    position: relative;
}

.register-main-btn:hover {
    background-color: #00cc66;
}

/* Register Page Divider */
.register-divider {
    display: flex;
    align-items: center;
    margin: 24px auto;
    color: white;
    font-size: 14px;
    width:90%;
}

.register-divider::before,
.register-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #D9D9D9;
}

.register-divider span {
    padding: 0 16px;
}

/* Register Page Social Login Buttons */
.register-social-login {
    display: flex;
    gap: 5px;
    justify-content: center;
    width:90%;
    margin:auto;
}

.register-social-btn {
    background-color: rgba(217, 217, 217, 0.1);
    border-radius: 2.89px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-basis:25%;
}

.register-social-btn:hover {
    background-color: #333;
    border-color: #555;
}

.register-social-icon {
    width: 20px;
    height: 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Register Page Form Visibility */
.register-email-form {
    display: none;
}

.register-phone-form {
    display: flex;
}

/* Bottom Navigation Styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
   
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    /* iOS Safari fix */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 16px;
    border-radius: 50px;
    min-width: 60px;
    justify-content: flex-end;
}

.active-outer-circle {
    position: absolute;
    bottom: 38%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: #1a1a1a;
    border-radius: 50%;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-inner-circle {
    background-color: #2c2c32;
    border-radius: 50px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
}

.nav-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.nav-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: auto;
}

.nav-label {
    color: #929AAA;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

/* Icon specific styles */
.menu-icon {
    color: #00FF90;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hamburger-line {
    width: 20px;
    height: 3px;
    background-color: #999;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-middle {
    background-color: #00FF90;
}


.wallet-icon {
    width:40px;
    height: auto;   
}

/* Hover animations for bottom nav */
.nav-item:hover .nav-icon {
    transform: translateY(-2px) scale(1.1);
    transition: all 0.3s ease;
}

.nav-item:hover .nav-label {
    color: #00FF90;
    transition: color 0.3s ease;
}

.nav-item:hover .hamburger-line {
    background-color: #00FF90;
    transition: all 0.3s ease;
}

.nav-item:hover .hamburger-middle {
    background-color: #00FF90;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-image {
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

/* Special hover for wallet with active circle */
.nav-item:has(.active-outer-circle):hover .wallet-icon {
    transform: translateY(-2px) scale(1.1);
    transition: all 0.3s ease;
}

.nav-item:has(.active-outer-circle):hover .active-inner-circle {
    background-color: #3c3c42;
    transition: all 0.3s ease;
}

/* Sports Tournament Section */
.sports-tournament-wrapper {
    position: relative;
    overflow: hidden;
}

.sports-tournament-section {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 13px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sports-tournament-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.8));
    pointer-events: none;
    z-index: 1;
}

.sports-tournament-section::-webkit-scrollbar {
    display: none;
}

.tournament-text {
    display: flex;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 15px;
    background-color: #202A39;
    border-radius: 25px;
    cursor: pointer;
    flex-shrink: 0;
    letter-spacing: 4px;
    gap: 10px;
}

.tournament-icon {
    width: 16px;
    height: 16px;
}

.tournament-text:first-child {
    margin-left: 15px;
}

/* Sportsbook Slideshow - Smaller Size */
.sportsbook-slideshow {
    height: 300px;
}

.sportsbook-slideshow .slide-image {
    height: 300px;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    padding: 15px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    gap: 15px;
}

.stats-buttons {
    display: flex;
    gap: 8px;
    flex-basis: 35%;
}

.dropdown-container {
    display: flex;
    flex-basis: 65%;
    padding-left:5%;
    position: relative;
}

.stat-button {
    display: flex;
    align-items: center;
    background-color: #141E26;
    border-radius: 24px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    border:1px solid #354859;
}

.stat-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}


.stat-number {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.dropdown-button {
    flex: 1;
    justify-content: space-between;
    background-color: #263440 !important;
}

.stat-text {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #999;
    transition: transform 0.3s ease;
}

.dropdown-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #141E26;
    border: 1px solid #354859;
    border-radius: 12px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-item {
    padding: 12px 15px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #354859;
}

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

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

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

/* Sportsbook Layout */
.sportsbook-layout {
    display: flex;
    flex-direction: column;
    padding: 10px 24px 20px;
}

.sportsbook-search-bar {
    display: flex;
    align-items: center;
    background-color: #263440;
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #354959;
}

.sportsbook-search-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sportsbook-search-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.sportsbook-search-input {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    outline: none;
    flex: 1;
    width: 100%;
}

.sportsbook-search-input::placeholder {
    color: white;
}

.sportsbook-content {
    display: flex;
    padding:20px 0px 0px 0px;
}

.sportsbook-sidebar {
    width: 23%;
    padding: 0px 0px 15px 0px;
}

.sportsbook-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sportsbook-category {
    display: flex;
    align-items: center;
    padding: 8px 5px;
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    background-color:#232b31;
    height: 40px;
    min-height: 40px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.sportsbook-category:hover {
    background-color: #2a2a2a;
}

.sportsbook-category.active {
    border: 1px solid #00FF90;
}

.sportsbook-category.active .sportsbook-category-icon {
    /* Filter to convert to #00FF90 */
    filter: brightness(0) saturate(100%) invert(85%) sepia(21%) saturate(6621%) hue-rotate(95deg) brightness(102%) contrast(102%);
}

.sportsbook-category-logo {
    flex-shrink: 0;
}

.sportsbook-category-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.sportsbook-category-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sportsbook-category-name {
    color: white;
    font-size: 10px;
    font-weight: 500;
}

.sportsbook-main-content {
    width: 82%;
    padding: 0px 0px 15px 15px;
}

.sportsbook-match-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.sportsbook-match-card {
    background: #141E26;
    border-radius: 8px;
    padding: 10px 15px 10px 10px;
    width:100%;
    flex-shrink: 0;
    border: 1px solid #354959;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sportsbook-match-header {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
}

.sportsbook-match-icon {
    width: 12px;
    height: 12px;
    background: url('../images/sports-logo.png') no-repeat center;
    background-size: contain;
}

.sportsbook-match-title {
    color: #898E92;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.sportsbook-match-time {
    color: #898E92;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sportsbook-team-matchup {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.sportsbook-team {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    line-height: 2;
}

.sportsbook-team-logo {
    width: 24px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
    object-fit: contain;
}

.sportsbook-team-name {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
}

.sportsbook-bet-type {
    color: #898E92;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}

.sportsbook-betting-odds {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.sportsbook-odds-button {
    background: #263440;
    border: 1px solid #354959;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    flex: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sportsbook-odds-number {
    color: #888;
    font-size: 12px;
    font-weight: 400;
}

.sportsbook-odds-value {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.sportsbook-match-btn {
    background: #263440;
    border: none;
    color: #FFFFFF;
    padding: 7px 14px;
    border-radius: 3.29px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

/* Show All Button */
.sportsbook-show-all-container {
    display: flex;
    justify-content: center;
    width:70%;
    margin:auto;
}

.sportsbook-show-all-btn {
    background: #263440;
    border: 1px solid #354959;
    color: #FFFFFF;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    width:100%;
}

.sportsbook-show-all-btn:hover {
    background: #2a2a2a;
    border-color: #00FF90;
}

/* Games Layout - Duplicate of Sportsbook */
.games-slideshow {
    height: 300px;
}

.games-slideshow .slide-image {
    height: 300px;
    object-fit: cover;
}

.games-layout {
    display: flex;
    flex-direction: column;
    padding: 10px 24px 20px;
}

.games-search-bar {
    display: flex;
    align-items: center;
    background-color: #263440;
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #354959;
}

.games-search-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.games-search-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.games-search-input {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    outline: none;
    flex: 1;
    width: 100%;
}

.games-search-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.games-content {
    display: flex;
    padding:20px 0px 0px 0px;
}

.games-sidebar {
    width: 23%;
    padding: 0px 0px 15px 0px;
}

.games-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.games-category {
    display: flex;
    align-items: center;
    padding: 8px 5px;
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    background-color:#232b31;
    height: 40px;
    min-height: 40px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.games-category:hover {
    background-color: #2a2a2a;
}

.games-category.active {
    border: 1px solid #00FF90;
}

.games-category.active .games-category-icon {
    /* Filter to convert to #00FF90 */
    filter: brightness(0) saturate(100%) invert(85%) sepia(21%) saturate(6621%) hue-rotate(95deg) brightness(102%) contrast(102%);
}

.games-category-logo {
    flex-shrink: 0;
}

.games-category-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.games-category-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.games-category-name {
    color: white;
    font-size: 10px;
    font-weight: 500;
}

.games-main-content {
    width: 82%;
    padding: 0px 0px 15px 7.5px;
    border-left: 2px solid #354959;
    margin-left:7.5px;
}

.games-section-title {
    color: #515D66;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: left;
}

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

.game-card {
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.game-card:hover {
    border-color: #00FF90;
    box-shadow: 0 4px 12px rgba(0, 255, 144, 0.1);
}

.game-card .hot-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #FF4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 1;
}

.game-card .game-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 130px;
}

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

.game-card .game-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

.games-match-card {
    background: #141E26;
    border-radius: 8px;
    padding: 10px 15px 10px 10px;
    width:100%;
    flex-shrink: 0;
    border: 1px solid #354959;
    cursor: pointer;
    transition: all 0.3s ease;
}

.games-match-header {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
}

.games-match-icon {
    width: 12px;
    height: 12px;
    background: url('../images/sports-logo.png') no-repeat center;
    background-size: contain;
}

.games-match-title {
    color: #898E92;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.games-match-time {
    color: #898E92;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.games-team-matchup {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.games-team {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    line-height: 2;
}

.games-team-logo {
    width: 24px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
    object-fit: contain;
}

.games-team-name {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
}

.games-bet-type {
    color: #898E92;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}

.games-betting-odds {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.games-odds-button {
    background: #263440;
    border: 1px solid #354959;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    flex: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.games-odds-number {
    color: #888;
    font-size: 12px;
    font-weight: 400;
}

.games-odds-value {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.games-match-btn {
    background: #263440;
    border: none;
    color: #FFFFFF;
    padding: 7px 14px;
    border-radius: 3.29px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

/* Show All Button */
.games-show-all-container {
    display: flex;
    justify-content: center;
    width:70%;
    margin:auto;
}

.games-show-all-btn {
    background: #263440;
    border: 1px solid #354959;
    color: #FFFFFF;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    width:100%;
}

.games-show-all-btn:hover {
    background: #2a2a2a;
    border-color: #00FF90;
}

/* Casino Section */
.casino-section {
    padding: 16px 24px;
}

.casino-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.casino-icon {
    display: flex;
    align-items: center;
}

.casino-icon-bg {
    width: 40px;
    height: 40px;
    background: #00FF90;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 255, 174, 0.3), 0 3px 0 #02B085, inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.casino-card-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: relative;
}

.casino-card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: #00FF90;
    border-radius: 50%;
}

.casino-card-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 2px;
    height: 2px;
    background: #00FF90;
    border-radius: 50%;
}

.casino-text {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.casino-arrow {
    display: flex;
    align-items: center;
}

.casino-arrow-bg {
    width: 32px;
    height: 32px;
    background: #263440;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.casino-arrow-bg:hover {
    background: #2a2a2a;
}

.casino-arrow-icon {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
}

/* Logged In Navigation Styles */
.logged-in-nav {
    background: #0B141B;
    padding: 16px 24px;
    border-bottom: 1px solid #354959;
}

.logged-in-nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logged-in-nav .nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logged-in-nav .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logged-in-nav .wallet-section {
    display: flex;
    align-items: center;
    background: #263440;
    border: 1px solid #354959;
    border-radius: 8px;
    padding-bottom:2px;
}

.logged-in-nav .balance-btn {
    background: #263440;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.logged-in-nav .flag-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.logged-in-nav .balance-text {
    color: #00FF90;
    font-size: 14px;
    font-weight: 600;
}

.logged-in-nav .dropdown-arrow {
    color: #888;
    font-size: 12px;
}

.logged-in-nav .deposit-btn {
    background: #00FF90;
    border: none;
    color: #0B181B;
    padding: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    width: 40px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 174, 0.3), 0 3px 0 #02B085, inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logged-in-nav .wallet-log-icon {
    width: 16px;
    height: 16px;
}

.logged-in-nav .notification-btn {
    background: #263440;

    border-radius: 8px;
    padding: 8px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.logged-in-nav .notification-btn:hover {
    background: #2a2a2a;
}

.logged-in-nav .bell-icon {
    width: 15px;
    height: 15px;
}

.logged-in-nav .user-section {
    display: flex;
    align-items: center;
}

.logged-in-nav .profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #00FF90;
    object-fit: cover;
}

/* Slots Navigation Styles */

/* Originals Section Styles */
.originals-search-bar {
    display: flex;
    align-items: center;
    background-color: #263440;
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #354959;
}

.originals-search-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.originals-search-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.originals-search-input {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    outline: none;
    flex: 1;
    width: 100%;
}

.originals-search-input::placeholder {
    color: white;
}

.originals-main-content{
    padding-top:20px;
}

.originals-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.originals-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.original-game-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.original-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 144, 0.2);
}

.originals-load-more-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.originals-load-more-btn {
    background: #263440;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.originals-status-separator {
    width: 45%;
    height: 3px;
    background: #263440;
    border-radius:24px;
}

.originals-status-text {
    color: #8F949C;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.originals-title {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}

/* Slots Section Styles */
.slots-search-bar {
    display: flex;
    align-items: center;
    background-color: #263440;
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #354959;
}

.slots-search-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slots-search-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.slots-search-input {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    outline: none;
    flex: 1;
    width: 100%;
}

.slots-search-input::placeholder {
    color: white;
}

.slots-main-content{
    padding-top:20px;
}

.slots-load-more-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.slots-load-more-btn {
    background: #263440;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.slots-load-more-btn:hover {
    background: #2a2a2a;
    border-color: #00FF90;
}

.slots-status-separator {
    width: 45%;
    height: 3px;
    background: #263440;
    border-radius:24px;
}

.slots-status-text {
    color: #8F949C;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Recently Played Section */
.recently-played-section {
    background-color: #263440;
    padding: 15px 24px;
}

.recently-played-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: left;
}

.recently-played-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.recently-played-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recently-played-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 144, 0.2);
}

.slots-title {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}

.slots-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.filter-dropdown {
    flex: 1;
}

.filter-button {
    background: #263440;
    border: 1px solid #354959;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover {
    background: #2a2a2a;
    border-color: #00FF90;
}

.filter-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}



.slots-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.slot-game-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 144, 0.2);
}

.hot-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #FF4444;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}







