/* ============================================
   MOBILE MENU BUTTON — hidden on desktop
   ============================================ */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-main);
    font-size: 1.2rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: var(--card-bg);
    border-color: var(--primary);
    color: var(--primary);
}
#bet-details-content {
    height: 454px;
    overflow-y: auto;
    padding-top: 0;
    padding-bottom: 0;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent; 
    padding-right: 22px;
}

#bet-details-content:hover {
    scrollbar-color: #888 transparent; 
}


#bet-details-content::-webkit-scrollbar {
    width: 4px; 
    background: transparent;
}

#bet-details-content::-webkit-scrollbar-thumb {
    background-color: transparent; 
    border-radius: 4px;
}

#bet-details-content:hover::-webkit-scrollbar-thumb {
    background-color: #888;
}

#bet-details-content::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
@media (max-width: 1200px) {
    :root {
        --header-height: 60px !important;
        --rank-height: 52px;
        --total-header-offset: calc(var(--header-height) + var(--rank-height));
    }

    /* --- Navigation --- */
    .mobile-menu-btn {
        display: inline-flex;
    }

    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0.75rem 0;
        z-index: 10000;
    }

    .nav-container {
        flex-wrap: nowrap;
    }

    .header-balance {
        display: flex !important;
        padding: 0.35rem 0.75rem !important;
        font-size: 0.75rem !important;
        gap: 0.4rem !important;
    }

    .hdr-balance-label {
        display: inline !important;
        opacity: 0.6;
        font-size: 0.65rem;
    }

    .nav-left {
        gap: 7px !important;
    }

    .nav-links {
        display: none;
        order: 3;
        position: fixed;
        top: 60px !important;
        left: 0;
        width: 100vw !important;
        height: calc(100vh - 60px) !important;
        bottom: 0 !important;
        flex-direction: column;
        align-items: stretch; 
        gap: 0;
        background: var(--bg-color) !important;
        opacity: 1 !important;
        padding: 1.5rem;
        z-index: 20000 !important;
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-main-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .nav-main-links a {
        padding: 1rem 1.25rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 700;
        color: var(--text-main);
        font-size: 0.85rem !important;
    }

    .nav-main-links a i {
        font-size: 1.25rem;
        color: var(--primary);
        width: 24px;
        text-align: center;
    }

    .nav-main-links a.active::after {
        display: none;
    }

    .nav-main-links a.active {
        background: rgba(99, 102, 241, 0.1);
        border-color: var(--primary);
    }

    .nav-actions-group {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-actions-group .btn-nav span {
        display: inline-block !important;
    }

    .nav-actions-group>* {
        width: 100%;
    }

    .btn-admin {
        grid-column: span 3;
    }

    .btn-logout {
        grid-column: span 3;
        margin-top: 0.5rem;
    }

    .btn-login,
    .btn-register {
        grid-column: span 3;
    }

    .btn-nav {
        padding: 1rem !important;
        border-radius: 16px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .notification-wrapper {
        width: 100%;
        display: flex;
    }



    #noti-dropdown {
        position: fixed !important  ;
        top: 0 !important;
        bottom: unset !important;
        left: 0px !important;
        right: 0px !important;
        width: auto !important;
        z-index: 10001 !important;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0 !important;
    }
    .noti-close {
        position: absolute;
        right: 7px;
        color: var(--text-main) ! IMPORTANT;
        font-size: 1.2rem ! IMPORTANT;
        padding: 0 !IMPORTANT;
    }
.noti-dropdown-header button {
    padding-right: 37px;
}
    .main-content {
        padding-top: calc(var(--total-header-offset) + 4rem) !important;
        padding-bottom: 2rem;
    }

    .header-rank-wrapper {
        position: fixed !important;
        top: 60px !important;
        width: 100%;
        left: 0;
        z-index: 9999;
        backdrop-filter: blur(10px);
        background: rgba(2, 6, 23, 0.7);
        border-bottom: 1px solid var(--border-color);
    }

    [data-theme="light"] .header-rank-wrapper {
        background: rgba(241, 245, 249, 0.85);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header-rank-wrapper .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    #noti-list {
        height: calc(100vh - 68px);
    }
.noti-active {
    overflow: hidden !important;
}
.noti-dropdown-header {
    position: sticky;
    top: 0;
       background-color: var(--bg-color);
}
#bet-modal.modal-overlay {
    z-index: 9999 !important;	
}
}

/* ============================================
   TABLET BREAKPOINT — max 1024px
   ============================================ */
@media (max-width: 1024px) {

    .container {
        padding: 0 1.5rem;
    }

    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Plinko: stack game + controls vertically */
    .plinko-columns {
        flex-direction: column;
        /* Sidebar below game for better immersion on tablet */
    }

    .plinko-container {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .game-sidebar {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .game-main {
        width: 100%;
        align-items: center;
    }

    .plinko-canvas-wrapper {
        width: 100% !important;
        max-width: 700px;
        margin: 0 auto;
    }

    #plinko-canvas {
        width: 100%;
        height: auto;
    }

    .multiplier-box {
        font-size: 0.55rem;
    }
}

/* Visibility Utilities */
.show-on-mobile {
    display: none !important;
}

.hide-on-mobile {
    display: block;
}
@media (max-width: 991px) { 
#faucet-bonus-banner {
    flex-direction: column;
}
}
@media (max-width: 830px) { 
.dash-greeting-flex {
           gap: 1.2rem !important;
}
}
@media (max-width: 800px) { 

#faucet-bonus-banner {
         max-width: 320px;
}
#bonus-claim-btn {
    width: 100%;
}

}
/* ============================================
   MOBILE BREAKPOINT — max 768px
   ============================================ */
@media (max-width: 768px) {
    :root {
        --rank-height: 85px;
    }

    /* --- Typography --- */
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem;
    }

    /* --- Layout --- */
    .main-content {
        padding-top: calc(var(--total-header-offset) + 6rem) !important;
        padding-bottom: 2rem;
    }

    .header-rank-bar {
        flex-direction: column;
        padding: 0.6rem 1.25rem !important;
        gap: 0.6rem;
    }

    .header-progress-main {
        width: 100%;
        gap: 0.4rem;
    }

    .header-rank-row {
        justify-content: space-between;
    }

    .header-progress-bar-container {
        flex: none;
        width: 100%;
        height: 4px;
        margin: 0.25rem 0 !important;
        order: 2;
    }

    .rank-label-current {
        order: 1;
        font-size: 0.65rem;
    }

    .rank-label-next {
        order: 1;
        font-size: 0.65rem;
    }

    .header-progress-stats {
        order: 4;
        margin-top: 0;
        font-size: 0.6rem;
    }

    /* Rank Label Status */
    .rank-label-status {
        display: flex !important;
        order: 3;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        padding: 0.4rem 0.8rem !important;
        border-radius: 10px;
        font-weight: 800;
        font-size: 0.65rem !important;
        letter-spacing: 0.05rem;
    }

    .rank-label-status i {
        font-size: 0.8rem;
    }

    .show-on-mobile {
        display: flex !important;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .header-roadmap-btn {
        width: auto;
        align-self: center;
        padding: 5px 12px;
        font-size: 0.6rem;
        margin-top: 0.2rem;
    }

    /* --- Toasts --- */
    #toast-container {
        top: calc(var(--total-header-offset) + 1rem);
        right: 1.25rem;
        left: 1.25rem;
        align-items: center;
        z-index: 100000;
    }

    .toast {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        animation: toast-in-mobile 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes toast-in-mobile {
        from {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* --- Auth Cards --- */
    .auth-card {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
        border-radius: 20px;
    }

    .auth-card h1 {
        font-size: 2rem !important;
    }

    .auth-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .qr-container {
        display: block;
        width: fit-content;
    }

    /* --- Roadmap Tabs --- */
    .roadmap-tabs-header {
        flex-direction: column;
        padding: 1.25rem !important;
        gap: 0.75rem !important;
    }

    .roadmap-tabs-header .nav-tab {
        width: 100%;
        justify-content: center;
        padding: 1rem !important;
        font-size: 0.85rem !important;
    }

    /* --- Dashboard Grid --- */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card .value {
        font-size: 1.75rem;
    }

    /* --- Tables: horizontal scroll for wide data --- */
    .table-container {
        border-radius: 16px;
        margin-top: 2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table th,
    .table td {
        padding: 0.85rem 1rem;
        white-space: nowrap;
    }

    .table-header {
        padding: 1.25rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* --- Plinko on Mobile --- */
    .game-container.plinko-container {
        padding: 1rem;
        border-radius: 20px;
    }

    .plinko-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .plinko-canvas-wrapper {
        max-width: 100%;
    }
    #faucet-bonus-banner {
        max-width: 100%;
    }


    .multiplier-box {
        font-size: 0.5rem;
        padding: 6px 0;
        border-radius: 4px;
    }

    .plinko-sidebar-card {
        padding: 1.25rem;
    }

    #play-btn {
        height: 4rem;
        font-size: 1.1rem;
    }

    .result-notification {
        padding: 0.75rem 1.5rem !important;
        z-index: 1 !important;
        height: auto !important;
        width: auto !important;
        min-width: 120px;
    }

 

    /* Theme switch position on mobile */
    .theme-switch {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
    }
#bet-modal .modal-content {
    margin-top: 25px;
}

}

/* ============================================
   SMALL MOBILE — max 480px
   ============================================ */

@media (max-width: 576px) {
.sound-toggle {
        width: 30px !important;
        height: 30px !important;
        border-radius: 9px !important;
}
.sound-toggle i {
    font-size: 14px !important; 	
}
.result-notification {
	min-width: 100px !important;
      border-radius: 17px !important;
}
#bet-details-content {
    height: 414px;
    padding: 0 21px !important;
}
#bet-details-content .fair-field {
    padding: 0.6rem 1rem;
}
#bet-details-content .fair-input-group {
    margin-bottom: 13px;
}
#bet-modal .fair-input-group label {
    margin-bottom: 6px;
}
#bet-modal .modal-header {
    padding: 21px;
}
#bet-modal .fair-tab {
    padding: 10px 14px;
 
}
#bet-modal.fair-tabs {
    gap: 9px;
}
.header-rank-row {
    gap: 2px;
}
.header-roadmap-btn {
        margin-top: 0;
}
.header-progress-main {
        gap: 0;
}
#bet-modal .modal-content {
margin-top: 100px !important;					
}

.mobile-menu-btn:hover {
    background: transparent !important;
    border-color: transparent !important;
}
}

@media (max-width: 480px) {  
    .container {
        padding: 0 1rem;
    }

    .auth-card {
        padding: 1.5rem 1.25rem;
        margin: 1.5rem 0.75rem;
    }

    .auth-card h1 {
        font-size: 1.75rem !important;
    }

    h1 {
        font-size: 1.75rem !important;
    }

    .stat-card .value {
        font-size: 1.5rem;
    }

    .timer-ring {
        font-size: 2.5rem;
    }

    .pin-display {
        font-size: 2.25rem;
        letter-spacing: 0.25rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .game-container {
        padding: 1rem;
    }

    .multiplier-box {
        font-size: 0.5rem;
        padding: 6px 0;
    }


.navbar .nav-left .height-1 {
        height: 17px !important;
}
    #bet-modal .fair-tab {
            padding: 9px 11px;
        font-size: 12px;
        gap: 5px;
    }
.fair-tabs {
    gap: 7px !important;
}
}

/* Profile 2-col grid breaks to single col on mobile */
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr !important;
    }
}



/* ============================================
   LANDING PAGE RESPONSIVE
   ============================================ */

/* --- Hero section --- */
@media (max-width: 768px) {

    /* Hero padding */
    section[style*="padding: 8rem"] {
        padding: 5rem 0 3rem !important;
    }

    /* Hide glow blobs on mobile (not needed, save resources) */
    section[style*="padding: 8rem"]>div[style*="position: absolute"] {
        display: none !important;
    }

    /* Stats bar: wrap columns */
    .glass[style*="inline-flex"] {
        display: flex !important;
        flex-wrap: wrap;
        gap: 1.5rem !important;
        padding: 1.25rem 1.5rem !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* Hide vertical dividers inside stats bar */
    .glass[style*="inline-flex"]>div[style*="width: 1px"] {
        display: none !important;
    }

    /* Stats bar items: side-by-side 2-col grid */
    .glass[style*="inline-flex"]>div[style*="text-align: center"] {
        flex: 1 1 calc(50% - 1.5rem);
        min-width: 100px;
    }

    /* CTA card padding */
    .glass[style*="border-radius: 32px"] {
        padding: 3rem 1.5rem !important;
    }

    /* Feature cards: prevent overflow */
    [style*="minmax(280px"] {
        grid-template-columns: 1fr !important;
    }

    /* How it works: single column */
    [style*="minmax(240px"] {
        grid-template-columns: 1fr !important;
    }

    /* Hero CTA buttons: stack */
    [style*="justify-content: center"][style*="flex-wrap: wrap"] {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {

    /* Even smaller: full-width buttons */
    section .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    /* Section padding tighter */
    section[style*="padding: 5rem"] {
        padding: 3rem 0 !important;
    }

    /* CTA section */
    section[style*="padding: 6rem"] {
        padding: 3rem 0 !important;
    }
.sound-toggle i {
    font-size: 11px !important; 	
}
.sound-toggle {
        width: 26px !important;
        height: 26px !important;
	    top: 15px !important;
    right: 11px !important;

}
}

/* ============================================
   NEW PREMIUM DASHBOARD & BUY GOLD RESPONSIVE
   ============================================ */

/* Tablet & Smaller (max 1024px) */
@media (max-width: 1024px) {

    /* Dashboard 2-col to 1-col */
    .container>div[style*="grid-template-columns:2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {

    /* Dashboard: Greeting banner stack */
    .dash-greeting-banner {
        padding: 2rem 1.25rem !important;
        margin-bottom: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .dash-greeting-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 400px !important;

    }

    .dash-greeting-flex>div:first-child {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .dash-greeting-flex div[style*="display:flex"] {
        justify-content: center !important;
    }

    #faucet-bonus-banner {
        padding: 1rem !important;
        gap: 1rem !important;
        flex-direction: column !important;
        text-align: center;
        border-radius: 20px !important;
    }

    #faucet-bonus-banner>div:first-child {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    #bonus-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }

    #bonus-text {
        font-size: 0.95rem !important;
        text-align: center;
    }

    #bonus-timer-wrap {
        font-size: 0.8rem !important;
        justify-content: center !important;
    }

    #bonus-claim-btn {
        width: 100% !important;
        min-width: 0 !important;
        height: 3.2rem !important;
        font-size: 0.8rem !important;
    }

    .dash-gold-wrapper {
        flex: none !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto;
    }

    .dash-gold-status-wrap {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }

    .dash-gold-badge,
    .dash-free-badge {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem !important;
    }

    .dash-gold-card {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Actions & Stats Grids */
    .dash-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .dash-main-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .dash-actions-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    /* Buy Gold (Shared Buy Gold layout) */
    .container>div[style*="grid-template-columns: 1fr 1.1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .dash-greeting-banner {
        padding: 1.75rem 1rem !important;
    }

    .dash-gold-wrapper {
        width: 100% !important;
        margin: 0 !important;
    }

    .dash-gold-card {
        padding: 1.25rem !important;
    }

    .dash-gold-title {
        font-size: 0.9rem !important;
    }

    .dash-gold-text {
        font-size: 0.7rem !important;
        margin-bottom: 1rem !important;
    }

    .btn-gold-action {
        padding: 0.6rem !important;
        font-size: 0.8rem !important;
    }
    .noti-dropdown-header button {
        padding-right: 19px;
    }
.noti-close {
        right: 0px;
}


}

/* ============================================
   REFERRALS (referrals.php) NEW DESIGN — RESPONSIVE
   ============================================ */

/* Tablet & Smaller (max 1024px) */
@media (max-width: 1024px) {
    .ref-hero {
        padding: 3rem 1.5rem;
    }

    .ref-hero h1 {
        font-size: 2.5rem !important;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .ref-hero {
        padding: 2.5rem 1rem;
    }

    .ref-hero h1 {
        font-size: 2rem !important;
    }

    .ref-link-box {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }

    .ref-link-box input {
        text-align: center;
        font-size: 1rem;
        padding: 0.5rem;
    }

    .ref-link-box button {
        width: 100% !important;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .ref-hero h1 {
        font-size: 1.75rem !important;
    }

    /* Username avatar size on mobile */
    .username-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* ============================================
   PROFILE (profile.php) NEW DESIGN — RESPONSIVE
   ============================================ */

/* Tablet & Smaller (max 1024px) */
@media (max-width: 1024px) {
    .profile-hero {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .profile-hero-left {
        flex-direction: column !important;
        gap: 1.25rem !important;
        text-align: center !important;
    }

    .profile-hero-left>div>div {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .profile-hero-right {
        text-align: center !important;
        width: 100% !important;
        margin-top: 1.5rem;
    }

    .profile-hero-right>div {
        justify-content: center !important;
    }

    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .profile-grid>div:nth-child(2) {
        display: none;
        /* Spacer column */
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .profile-avatar-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .profile-hero h1 {
        font-size: 2rem !important;
    }

    .stat-grid-profile {
        grid-template-columns: 1fr 1fr;
    }

    .profile-panel {
        padding: 1.5rem;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .stat-grid-profile {
        grid-template-columns: 1fr;
    }

    .profile-hero h1 {
        font-size: 1.75rem !important;
    }

    .shortcut-btn {
        height: 3.5rem;
        font-size: 0.9rem;
    }

    .w-50 {
        width: 50%;
    }


}

/* ============================================
   FAUCET (faucet.php) NEW DESIGN — RESPONSIVE
   ============================================ */

/* Tablet & Smaller (max 1024px) */
@media (max-width: 1024px) {
    .faucet-hero {
        justify-content: center;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .claim-panel {
        min-width: 100%;
        order: 3;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .faucet-timer-wrap {
        width: 240px;
        height: 240px;
    }

    .timer-ring-large {
        width: 200px;
        height: 200px;
    }

    .timer-ring-large #timer-display {
        font-size: 2.2rem;
    }

    .faucet-hero>div[style*="width: 300px"] {
        width: 100% !important;
        order: 4;
    }

    .faucet-hero h1 {
        font-size: 1.8rem !important;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .faucet-timer-wrap {
        width: 200px;
        height: 200px;
    }

    .timer-ring-large {
        width: 170px;
        height: 170px;
    }

    .timer-ring-large #timer-display {
        font-size: 1.8rem;
    }

    .captcha-box div[style*="display:flex"] {
        flex-direction: column;
        align-items: center;
    }

    .captcha-box input[name="captcha"] {
        width: 100%;
    }
}

/* Global Table Container Fix - Added to prevent horizontal overflow */
.table-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.faucet-road-table {
    min-width: 800px;
}

/* ============================================
   FOOTER RESPONSIVE FIX
   ============================================ */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    .footer-section {
        flex: none !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .footer-right {
        gap: 1rem !important;
        flex-direction: column !important;
    }
}



@media (max-width: 400px) { 


.navbar .nav-left .height-1 {
        height: 17px !important;
}
.mobile-menu-btn {
    width: fit-content !important;
}
.dash-gold-wrapper { 
    min-width: auto !important;
}
    .sound-toggle {
        width: 22px !important;
        height: 22px !important;
}
    .sound-toggle i {
        font-size: 9px !important;
    }
    .noti-close {
        right: 14px;
    }
} 



