body {
    margin: 0;
    background: #0c0f1a;
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #1f2233;
    color: white;
    padding: 8px;
    font-size: 14px;
}

/* NAVBAR */
.main-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: black;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-icon {
    font-size: 22px;
    color: white;
    cursor: pointer;
    display: none;
    /* Hidden on desktop */
}

.logo {
    height: 40px;
}

/* BUTTONS */
.nav-right .btn {
    border-radius: 12px;
    padding: 6px 14px;
    font-weight: 600;
    border: none;
}

.demo {
    background: #ff6a2a;
    color: white;

}

.signup {
    background: #00e676;
    color: black;
}

.login {
    background: #ff6a2a;
    color: white;
}

.demo:hover {
    color: white;
    background-color: #ff6a2a;
}

.signup:hover {
    color: rgb(0, 0, 0);
    background-color: #00e676;
}

.login:hover {
    color: white;
    background-color: #ff6a2a;
}

/* MOBILE STRIP */
.mobile-strip {
    display: none;
    background: #00e676;
    /* Bright Green */
    color: white;
    text-align: center;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    margin: 5px;
}

.mobile-strip marquee {
    margin-bottom: -4px;
    /* Fix vertical alignment */
}


/* MENU BAR */
.menu-bar {
    background: black;
    color: white;
    display: flex;
    gap: 18px;
    padding: 10px;
    overflow-x: auto;
    white-space: nowrap;

    -ms-overflow-style: none;

    scrollbar-width: none;

}

.menu-bar::-webkit-scrollbar {
    display: none;
}

.menu-bar a {
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* ===== CAROUSEL ===== */
.carousel-inner img {
    border-radius: 8px;

    max-height: 200px;
    object-fit: cover;
}


/* ===== GAME CARDS ===== */
.game-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-2px);
}

.game-card span {
    font-weight: bold;
    font-size: 14px;
}

.game-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Game Card Colors */
.gradient-purple {
    background: linear-gradient(90deg, #8a2be2, #ba55d3);
}

.gradient-blue {
    background: linear-gradient(90deg, #00b4db, #0083b0);
}

.gradient-orange {
    background: linear-gradient(90deg, #f2994a, #f2c94c);
}

.gradient-pink {
    background: linear-gradient(90deg, #e056fd, #be2edd);
}

.gradient-teal-blue {
    background: linear-gradient(90deg, #0cebeb, #20e3b2, #29ffc6);
}

.gradient-cyan {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.gradient-magenta {
    background: linear-gradient(to right, #da22ff, #9733ee);
}

/* Adjusted based on visual, typical for 'Casino Lobby' usually purple/pink */
.gradient-orange-dark {
    background: linear-gradient(90deg, #ff512f, #dd2476);
}

.gradient-sky {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.gradient-purple-light {
    background: linear-gradient(90deg, #b721ff, #21d4fd);
}

.gradient-orange-red {
    background: linear-gradient(90deg, #f46b45, #eea849);
}


/* ===== SIDEBAR STYLES ===== */
.sidebar {
    width: 260px;
    height: 100vh;
    background: #171b29;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.3s ease;
    border-right: 1px solid #2a3042;

    -ms-overflow-style: none;

    scrollbar-width: none;

}


.sidebar::-webkit-scrollbar {
    display: none;
}

.main-content {
    margin-left: 260px;
    transition: all 0.3s ease;
    padding-bottom: 20px;
}

/* Utility for pages without sidebar */
.no-sidebar .main-content {
    margin-left: 0 !important;
}

.sidebar-header {
    padding: 15px 20px;
    background: #0c0f1a;
    text-align: center;
}

.sidebar-logo {
    height: 45px;
}

.search-box {
    padding: 15px 20px;
    position: relative;
}

.search-box input {
    width: 100%;
    background: #0c0f1a;
    border: 1px solid #2a3042;
    padding: 10px 10px 10px 35px;
    border-radius: 8px;
    color: #fff;
    outline: none;
}

.search-box i {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a7699;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #b1bad3;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: 0.2s;
}

.sidebar-menu li a:hover {
    background: #1f2334;
    color: #fff;
    border-left: 3px solid #00e676;
}

.sidebar-menu li a span i {
    width: 25px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {

    .top-bar {
        display: none;
    }

    .mobile-strip {
        display: block;
    }

    .logo {
        height: 32px;
    }

    .nav-right .btn {
        padding: 5px 12px;

        font-size: 13px;
    }

    /* Sidebar Mobile */
    .sidebar {
        left: -260px;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
    }

    .main-content.sidebar-active {
        margin-left: 0;
        /* Keep it 0 on mobile even when active */
    }

    .menu-icon {
        display: block;

    }

    .nav-logo {
        display: block;

    }

    .nav-right {
        display: flex;
        gap: 5px;
    }

}

/* Custom Grid for 5 items per row on large screens */
@media (min-width: 992px) {
    .col-md-custom-5 {
        width: 20%;
        flex: 0 0 auto;
    }

    .col-md-custom-6 {
        width: 16.666667%;
        flex: 0 0 auto;
    }
}

/* Hide scrollbar for game rows */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== SPORTS SECTION ===== */
.sports-card {
    background: #0f121b;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}

.sports-card:hover {
    transform: translateY(-2px);
}

.sports-img-container {

    width: 100%;
    aspect-ratio: 3/4;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sports-img {
    height: 100%;
    width: 100%;
    object-fit: fill;

    transition: transform 0.3s ease;
}

.sports-card:hover .sports-img {
    transform: scale(1.05);
}

.sports-title {
    background: #0f121b;
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sports Backgrounds */
.bg-sports-blue {
    background: linear-gradient(to top, #4050ff, #7f8aff);
}

.bg-sports-yellow {
    background: linear-gradient(to top, #ffe100, #fff066);
}

.bg-sports-red {
    background: linear-gradient(to top, #ff4b4b, #ff7f7f);
}

.bg-sports-darkblue {
    background: linear-gradient(to top, #1a2a4a, #2f3e66);
}

.bg-sports-teal {
    background: linear-gradient(to top, #00cbaa, #4de3cb);
}

@media(min-width: 769px) {
    .nav-logo {
        display: none;

    }
}

/* ===== PROVIDERS SECTION ===== */
.provider-card {
    background: #111422;

    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 3/2;

}





.provider-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;


}

/* ===== TUTORIALS SECTION ===== */
.tutorial-card {
    background: #000;
    border: 1px solid #ff6a2a;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tutorial-card:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 106, 42, 0.3);
}

.tutorial-card:hover .tutorial-text {
    color: red;
}

.tutorial-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    transition: color 0.3s ease;
}

.tutorial-icon {
    color: white;
    font-size: 14px;
}

html {
    scroll-behavior: smooth;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background-color: #000;
    color: #6c757d;
}

.footer-logo {
    height: 50px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff6a2a;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.fa-facebook {
    color: #1877f2;
}

.fa-instagram {
    color: #e4405f;
}

.fa-telegram {
    color: #0088cc;
}

.fa-youtube {
    color: #ff0000;
}

.fa-twitter {
    color: #1da1f2;
}

.btn-chat {
    border: 1px solid #ff6a2a;
    color: #ff6a2a;
    background: transparent;
    border-radius: 20px;
    padding: 8px 40px;
    font-weight: bold;
    transition: all 0.3s;
}

/* ===== SIDEBAR BOTTOM BUTTONS ===== */
.sidebar-social-btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin: 10px 15px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.sidebar-social-btn:hover {
    transform: scale(1.02);
    color: white;
}

.sidebar-social-btn i {
    font-size: 24px;
    margin-right: 12px;
}

.btn-whatsapp {
    background: linear-gradient(90deg, #25d366, #128c7e);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-telegram {
    background: linear-gradient(90deg, #0088cc, #005f8f);
}

.sidebar-social-btn .social-icon-circle {
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #333;
}

/* ===== LATEST POSTS SECTION ===== */
.latest-posts-container {
    padding: 0 15px;
    margin-bottom: 40px;
}

.section-title {
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.post-item {
    background: #111422;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    border: 1px solid #2a3042;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-title {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.btn-read-more {
    background: #ff6a2a;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-read-more:hover {
    background: #e55a1e;
}

.post-content {
    display: none;
    margin-top: 20px;
    color: #b1bad3;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #2a3042;
    padding-top: 15px;
}

.post-content.active {
    display: block;
}

@media (max-width: 576px) {
    .post-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-read-more {
        align-self: flex-end;
    }
}

/* Rich Content Styles for Expanded Posts */
.post-content h3 {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.post-content h4 {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.post-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.post-content li {
    margin-bottom: 10px;
    color: #b1bad3;
}

.post-content li strong {
    color: white;
}

/* ALL CASINOS PAGE SPECIFIC STYLES */

.category-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #000;
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 60px;
    z-index: 99;
    border-bottom: 1px solid #1a1e2e;
}

.category-filter-bar::-webkit-scrollbar {
    display: none;
}

.search-icon-btn {
    background: #111422;
    color: #fff;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #2a3042;
    cursor: pointer;
    flex-shrink: 0;
}

.category-tab {
    background: #111422;
    color: #b1bad3;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid #2a3042;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.category-tab:hover,
.category-tab.active {
    background: #1f2334;
    color: #fff;
    border-color: #00e676;
    transform: translateY(-2px);
}

.category-tab i {
    font-size: 16px;
}

.category-tab.active i {
    color: #00e676;
}

/* Game Sections Header */
.game-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px 15px;
}

.game-section-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.see-more-link {
    color: #6a7699;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.see-more-link:hover {
    color: #fff;
}

.see-more-link i {
    font-size: 12px;
    transition: transform 0.2s;
}

.see-more-link:hover i {
    transform: translateY(2px);
}

/* Horizontal Game List */
.game-row-container {
    padding: 0 15px;
}

.game-list-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
}

.game-list-row::-webkit-scrollbar {
    display: none;
}

.game-item-card {
    flex: 0 0 150px;
    border-radius: 15px;
    overflow: hidden;
    background: #111422;
    position: relative;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-item-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.game-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive columns scaling */
@media (min-width: 768px) {
    .game-item-card {
        flex: 0 0 180px;
    }
}

@media (min-width: 1200px) {
    .game-item-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .category-filter-bar {
        top: 52px;
        /* Adjusted for smaller navbar */
        padding: 10px;
    }

    .game-section-title {
        font-size: 18px;
    }
}

/* POPULAR GAMES GRID STYLES */
.game-grid-container {
    padding: 20px 15px;
}

.game-grid-card {
    border-radius: 12px;
    overflow: hidden;
    background: #111422;
    aspect-ratio: 4/3;
    /* Matching the screenshot's rectangular look better than 1/1 */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.game-grid-card:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.game-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Cards */
.contact-card-container {
    background: #0d111d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #1c2132;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}

.contact-card:hover {
    background: #272d42;
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 24px;
    color: #ff4d4d;
}

.contact-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.license-info {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

/* ===== NEW PROMO SECTION STYLES ===== */
.promo-section {
    background: #000;
    padding: 40px 20px;
}

.promo-heading {
    font-size: 28px;
    letter-spacing: 0.5px;
}

.promo-info p,
.promo-info a {
    color: #fff !important;
    font-size: 16px;
    line-height: 1.6;
}

.btn-magic-id {
    background: #c86b00;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-magic-id:hover {
    background: #e67e22;
    color: white;
}

.promo-banner-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
}

.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.promo-logo {
    height: 35px;
}

.banner-text-overlay h2 {
    font-size: 24px;
    margin: 10px 0;
}

.promo-url {
    background: #ff6a2a;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

/* Floating Visit Button removed */

@media (max-width: 768px) {
    .promo-heading {
        font-size: 20px;
    }

    .banner-text-overlay h2 {
        font-size: 18px;
    }
}

/* ===== ABOUT TABLE SECTION STYLES ===== */
.app-heading-box {
    background: #000;
    border: 1px solid #333;
}

.about-table {
    width: 100%;
    color: white;
    border-collapse: collapse;
    border: 1px solid #333;
}

.about-table td {
    padding: 12px 15px;
    border: 1px solid #333;
    font-size: 15px;
}

.about-table .label-col {
    width: 40%;
    font-weight: bold;
    font-size: 18px;
    background: #111;
}

.about-table .label-col i {
    width: 25px;
    margin-right: 10px;
}

.label-col .fa-star {
    color: #ffc107;
}

.label-col .fa-scroll {
    color: #d2b48c;
}

.label-col .fa-globe {
    color: #00bcd4;
}

.label-col .fa-bullseye {
    color: #ff5252;
}

.label-col .fa-mobile-screen {
    color: #4fc3f7;
}

.label-col .fa-calendar-days {
    color: #ff7043;
}

.label-col .fa-credit-card {
    color: #ffca28;
}

.label-col .fa-trophy {
    color: #ffd54f;
}

.label-col .fa-handshake {
    color: #ffa726;
}

@media (max-width: 768px) {
    .about-table .label-col {
        font-size: 15px;
        width: 45%;
    }

    .about-table td {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ===== REGISTRATION GUIDE SECTION STYLES ===== */
.step-card {
    background: #000;
    border: 2px solid #ff6a2a;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateX(5px);
}

.step-number {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.step-content h5 {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.step-card:hover .step-content h5 {
    color: #e65100;
    /* Dark orange */
}

.step-content p {
    color: #b1bad3;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .step-card {
        padding: 15px;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
    }

    .step-content h5 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }
}

/* ===== LOGIN PROCEDURE SECTION STYLES ===== */
.login-step-card {
    background: #000;
    border: 2px solid #e65100;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.3);
}

.login-step-number {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.login-step-number img {
    width: 100%;
    height: auto;
}

.login-step-card h5 {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.login-step-card:hover h5 {
    color: #e65100;
}

.login-step-card p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .login-step-card {
        padding: 20px 15px;
    }
}

/* ===== BETTING STEPS SECTION STYLES ===== */
.betting-step-card {
    background: #000;
    border: 2px solid #e65100;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.betting-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.3);
}

.betting-step-icon {
    width: 60px;
    flex-shrink: 0;
}

.betting-step-icon img {
    width: 100%;
    height: auto;
}

.betting-step-card h5 {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.betting-step-card:hover h5 {
    color: #e65100;
}

.betting-step-card p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .betting-step-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }

    .betting-step-icon {
        width: 50px;
    }
}

/* ===== FEATURE SECTION STYLES ===== */
.feature-card {
    background: #000;
    border: 2px solid #e65100;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-card h5 {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover h5 {
    color: #e65100;
}

.feature-card p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ===== GAME INFO SECTION STYLES ===== */
.game-info-card {
    background: #000;
    border: 1px solid #e65100;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.2);
}

.game-info-img-box {
    width: 120px;
    flex-shrink: 0;
}

.game-info-img-box img {
    width: 100%;
    border-radius: 8px;
    height: auto;
}

.game-info-content h4 {
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 12px;
}

.game-info-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .game-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .game-info-img-box {
        width: 100px;
    }
}

/* ===== PAYMENT OPTIONS MARQUEE STYLES ===== */
.payment-marquee-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.payment-marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.payment-icon-card {
    background: #fff;
    border-radius: 15px;
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    padding: 20px;
    flex-shrink: 0;
}

.payment-icon-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4 - 30px * 4));
    }
}

/* ===== TESTIMONIALS SECTION STYLES ===== */
.testimonial-marquee-container {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    width: 100%;
}

.testimonial-marquee-content {
    display: flex;
    width: max-content;
    animation: testimonial-slide 20s infinite;
    /* Adjusted speed for steps */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: 380px;
    padding: 40px 30px;
    margin-right: 40px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-author {
    color: #b1bad3;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: bold;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-stars i {
    margin: 0 2px;
}

@keyframes testimonial-slide {

    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-420px);
    }

    /* Card 1 + Gap */
    50%,
    70% {
        transform: translateX(-840px);
    }

    /* Card 2 + Gap */
    75%,
    95% {
        transform: translateX(-1260px);
    }

    /* Card 3 + Gap */
    100% {
        transform: translateX(-1680px);
    }

    /* Card 4 + Gap (Seamless loop) */
}


/* ===== FAQ SECTION STYLES ===== */
.faq-header-bar {
    background-color: #1a1b20;
    margin-bottom: 20px;
}

.faq-accordion .accordion-item {
    background-color: #0b0b0b;
    border: 1px solid #e65100;
    margin-bottom: 12px;
    border-radius: 8px !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: #0b0b0b;
    color: white;
    font-weight: bold;
    padding: 18px 25px;
    box-shadow: none;
    border: none;
    font-size: 16px;
    text-align: left;
}

.faq-accordion .accordion-button::after {
    content: '+';
    background-image: none;
    width: auto;
    height: auto;
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
    transform: none;
    margin-left: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '-';
    transform: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #e65100;
    background-color: #0b0b0b;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    background-color: #0b0b0b;
    color: #b1bad3;
    padding: 0 25px 25px 25px;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive adjustment for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: 30px 20px;
        margin-right: 20px;
    }

    @keyframes testimonial-slide {

        0%,
        20% {
            transform: translateX(0);
        }

        25%,
        45% {
            transform: translateX(-320px);
        }

        50%,
        70% {
            transform: translateX(-640px);
        }

        75%,
        95% {
            transform: translateX(-960px);
        }

        100% {
            transform: translateX(-1280px);
        }
    }
}

/* ===== DEPOSIT & WITHDRAWAL SECTION STYLES ===== */
.promo-info .sub-heading-orange {
    color: #f47e3f;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.promo-info ul.custom-list {
    list-style-type: none;
    padding-left: 0;
}

.promo-info ul.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.promo-info ul.custom-list li::before {
    content: "•";
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}