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

.slideshow-container .slides-wrapper {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slideshow-container .slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    background: #1a2633;
}

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

.slide-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    margin: auto;
}

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

.indicator {
    flex: 1;
    height: 0.125rem;
    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 {
    padding: 0.9375rem 0 1.25rem 0;
    text-align: center;
}

/* Desktop Register Section - Hidden on mobile */
.desktop-register-section {
    display: none;
}

.register-btn {
    background: #00FF90;
    border: none;
    color: #0B181B;
    padding: 1rem 3.75rem;
    border-radius: 8px;
    font-size: 1.125rem;
    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: 1.875rem;
    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: 2.5rem;
    height: 2.5rem;
}

/* 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: 1.25rem 1.875rem;
    margin:0 auto 1rem auto;
    display: flex;
    gap: 1rem;
    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: 0.3125rem;
}

.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: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

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

.card-content p {
    color: #ccc;
    font-size: 0.875rem;
    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: 1.5rem;
    height: 1.5rem;
}

/* Trending Games Section */
.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

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

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

.trending-games {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.625rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-right: -1.5rem;
    padding-right: 1.5rem;
}

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

.trending-game {
    border-radius: 12px;
    padding: 1.875rem 1.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 11.25rem;
    min-height: 13.75rem;
    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: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
    margin-bottom: 0.9375rem;
}

.wins-count {
    background: #00FF90;
    color: #0B141B;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9375rem;
    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: 0.625rem;
    overflow-x: auto;
    padding-bottom: 0.625rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-right: -1.5rem;
    padding-right: 1.5rem;
}

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

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

.sports-header {
    display: flex;
    align-items: center;
    gap: 0.1875rem;
    margin-bottom: 0.5rem;
}

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

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

.sports-time {
    color: #898E92;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.team {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    flex: 1;
}

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

.team-name {
    color: #FFFFFF;
    font-size: 0.6875rem;
    font-weight: 500;
}

.bet-description {
    color: #898E92;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-bottom: 0.3125rem;
    text-align: left;
}

.odds-section {
    display: flex;
    gap: 0.1875rem;
    margin-bottom: 0.5rem;
}

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

.odds-number {
    color: #888;
    font-size: 0.5rem;
    font-weight: 400;
}

.odds-value {
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
}

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

/* Refer & Earn Section */
.refer-earn-section {
    border: 1px solid #19212C;
    border-radius: 12px;
    padding: 1.875rem 1.25rem;
    text-align: center;
}

.refer-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 1.25rem 0;
    text-align: center;
}

.refer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #172027;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.625rem;
}

.live-rewards {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
}

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

/* Winners Section */
.winners-header {
    margin-bottom: 1.25rem;
}

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

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

.tab-btn {
    background: #2A2A32;
    border: none;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    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: 0.75rem 1rem;
    align-items: center;
}

.header-cell {
    color: rgba(197, 221, 240, 0.5);
    font-size: 0.8125rem;
    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: 1rem;
    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: 2.5rem;
    height: 2.5rem;
    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: 0.875rem;
    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: 0.9375rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.wager-multiplier {
    color: #888;
    font-size: 0.875rem;
    font-weight: 500;
}

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

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

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

.info-icon {
    width: 1.25rem;
    height: 1.25rem;
    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: 0.75rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.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: 1rem 1.25rem;
    cursor: pointer;
}

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

.faq-chevron {
    width: 1rem;
    height: 1rem;
    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: 12.5rem;
}

.faq-answer p {
    color: #CCCCCC;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0 1.25rem 1rem 1.25rem;
}

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

.learn-more-link {
    text-decoration: none;
    font-size: 1.25rem;
    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;
}

/* Registration Success Modal */
.register-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.register-modal-content {
    position: relative;
    max-width: 43.75rem;
    width: 90%;
    max-height: 50vh;
    padding:21vw 1vw;
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 1px 0 0 #00FF90;
}

.register-modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141E26;
    opacity: 0.91;
    z-index: 1;
}

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

.register-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 1.875rem;
    height: 1.875rem;
    background: #263440;
    border-radius: 4px;
    color: #A2B4D2;
    font-size: 2.5rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.register-modal-left {
    flex: 1;
    position: relative;
    z-index: 3 ;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.register-modal-left-img {
    width: 58vw;
    height: 100%;
    object-fit: contain;
}

.register-modal-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.register-modal-right-img {
    width: 45vw;
    max-height: 100%;
    object-fit: contain;
}

.register-modal-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 2;
}

.register-modal-deposit-btn {
    position: absolute;
    bottom: 5vw;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border: none;
    border-radius: 10px;
    padding: 3vw 5vw;
    color: black;
    font-size: 1rem;
    font-weight:600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    width: 45vw;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .slideshow-container {
        height: 25rem;
    }
    
    .register-section {
        padding: 0.3125rem 0 1.875rem 0;
    }
    
    .register-btn {
        padding: 0.5rem;
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .gaming-card {
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }
    
    .card-icon {
        height: auto;
    }
    
    .card-icon img {
        width: 85%;
        height: auto;
        object-fit: contain;
    }
    
    .card-header h3 {
        font-size: 1.25rem;
    }
    
    .card-content p {
        font-size: 0.8125rem;
    }
    
    .badge {
        padding: 0.1875rem 0.375rem;
    }
    
    .trending-header h2 {
        font-size: 1.25rem;
    }
    
    .trending-games {
        gap: 0.625rem;
    }
    
    .trending-game {
        padding: 0.5rem 0.625rem;
        min-width: 8.3125rem;
        min-height: 10.1875rem;
        justify-content: space-between;
    }
    
    .wins-count {
        font-size: 0.625rem;
        padding: 0.3125rem 0.375rem;
    }
    
    .top-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.625rem;
    }
}

/* ========================================
   TABLET & DESKTOP STYLES
   ======================================== */
@media (min-width: 768px) {
    .slideshow-container {
        height: 23.25vw;
    }

    /* Hide mobile register section on desktop */
    .register-section {
        display: none;
    }

    /* Hide slide text overlay on desktop */
    .slide-text-overlay {
        display: none;
    }

    /* Show desktop register section inside slideshow */
    .desktop-register-section {
        display: block;
        position: absolute;
        top: 50%;
        left: 1.04vw;
        transform: translateY(-50%);
        z-index: 4;
        text-align: left;
        width: auto;
        max-width: 21vw;
        padding: 0;
    }

    .desktop-banner-text {
        width: 100%;
        max-width: 19vw;
        height: auto;
        object-fit: contain;
        margin-bottom: 0.8vw;
    }

    .desktop-register-section .register-btn {
        width: 100%;
        padding: 0.5vw;
        font-size: 1.1vw;
        margin-bottom: 0.8vw;
    }

    .desktop-register-section .social-icons {
        width: 60%;
        margin: 0;
    }

    .desktop-register-section .social-icon img {
        width: 2.2vw;
        height: 2.2vw;
    }

    .gaming-section{
        display:flex;
        background: none;
        gap:1vw;
    }

    .gaming-card{
        flex-basis:50%;
    }

    .card-icon{
        flex-basis:10%;
    }

    .card-icon img{
        width:90%;
    }

    .card-content{
        flex-basis:90%;
    }


    .trending-game{
        padding:0.3vw;
        min-width: 10vw !important;
        min-height: 13vw !important;
        pointer-events: none;
    }

    .card-header h3 {
        font-size: 1.25vw;
    }

    .badge {
        font-size: 0.625vw;
    }

    .card-content p {
        font-size: 0.73vw;
    }

    .top-badge {
        font-size: 0.73vw;
        padding: 0.42vw 0.83vw;
        margin-bottom: 0.78vw;
    }

    .wins-count {
        font-size: 0.78vw;
        padding: 0.42vw 0.83vw;
    }

    .sports-card {
        min-width: 31.25vw;
        max-width: 31.25vw;
    }

    .sports-title {
        font-size: 0.83vw;
    }

    .sports-time {
        font-size: 0.83vw;
    }

    .team-name {
        font-size: 0.78vw;
    }

    .bet-description {
        font-size: 0.73vw;
    }

    .odds-number {
        font-size: 0.52vw;
    }

    .odds-value {
        font-size: 0.83vw;
    }

    .sports-btn {
        font-size: 1.25vw;
        padding: 0.52vw 1.04vw;
    }

    .gaming-card:hover {
        transform: translateY(-0.26vw);
    }

    .gaming-card {
        transition: all 0.3s ease;
    }

    .desktop-register-section .register-btn:hover {
        transform: translateY(-0.26vw);
    }

    .desktop-register-section .register-btn {
        transition: all 0.3s ease;
    }

    .odds-box{
        padding:0.3vw 0.25vw;
    }

    .winners-table{
        width:50%;
        margin:auto;
    }

    .winners-header{
        text-align: center;
    }

    .refer-earn-section{
        background-image: url('/images/refer-earn-section-bg.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .refer-earn-section .register-btn {
        width:50%;
    }

    .refer-earn-section .refer-bottom{
        width:50%;
        margin:auto;
    }

    .wins-count, .top-badge, .sports-title, .sports-time, .matchup, .team, .team-logo, .bet-description, .odds-number, .odds-value{
        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
    }
}

/* Register Modal Responsive Styles */
@media (min-width: 650px) {
    .register-modal-content {
        width: 612px;
        height: 467px;
        padding: 1rem;
    }
    
    .register-modal-left-img {
        width: 60%;
        height: auto;
    }
    
    .register-modal-right-img {
        width: 95%;
    }
    
    .register-modal-deposit-btn {
        width: 335px;
        padding: 1.3rem;
        bottom:25px;
    }
}

