/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alatsi&display=swap');

/* Global Styles */
* {
    font-family: 'Urbanist', sans-serif;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: #060d0d;
    margin: 0;
    padding: 0;
    color: white;
}

/* ===== NAVBAR STYLES (Reused from homepage) ===== */
.navbar-template4 {
    position: relative;
    z-index: 100;
    background-color: #000304;
}

.navbar-container {
    padding: 12px 8px;
}

@media (min-width: 768px) {
    .navbar-container {
        padding: 24px;
    }
}

.navbar-logo {
    height: auto;
    width: 120px;
}

.navbar-icon-btn {
    position: relative;
    display: flex;
    height: 50px;
    width: 50px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    transition: transform 0.2s ease;
    padding: 0;
}

.navbar-icon-btn:hover {
    transform: scale(1.05);
}

.navbar-icon {
    height: 22px;
    width: 22px;
    transition: all 0.2s ease;
}

.navbar-icon-btn:hover .navbar-icon {
    filter: brightness(0) invert(1);
}

.navbar-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    height: 16px;
    min-width: 16px;
    place-items: center;
    border-radius: 50%;
    background-color: #55BC55;
    padding: 0 4px;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    color: black;
}

/* Navbar Tooltip */
.navbar-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.navbar-tooltip {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    top: 100%;
    left: 50%;
    margin-top: 8px;
}

.navbar-tooltip-wrapper:hover .navbar-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition-delay: 200ms;
}

.navbar-tooltip-content {
    border-radius: 8px;
    background: white;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: #111827;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.navbar-tooltip-arrow {
    position: absolute;
    height: 0;
    width: 0;
    border: 4px solid transparent;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: white;
}

.btn-outline-hover {
    display: flex;
    width: 130px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #060D0D;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: ease-out 0.5s;
    box-shadow: inset 0 0 0 0 #55bc55;
}

.btn-outline-hover:hover {
    color: white !important;
    box-shadow: inset 0 -100px 0 0 #55bc55 !important;
}

.btn-outline-hover:active {
    transform: scale(0.9);
}

.btn-filled-hover {
    position: relative;
    display: flex;
    width: 130px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 5px;
    border: 2px solid #55BC55;
    background-color: #55BC55;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    overflow: hidden;
}

.btn-filled-hover::after {
    content: ' ';
    width: 0%;
    height: 100%;
    background: rgba(19, 145, 19, 0.8);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: 1;
}

.btn-filled-hover:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-filled-hover span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.wallet-dropdown-wrapper {
    position: relative;
}

.wallet-btn {
    display: flex;
    height: 50px;
    width: 200px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
}

.wallet-btn:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.wallet-icon {
    height: 24px;
    width: 24px;
}

.wallet-amount {
    flex: 1;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.wallet-dropdown-icon {
    height: 12px;
    width: 12px;
    transition: transform 0.2s ease;
}

.wallet-dropdown-wrapper.active .wallet-dropdown-icon {
    transform: rotate(180deg);
}

.wallet-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1000;
    width: 200px;
    border-radius: 0;
    background-color: rgba(3, 199, 44, 0.3);
    padding: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
}

.wallet-dropdown-wrapper.active .wallet-dropdown-menu {
    display: block;
}

.wallet-dropdown-menu-inner {
    background-color: #000304;
    border-radius: 0;
    padding: 10px;
}

.wallet-dropdown-item {
    display: block;
    padding: 8px 12px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(90, 178, 90, 0.5);
    transition: background-color 0.2s ease;
}

.wallet-dropdown-item:hover {
    background-color: #55BC55;
    color: black;
}

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

.user-menu-wrapper {
    position: relative;
}

.user-menu-btn {
    display: flex;
    height: 50px;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
}

.user-menu-btn:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.user-initial {
    display: inline-flex;
    height: 29px;
    width: 29px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #55BC55;
    font-size: 12px;
    color: white;
}

.user-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-icon {
    height: 12px;
    width: 12px;
    transition: transform 0.2s ease;
}

.user-menu-wrapper.active .user-menu-icon {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1000;
    width: 150px;
    display: none;
}

.user-menu-wrapper.active .user-menu-dropdown {
    display: block;
}

.user-menu-dropdown-outer {
    background-color: rgba(3, 199, 44, 0.3);
    border-radius: 0;
    padding: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.user-menu-dropdown-inner {
    background-color: #000304;
    border-radius: 0;
    padding: 10px;
}

.user-menu-dropdown-items {
    border-radius: 7px;
    background-color: #000304;
    padding: 1px;
    overflow: hidden;
    border: 1px solid #5AB25A;
}

.user-menu-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #5AB25A;
    padding: 8px 12px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

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

.user-menu-item:hover {
    background-color: #55BC55;
}

.user-menu-item:hover span {
    color: black;
}

.user-menu-item-icon {
    height: 20px;
    width: 20px;
    transition: all 0.2s ease;
}

.user-menu-item:hover .user-menu-item-icon {
    transform: scale(1.1);
    filter: brightness(0);
}

.user-menu-item span {
    font-size: 12px;
    color: white;
    transition: color 0.2s ease;
}

.language-switcher-mobile {
    position: relative;
}

.lang-btn-mobile {
    display: flex;
    height: 40px;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: transparent;
    padding: 0 4px;
    cursor: pointer;
}

.lang-flag {
    height: 14px;
    width: 20px;
}

.lang-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.lang-dropdown-icon {
    height: 12px;
    width: 12px;
    transition: transform 0.2s ease;
}

.language-switcher-mobile.active .lang-dropdown-icon {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1001;
    min-width: 150px;
    display: none;
}

.language-switcher-mobile.active .language-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #5AB25A;
    padding: 8px 12px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: #55BC55;
}

.lang-option:hover span {
    color: black;
}

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

.lang-option span {
    font-size: 12px;
    color: white;
    transition: color 0.2s ease;
}

.mobile-menu-btn {
    position: relative;
    display: flex;
    height: 40px;
    width: 45px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: transparent;
    color: white;
    transition: color 0.2s ease;
    padding: 0;
}

.mobile-menu-btn:hover {
    color: #03c72c;
}

.mobile-menu-icon {
    height: 20px;
    width: 20px;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    max-width: 80vw;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: black;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.mobile-drawer-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer-header {
    padding: 16px;
}

.mobile-drawer-title {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.mobile-drawer-close {
    display: flex;
    height: 32px;
    width: 32px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: #55BC55;
    color: black;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
}

.mobile-drawer-close:hover {
    transform: rotate(90deg);
}

.close-icon {
    height: 20px;
    width: 20px;
}

.mobile-auth-buttons {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.mobile-auth-container {
    border-radius: 0;
    background-color: black;
    padding: 12px;
}

.mobile-user-section {
    border-bottom: 1px solid rgba(3, 199, 44, 0.3);
    padding: 16px;
}

.user-menu-wrapper-mobile {
    position: relative;
    width: 100%;
}

.user-menu-btn-mobile {
    display: flex;
    height: 50px;
    width: 100%;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
}

.user-menu-btn-mobile:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.user-name-mobile {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.user-menu-dropdown-mobile {
    position: absolute;
    right: 0;
    left: 0;
    top: calc(100% + 8px);
    z-index: 1000;
    display: none;
}

.user-menu-wrapper-mobile.active .user-menu-dropdown-mobile {
    display: block;
}

.user-menu-dropdown-mobile-outer {
    background-color: rgba(3, 199, 44, 0.3);
    border-radius: 0;
    padding: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.user-menu-dropdown-mobile-inner {
    background-color: #000304;
    border-radius: 0;
    padding: 10px;
}

.user-menu-dropdown-mobile-items {
    border-radius: 7px;
    background-color: #000304;
    padding: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.user-menu-dropdown-mobile-items .user-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.mobile-menu-items {
    padding: 0 0 16px 0;
}

.mobile-menu-item {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    gap: 12px;
    border-radius: 0;
    border-bottom: 1px solid rgba(3, 199, 44, 0.3);
    padding: 16px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    transition: background-color 0.2s ease;
}

.mobile-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-item-icon-wrapper {
    display: flex;
    height: 32px;
    width: 32px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-item-icon {
    height: 28px;
    width: 28px;
    transition: all 0.2s ease;
}

.mobile-menu-item:hover .mobile-menu-item-icon {
    filter: brightness(0) invert(1);
}

.mobile-menu-item-text {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.mobile-menu-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    height: 16px;
    min-width: 16px;
    place-items: center;
    border-radius: 50%;
    background-color: #55BC55;
    padding: 0 4px;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    color: black;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding: 16px;
}

.mobile-apk-section {
    position: relative;
    margin-bottom: 32px;
}

.mobile-apk-text-overlay {
    position: absolute;
    top: 22%;
    left: 5%;
    z-index: 10;
    text-align: center;
}

.mobile-apk-title {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    color: white;
}

.mobile-apk-image {
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mobile-logout-section {
    border-top: 1px solid rgba(100, 86, 189, 0.33);
    padding-top: 16px;
}

.btn-logout-mobile {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #55BC55;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    transition: all 0.2s ease;
    border: none;
}

.btn-logout-mobile:hover {
    background-color: #4aa84a;
}

.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.overlay-backdrop.active {
    display: block;
}

/* ===== LIVE CASINO HERO SECTION ===== */
.live-casino-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 8px;
}

@media (min-width: 768px) {
    .live-casino-hero {
        padding: 0 24px;
    }
}

.live-casino-hero-desktop {
    position: relative;
    width: 100%;
}

.live-casino-hero-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.live-casino-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.live-casino-hero-title {
    font-family: 'Alatsi', sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

@media (min-width: 1024px) {
    .live-casino-hero-title {
        font-size: 55px;
    }
}

.live-casino-hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 24px;
}

@media (min-width: 640px) {
    .live-casino-hero-subtitle-wrapper {
        margin-top: 24px;
    }
}

.live-casino-hero-icon {
    display: flex;
    height: 24px;
    width: 24px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .live-casino-hero-icon {
        height: 28px;
        width: 28px;
    }
}

.live-casino-hero-icon-img {
    height: auto;
    width: 100%;
}

.live-casino-hero-subtitle {
    font-family: 'Alatsi', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

@media (min-width: 640px) {
    .live-casino-hero-subtitle {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .live-casino-hero-subtitle {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .live-casino-hero-subtitle {
        font-size: 20px;
    }
}

.live-casino-hero-mobile {
    position: relative;
    width: 100%;
}

.live-casino-hero-content-mobile {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 32px;
}

.live-casino-hero-title-mobile {
    font-family: 'Alatsi', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.live-casino-hero-subtitle-mobile {
    font-family: 'Alatsi', sans-serif;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

@media (min-width: 640px) {
    .live-casino-hero-subtitle-mobile {
        font-size: 16px;
    }
}

/* ===== LIVE CASINO CONTENT SECTION ===== */
.live-casino-content {
    padding: 32px 8px 0 8px;
}

@media (min-width: 768px) {
    .live-casino-content {
        padding: 32px 0 0 0;
    }
}

.live-casino-header {
    margin-bottom: 24px;
}

.live-casino-header-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.live-casino-header-title {
    font-family: 'Alatsi', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .live-casino-header-title {
        font-size: 30px;
    }
}

.live-casino-header-divider {
    height: 2px;
    flex: 1;
    background-color: #5AB25A;
    margin-left: 8px;
}

/* ===== LIVE CASINO PROVIDERS GRID ===== */
.live-casino-providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

@media (min-width: 640px) {
    .live-casino-providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .live-casino-providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .live-casino-providers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.live-casino-provider-card {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.live-casino-provider-card:hover {
    transform: translateY(-4px);
}

.live-casino-provider-image {
    position: relative;
    background-color: transparent;
}

.live-casino-provider-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.live-casino-provider-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    background-color: rgba(85, 188, 85, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-casino-provider-card:hover .live-casino-provider-overlay {
    opacity: 1;
}

.live-casino-provider-play {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-casino-provider-card:hover .live-casino-provider-play {
    opacity: 1;
}

.live-casino-play-btn {
    display: flex;
    height: 48px;
    width: 48px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #000000;
    transition: all 0.2s ease;
    padding: 0;
}

@media (min-width: 640px) {
    .live-casino-play-btn {
        height: 64px;
        width: 64px;
    }
}

.live-casino-play-btn:hover {
    border-color: rgba(3, 199, 44, 0.5);
}

.live-casino-play-icon {
    height: 16px;
    width: 16px;
    color: rgba(3, 199, 44, 0.3);
}

@media (min-width: 640px) {
    .live-casino-play-icon {
        height: 24px;
        width: 24px;
    }
}

.live-casino-provider-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.live-casino-provider-pattern::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 1px solid #a78bfa;
}

.live-casino-provider-pattern::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 1px solid #a78bfa;
}

.live-casino-provider-name {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    pointer-events: none;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
    .live-casino-provider-name {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .live-casino-provider-name {
        font-size: 24px;
    }
}

/* ===== LIVE CASINO BOTTOM BANNER ===== */
.live-casino-bottom-banner {
    margin-top: 0;
}

.live-casino-bottom-banner-container {
    position: relative;
    overflow: hidden;
}

.live-casino-bottom-banner-desktop {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.live-casino-bottom-banner-mobile {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.live-casino-bottom-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 16px;
    padding-right: 0;
}

@media (min-width: 768px) {
    .live-casino-bottom-banner-content {
        align-items: center;
        justify-content: flex-end;
        padding-top: 0;
        padding-right: 64px;
    }
}

.live-casino-bottom-banner-text {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.live-casino-bottom-banner-title {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .live-casino-bottom-banner-title {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .live-casino-bottom-banner-title {
        font-size: 50px;
    }
}

.live-casino-bottom-banner-amount-wrapper {
    position: relative;
    margin-bottom: 8px;
}

.live-casino-bottom-banner-svg {
    height: 48px;
    width: 100%;
}

@media (min-width: 768px) {
    .live-casino-bottom-banner-svg {
        height: 64px;
    }
}

@media (min-width: 1024px) {
    .live-casino-bottom-banner-svg {
        height: 80px;
    }
}

.live-casino-bottom-banner-amount {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .live-casino-bottom-banner-amount {
        font-size: 35px;
    }
}

@media (min-width: 1024px) {
    .live-casino-bottom-banner-amount {
        font-size: 50px;
    }
}

.live-casino-bottom-banner-subtitle {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 8px;
    color: white;
}

@media (min-width: 768px) {
    .live-casino-bottom-banner-subtitle {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .live-casino-bottom-banner-subtitle {
        font-size: 18px;
    }
}

/* ===== SUBNVBAR (ANNOUNCEMENT SECTION) ===== */
.subnavbar-template4 {
    position: relative;
    z-index: 1;
    background-color: #000304;
    padding: 0 8px;
}

@media (min-width: 768px) {
    .subnavbar-template4 {
        padding: 0 24px;
    }
}

.subnavbar-container {
    z-index: 1;
    margin-bottom: 16px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background: #060D0D;
    padding: 8px;
}

@media (min-width: 768px) {
    .subnavbar-container {
        margin-bottom: 0;
        padding: 12px;
    }
}

/* Desktop Layout */
.subnavbar-desktop-grid {
    grid-template-columns: 650px 1fr;
    align-items: center;
}

.subnavbar-announcement-wrapper {
    display: flex;
    justify-content: flex-start;
}

.subnavbar-announcement-pill {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    border-radius: 9999px;
    padding: 8px 16px 8px 0;
    color: #5AB25A;
    transition: color 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.subnavbar-announcement-pill:hover {
    color: white;
}

.subnavbar-announce-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.subnavbar-divider {
    height: 16px;
    width: 1px;
    flex-shrink: 0;
    background: #5AB25A;
}

.subnavbar-marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
}

.subnavbar-marquee-content {
    white-space: nowrap;
    word-wrap: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    padding-right: 50px;
    flex-shrink: 0;
    min-width: max-content;
}

.subnavbar-marquee-content span {
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 640px) {
    .subnavbar-marquee-content span {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .subnavbar-marquee-content span {
        font-size: 14px;
    }
}

.subnavbar-marquee-duplicate {
    display: none;
}

.subnavbar-right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.subnavbar-time-display {
    display: flex;
    height: 35px;
    align-items: center;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .subnavbar-time-display {
        height: 30px;
    }
}

.subnavbar-time-text {
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .subnavbar-time-text {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .subnavbar-time-text {
        font-size: 14px;
    }
}

.subnavbar-language-wrapper {
    background: #060D0D;
    display: flex;
    height: 40px;
    align-items: center;
    border-radius: 6px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    padding: 0 4px;
    color: white;
    transition: box-shadow 0.3s;
}

.subnavbar-language-wrapper:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.language-switcher-desktop {
    position: relative;
}

.lang-btn-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
}

.lang-btn-desktop img.lang-flag {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-btn-desktop .lang-label {
    font-size: 14px;
    font-weight: 500;
}

.lang-btn-desktop .lang-dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.language-switcher-desktop.active .lang-dropdown-icon {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1000;
    width: 150px;
    display: none;
}

.language-switcher-desktop.active .language-dropdown {
    display: block;
}

.language-dropdown-outer {
    background-color: rgba(3, 199, 44, 0.3);
    border-radius: 0;
    padding: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.language-dropdown-inner {
    background-color: #000304;
    border-radius: 0;
    padding: 10px;
}

.language-dropdown-items {
    border-radius: 7px;
    background-color: #000304;
    padding: 1px;
    overflow: hidden;
}

.lang-option {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #5AB25A;
    padding: 8px 12px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: #55BC55;
}

.lang-option:hover span {
    color: black;
}

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

.lang-option span {
    font-size: 12px;
    color: white;
    transition: color 0.2s ease;
}

/* Mobile Layout */
.subnavbar-mobile-layout {
    align-items: center;
    justify-content: space-between;
}

.subnavbar-announcement-pill-mobile {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    border-radius: 9999px;
    padding: 8px 8px 8px 0;
    font-size: 12px;
    color: #5AB25A;
    transition: color 0.3s;
    text-decoration: none;
    width: 100%;
}

.subnavbar-announcement-pill-mobile:hover {
    color: white;
}

.subnavbar-mobile-wallet {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== FOOTER STYLES (Reused from homepage) ===== */
.footer-template4 {
    position: relative;
    padding: 40px 8px 0 8px;
}

@media (min-width: 640px) {
    .footer-template4 {
        padding: 40px 16px 0 16px;
    }
}

.footer-apk-section {
    margin-bottom: 40px;
}

.footer-apk-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: transparent;
    padding: 24px;
}

@media (min-width: 768px) {
    .footer-apk-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        border: none;
        background-color: black;
        padding: 32px;
        padding-bottom: 0;
        align-items: center;
    }
}

.footer-apk-bg-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.footer-apk-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.footer-apk-left {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .footer-apk-left {
        grid-column: span 1;
    }
}

.footer-apk-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

@media (min-width: 1024px) {
    .footer-apk-title {
        font-size: 40px;
    }
}

.footer-apk-subtitle {
    margin-top: 16px;
    font-size: 18px;
    color: white;
    margin-bottom: 0;
}

.footer-apk-btn {
    display: flex;
    width: fit-content;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 45px;
    background-color: #55BC55;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.footer-apk-btn::after {
    content: ' ';
    width: 0%;
    height: 100%;
    background: rgba(19, 145, 19, 0.8);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: 1;
}

.footer-apk-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.footer-apk-btn:hover {
    background-color: #4AA44A;
}

.footer-apk-btn:active {
    transform: scale(0.95);
}

.footer-apk-btn span {
    position: relative;
    z-index: 2;
}

.footer-apk-btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.footer-apk-middle {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 768px) {
    .footer-apk-middle {
        grid-column: span 1;
    }
}

.footer-apk-image {
    height: auto;
    width: 240px;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .footer-apk-image {
        width: 550px;
    }
}

.footer-apk-right {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-apk-right {
        grid-column: span 1;
    }
}

.footer-qr-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-qr-border {
    border-radius: 8px;
    padding: 8px;
    border: 2px solid #55BC55;
    background: transparent;
}

.footer-qr-image-mobile {
    height: auto;
    width: 220px;
}

.footer-qr-text-mobile {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin: 0;
}

.footer-qr-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-qr-title-desktop {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-top: 0;
}

.footer-qr-border-desktop {
    border-radius: 6px;
    border: 1px solid #5AB25A;
}

.footer-qr-inner {
    border-radius: 6px;
    padding: 24px;
}

.footer-qr-image-desktop {
    height: auto;
    width: 200px;
}

.footer-payment-section {
    margin-bottom: 40px;
}

.footer-payment-card {
    border-radius: 5px;
    padding: 1px;
    background: transparent;
    border: 1px solid rgba(3, 199, 44, 0.3);
    margin-bottom: 24px;
}

.footer-payment-card:last-child {
    margin-bottom: 0;
}

.footer-payment-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 5px;
    background-color: black;
    padding: 24px;
}

@media (min-width: 768px) {
    .footer-payment-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-payment-title-mobile {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.footer-payment-title-desktop {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-payment-title-desktop {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .footer-payment-title-desktop {
        font-size: 35px;
    }
}

.footer-payment-title-wrapper {
    flex-shrink: 0;
}

.footer-crypto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    place-items: center;
}

.footer-crypto-icon {
    display: flex;
    height: 48px;
    width: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    transition: all 0.2s ease;
}

.footer-crypto-icon:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-crypto-icon img {
    width: 28px;
    height: 28px;
}

.footer-crypto-icons-desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .footer-crypto-icons-desktop {
        gap: 16px;
    }
}

.footer-more-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-more-btn:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-more-btn-desktop {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

@media (min-width: 768px) {
    .footer-more-btn-desktop {
        padding: 0 20px;
        font-size: 16px;
    }
}

.footer-more-btn-desktop:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-payment-timing {
    flex-shrink: 0;
    text-align: right;
    color: white;
}

.footer-timing-text {
    font-size: 10px;
    margin: 0;
}

.footer-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    place-items: center;
}

.footer-bank-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    padding: 8px 16px;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-bank-item:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-bank-item img {
    width: 20px;
    height: 20px;
}

.footer-bank-item span {
    font-size: 14px;
}

.footer-bank-icons-desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .footer-bank-icons-desktop {
        gap: 16px;
    }
}

.footer-bank-item-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    padding: 8px 16px;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-bank-item-desktop:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-bank-item-desktop img {
    width: 20px;
    height: 20px;
}

.footer-bank-item-desktop span {
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-bank-item-desktop span {
        font-size: 16px;
    }
}

.footer-links-section {
    margin-bottom: 40px;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 24px;
}

.footer-links-inner {
    padding-top: 32px;
    padding-bottom: 24px;
}

.footer-logo-mobile {
    margin-bottom: 32px;
}

.footer-logo-img-mobile {
    width: 190px;
    height: auto;
}

.footer-tagline-mobile {
    margin: 0 auto;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-links-mobile {
    margin-bottom: 32px;
}

.footer-link-title {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
    color: #55BC55;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-list li {
    margin: 0;
}

.footer-link-list a {
    font-size: 14px;
    color: #B4BBC5;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.footer-link-list a:hover {
    color: #55BC55;
}

.footer-contact-mobile {
    margin-bottom: 32px;
}

.footer-contact-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    padding: 16px 12px;
    font-size: 14px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-contact-btn:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-contact-btn img {
    width: 23px;
    height: 23px;
}

.footer-links-desktop {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.footer-logo-img-desktop {
    width: 140px;
    height: auto;
}

.footer-tagline-desktop {
    margin-top: 24px;
    max-width: 240px;
    font-size: 12px;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-btn-desktop {
    display: flex;
    max-width: 200px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 5px;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-contact-btn-desktop:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-contact-btn-desktop span {
    font-weight: 600;
}

.footer-contact-btn-desktop img {
    width: 20px;
    height: 20px;
}

.footer-description {
    margin-top: 32px;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #060D0D;
}

.footer-description-inner {
    border-radius: 10px;
    background-color: black;
    padding: 8px;
}

.footer-description-text {
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: white;
}

.footer-bottom {
    position: relative;
    margin-top: 32px;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        padding-bottom: 32px;
    }
}

.footer-copyright {
    margin-bottom: 16px;
    font-size: 14px;
    color: white;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-copyright {
        margin-bottom: 0;
    }
}

.footer-copyright-brand {
    color: rgb(85, 188, 85);
    font-weight: bold;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-icon {
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    opacity: 0.8;
}

.footer-social-icon img {
    width: 24px;
    height: 24px;
}