:root {
    --primary-orange: #ff6a00;
    --text-black: #000000;
    --text-gray: #8d8d8d;
    --bg-white: #ffffff;
    --container-shadow: rgba(176, 201, 204, 0.92) 0px 30px 50px 0px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    background: linear-gradient(rgba(243, 238, 238, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.main-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-container {
    background: var(--bg-white);
    border-radius: 50px !important;
    box-shadow: var(--container-shadow);
    overflow: hidden;
    padding: 20px 40px 40px;
}

/* =========================================
   Header & Navigation Styles
   ========================================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 20px;
    position: relative;
    z-index: 100;
}

.logo img {
    height: 40px;
    margin-left: 20px;
}

/* Desktop Navigation */
.nav-list {
    /*display: flex;*/
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 22px 0px;
    transition: color 0.3s;
}

.nav-item.active .nav-link {
    color: var(--text-black) !important;
}

/* The Orange Tab (Active Desktop Item) */
.nav-item.active::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 60px;
    background-size: contain;
    display: flex;
    z-index: 10;
}



.mobile-slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 60px;
    display: block;
}

.mobile-slide-menu.show {
    transform: translateX(0);
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-backdrop.show {
    display: block;
    opacity: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu-item {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;

}

.mobile-menu-item:hover {
    background: #f8f9fa;
    color: var(--primary-orange);
}

.mobile-login-btn {
    background-color: var(--text-black);
    color: white !important;
    text-align: center;
    border-radius: 5px;
    margin: 10px 20px;
    padding: 10px 0;
}

.mobile-login-btn:hover {
    background-color: #333;
    color: var(--primary-orange) !important;
}





/* =========================================
   Banner Section Styles
   ========================================= */
.banner-section {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

/* Carousel Indicators Override */
.carousel-indicators {
    gap: 8px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    border: none;
    opacity: 0.2;
    margin: 0;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-indicators .active-orange {
    background-color: var(--primary-orange) !important;
    opacity: 1;
}


/* =========================================
   Live Dealers & Games Section Styles
   ========================================= */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-black);
}

.game-card {
    border-radius: 15px;
    display: block;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
}

/* Play Icon Overlay */
.play-icon-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    cursor: pointer;
}

.play-icon-btn img {
    height: 14px;
    opacity: 0.8;
}

/* Vertical Badges (Andar/Bahar) */
.badge-vertical {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    color: white;
    z-index: 10;
}

.badge-andar {
    right: 25px;
    background-color: #ffc107;
    color: black;
}

.badge-bahar {
    right: 5px;
    background-color: #dc3545;
}

/* Promo Card Styles */
.promo-card {
    background: #4a148c;
    border-radius: 15px;
    border: 2px solid white;
}



/* =========================================
   Footer Styles
   ========================================= */
.footer {
    background-color: #f8f9fa;
    /* Light gray background matching image */
    font-size: 0.85rem;
    color: #333;
}

.footer-warning {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #555;
}

.footer-operator {
    font-size: 0.9rem;
}

.footer-link {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
}

.footer-link:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -10px;
    /* Adjust spacing */
    color: #ccc;
    font-weight: normal;
}

.footer-links {
    gap: 20px !important;
    /* Override gap-3 */
}




/* =========================================
   Mobile Media Queries (Max-Width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .glass-container {
        padding: 15px 20px 20px;
        border-radius: 40px !important;
    }

    .nav-list {
        /*display: none;*/
        /* Hide desktop nav */
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 20px;
        top: 15px;
        width: 40px;
        height: 40px;
        z-index: 100;
        cursor: pointer;
        padding: 0;
        background: none;
    }

    .mobile-menu-icon {
        width: 30px;
        height: 30px;
        stroke: var(--text-black);
    }
}