/* Global CSS Variables & Reset */
:root {
    --primary-color: #D4AF37;
    /* Metallic Gold */
    --primary-hover: #F0E68C;
    /* lighter gold */
    --accent-color: #0FA958;
    /* Emerald Green (Action) */
    --bet-red: #D32F2F;
    /* For 'Make Bet' buttons */

    /* Golden Blackish Grey Theme */
    --bg-dark: #0f0f0f;
    /* Deep Black-Grey */
    --bg-sidebar: #121212;
    /* Slightly lighter */
    --bg-header: #050505;
    /* Darkest for header */
    --bg-card: #1C1C1C;
    /* Card Grey */
    --bg-lighter: #2A2A2A;
    /* Lighter Grey */

    --text-light: #E0E0E0;
    --text-dim: #A0A0A0;
    --text-gold: #D4AF37;

    --border-gold: 1px solid rgba(212, 175, 55, 0.2);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    --gold-gradient: linear-gradient(135deg, #FFD447 0%, #FFB800 100%);

    --card-gradient-1: linear-gradient(135deg, #2c2c2c 0%, #3e2723 100%);
    /* Cricket Brown-Grey */
    --card-gradient-2: linear-gradient(135deg, #2c2c2c 0%, #1b5e20 100%);
    /* Football Green-Grey */
    --card-gradient-3: linear-gradient(135deg, #2c2c2c 0%, #b71c1c 100%);
    /* Tennis Red-Grey */
    --card-gradient-4: linear-gradient(135deg, #2c2c2c 0%, #e65100 100%);
    /* Horse Orange-Grey */
    --card-gradient-5: linear-gradient(135deg, #2c2c2c 0%, #4a148c 100%);
    /* Greyhound Purple-Grey */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #191919 0%, #000000 100%);
    /* Gray-Black Gradient */
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    /* Ensure gradient covers full height */
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-lighter);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

/* Utilities */
.text-gold {
    color: var(--text-gold) !important;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    /* More premium, less rounded than pill */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(to bottom, #D4AF37, #B4941F);
    /* Gold Gradient */
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #F0E68C, #D4AF37);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--text-light);
    color: var(--bg-dark);
}

.btn-secondary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: #fff;
    /* White text as requested */
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.full-width {
    width: 100%;
}

/* Top Header Premium */
.top-header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    /* Subtle Gold Border */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 65px;
    /* Increased from 50px */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    /* Gold Glow on Logo */
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.03);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.header-right {
    display: flex;
    gap: 15px;
}

#sidebar-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Live Blinking/Pulse Animation */
@keyframes blink {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-live {
    color: #00E676;
    /* Bright Green */
    font-weight: 800;
    letter-spacing: 1px;
    animation: blink 1.2s infinite ease-in-out;
    display: inline-block;
    /* Required for transform */
}

/* Sidebar Layout */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Layout - Desktop */
.sidebar {
    /* Make it scroll with page ("slide bara bhi ove kar yaye uppar") */
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    /* Full height of viewport minus header */
    width: 250px;
    background: var(--bg-sidebar);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    /* Remove fixed left:0 to allow flexbox positioning */
    flex-shrink: 0;
    overflow-y: auto;
    scrollbar-width: none;
    z-index: 900;
}

.sidebar.active {
    left: 0;
    /* For mobile toggle */
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

.sidebar-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#mobile-close {
    display: none;
}

.sidebar-menu {
    padding-top: 20px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    /* Larger touch targets */
    margin: 5px 15px;
    /* Spacing between items */
    color: #E0E0E0;
    /* Off-white text */
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    /* Rounded corners */
    transition: all 0.2s ease;
    border-left: none;
    /* Remove old border style */
}

.sidebar-menu li.active a,
.sidebar-menu li a:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    /* Subtle gold gradient bg */
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle border */
    transform: translateX(5px);
}

.sidebar-menu li a i {
    font-size: 18px;
}

/* Main Content */
.main-content {
    flex: 1;
    /* margin-left: 240px; Removed redundant margin as sidebar is in flex flow */
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Dashboard Grid */
.dashboard {
    padding: 20px;
    /* Reduced from 30px to close gap */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Category Cards */
.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.cat-card {
    height: 100px;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.cat-card span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cat-card i {
    font-size: 40px;
    position: absolute;
    bottom: -5px;
    right: -5px;
    opacity: 0.4;
    color: #fff;
    transform: rotate(-15deg);
    transition: var(--transition);
}

.cat-card:hover i {
    opacity: 0.6;
    transform: rotate(0deg) scale(1.1);
}

/* Gradients for Cards */
.gradient-1 {
    background: linear-gradient(135deg, #5D4037 0%, #3e2723 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-2 {
    background: linear-gradient(135deg, #00695C 0%, #004D40 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-3 {
    background: linear-gradient(135deg, #B71C1C 0%, #880E4F 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-4 {
    background: linear-gradient(135deg, #E65100 0%, #BF360C 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-5 {
    background: linear-gradient(135deg, #4A148C 0%, #311B92 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Banners Grid */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on desktop */
    gap: 20px;
    margin-bottom: 40px;
}

.banner-card {
    height: 140px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.banner-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    /* Content takes left side */
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.01) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 20px;
    gap: 15px;
}

.banner-content h3 {
    font-size: 22px;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.banner-card img.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.5s ease;
}

.banner-card:hover img.banner-bg {
    transform: scale(1.1);
}

.banner-purple {
    background: #4A148C;
}

.banner-red-dark {
    background: #880E4F;
}

.banner-red {
    background: #B71C1C;
}

.banner-blue {
    background: #0D47A1;
}


/* Matches Section (Dark Theme) */
.matches-section {
    background: #1E1E1E;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.match-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
}

/* Match Headers */
.bg-red {
    background: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
}

.bg-teal {
    background: linear-gradient(135deg, #1DE9B6 0%, #00695C 100%);
}

.bg-orange {
    background: linear-gradient(135deg, #FFAB40 0%, #E65100 100%);
}

.match-list {
    background: #1E1E1E;
}

.match-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.match-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.match-info h3 {
    color: #fff;
    font-size: 15px;
}

.match-info p {
    color: #aaa;
    font-size: 12px;
}

/* Live Blinking Animation */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.status-live {
    color: #00E676;
    /* Bright Green */
    font-weight: 800;
    letter-spacing: 1px;
    animation: blink 1.5s infinite ease-in-out;
}

.match-time {
    background: rgba(255, 255, 255, 0.05);
    color: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsiveness for new grids */
@media (max-width: 768px) {
    .banner-grid {
        grid-template-columns: 1fr;
        /* Stack banners on mobile */
    }

    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns cards on mobile */
    }
}


/* Sidebar Scrollbar Hiding */
.sidebar {
    scrollbar-width: none;
    /* Firefox */
}

.sidebar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    /* Green */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(15, 169, 88, 0.4);
    z-index: 200;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    background: var(--accent-hover);
}

/* Make Bet Animation */
@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@keyframes borderRun {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Make Bet Button - Golden & Animated */
@keyframes borderPulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes goldShine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-gold {
    background: linear-gradient(45deg, #FFC107, #FFD54F, #FFB300, #FFC107);
    background-size: 300% 300%;
    color: #000;
    /* Black text on gold */
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    animation: goldShine 3s ease infinite;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-gold::after {
    /* Pulse Effect */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    z-index: -1;
    animation: borderPulseGold 2s infinite;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    color: #000;
}

/* Join Reddy Anna Premium Banner */
.join-banner {
    background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #050505 0%, #151515 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8) inset;
    padding: 60px 0;
}

/* Animated Particles/Overlay */
.join-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDIxNSw1NSwwLjEpIi8+PC9zdmc+');
    /* Subtle dust pattern */
    opacity: 0.3;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
}

.banner-content-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Logo Animation */
.banner-logo-wrapper {
    position: relative;
    animation: floatLogo 6s ease-in-out infinite;
}

.banner-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 4s infinite alternate;
}

/* Text Styling */
.banner-text {
    text-align: left;
    max-width: 600px;
}

.banner-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.text-gold {
    background: linear-gradient(to right, #FFC107, #FFECB3, #FFB300);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.banner-text p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 25px;
    border-left: 3px solid #FFC107;
    padding-left: 15px;
}

/* Features List */
.banner-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    gap: 20px;
}

.banner-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E0E0E0;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-features-list li i {
    color: #FFC107;
    font-size: 1.2rem;
}

/* Animations */
@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes particleMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content-split {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner-text {
        text-align: center;
    }

    .banner-features-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-text p {
        border-left: none;
        border-bottom: 3px solid #FFC107;
        padding-left: 0;
        padding-bottom: 10px;
        display: inline-block;
    }

    .banner-logo {
        width: 180px;
    }

    .banner-text h2 {
        font-size: 2.2rem;
    }
}

.btn-lg {
    padding: 12px 40px;
    font-size: 16px;
}

/* Sections outside layout-wrapper should be full width */
.join-banner,
.features,
.steps-container,
.faq-list,
footer {
    width: 100%;
    position: relative;
    z-index: 10;
}

footer {
    padding-top: 50px;
    margin-top: auto;
    /* Push to bottom if content short */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive Tweaks */
/* Mobile Menu Dropdown (Restored) */
.mobile-menu {
    position: absolute;
    /* Absolute to header or fixed to viewport? Fixed is better for overlay */
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    transform: translateY(-150%);
    /* Hidden top */
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    /* Slide down */
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 15px;
    text-align: center;
}

.mobile-nav-links li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    #sidebar-toggle {
        display: block;
        color: var(--primary-color);
        font-size: 28px;
    }

    .top-header {
        padding: 0 20px;
        height: 70px;
    }

    /* Hide Sidebar on Mobile as per request ("sidebar mat rakho") */
    .sidebar {
        display: none;
    }

    .header-logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        width: 100%;
        padding-top: 20px;
        /* Space for hidden sidebar? No, just spacing */
    }

    /* Verify sidebar is hidden */
    .sidebar {
        display: none !important;
    }

    /* ... rest of mobile styles ... */

    #mobile-close {
        display: block;
        font-size: 24px;
        color: #fff;
        float: right;
        margin: 10px;
        cursor: pointer;
    }

    .match-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .match-status,
    .match-time,
    .match-actions {
        width: 100%;
        justify-content: space-between;
        display: flex;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for existing components (SEO, About) to maintain consistency */
.bg-card-content {
    background: var(--bg-lighter);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-card-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.bg-card-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.content-list {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: decimal;
    color: var(--text-dim);
}

.content-list li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.mt-40 {
    margin-top: 40px;
}

/* About Section Refined (Image Left, Text Right) */
.about-section {
    background-color: #050505;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 0;
}

/* Image Column Styles */
.about-img-col {
    flex: 1;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    /* Allow glow to spill */
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.hover-scale-img:hover {
    transform: scale(1.02);
}

.img-glow-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Text Column Styles */
.about-text-col {
    flex: 1.2;
    /* Slightly wider text area */
}

.section-title-left {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 4px solid #FFC107;
    padding-left: 15px;
}

.about-desc p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

/* Feature List in About */
.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.about-features li {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eee;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-features li i {
    color: #FFC107;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .reverse-mobile {
        flex-direction: column;
        /* Image on top */
    }

    .about-img-col,
    .about-text-col {
        width: 100%;
        flex: auto;
    }

    .section-title-left {
        font-size: 2.2rem;
        text-align: center;
    }

    .lead-text {
        text-align: center;
        border-left: none;
        border-bottom: 3px solid #FFC107;
        padding-bottom: 10px;
    }

    .about-desc p {
        text-align: center;
    }
}

/* Casino Image Grid */
.casino-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 items per row = 3 rows for 12 items */
    gap: 15px;
    width: 100%;
}

.casino-img-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-img-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.casino-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.casino-img-card:hover img {
    transform: scale(1.05);
}

/* Helper for Square Aspect Ratio */
.square-grid .casino-img-card {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.square-grid .casino-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Play Button Overlay (Optional - currently commented out in HTML) */
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.play-btn-overlay i {
    font-size: 32px;
    color: #000;
}

.casino-img-card:hover .play-btn-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .casino-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        /* Increased gap to make cards slightly smaller */
        padding-right: 10px;
        /* Slight padding to constrain width */
    }
}

@media (max-width: 480px) {
    .casino-image-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns even on small screens */
    }
}


/* =========================================
   PREMIUM SEO CONTENT STYLES
   ========================================= */

.seo-content-wrapper {
    background: #050505;
    color: #e0e0e0;
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.seo-section {
    position: relative;
    z-index: 1;
}

.mb-80 {
    margin-bottom: 80px;
}

/* Typography */
.seo-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.seo-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
}

.text-gold {
    background: linear-gradient(to right, #FFC107, #FFD700, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

/* 1. Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: #0f0f0f;
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFC107, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: #141414;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.benefit-item:hover::before {
    opacity: 1;
}

.b-icon {
    font-size: 3rem;
    color: #FFC107;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-item h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #bbb;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 2. Process Boxes (Reg & Login) */
.process-box {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.glow-card:hover {
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.05);
}

.box-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.box-title i {
    color: #FFC107;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.5;
}

.check-list li::before {
    content: '❯';
    position: absolute;
    left: 0;
    color: #FFC107;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

.demo-note {
    font-size: 0.9rem;
    color: #888;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
}

/* 3. Info Grid & Steps */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border-left: 3px solid #FFC107;
}

.info-item.full-span {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #111, #080808);
}

.info-item h4 {
    color: #FFC107;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-item p {
    color: #ccc;
    line-height: 1.6;
}

.numbered-list {
    padding-left: 20px;
    color: #ccc;
}

.numbered-list li {
    margin-bottom: 10px;
}

/* Steps Flow */
.steps-flow {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 0;
    line-height: 1;
}

.flow-step strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.flow-step p {
    font-size: 0.9rem;
    margin: 0;
}

/* 4. Payment Wrapper */
.payment-wrapper {
    background: linear-gradient(to bottom, #101010, #000);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #222;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.p-badge {
    background: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #333;
    transition: 0.3s;
}

.p-badge:hover {
    border-color: #FFC107;
    color: #FFC107;
    background: #000;
}

/* 5. ID Card Premium */
.id-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.id-card-premium {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.id-card-premium:hover {
    transform: translateY(-5px);
    border-color: #FFC107;
}

.card-header-gold {
    background: linear-gradient(45deg, #B8860B, #FFC107);
    color: #000;
    padding: 15px;
    font-weight: 800;
    text-align: center;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.card-body {
    padding: 25px;
    text-align: center;
}

/* 6. Contact Banner */
.contact-banner {
    background: rgba(255, 193, 7, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 1px dashed rgba(255, 193, 7, 0.3);
}

.lg-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    margin-top: 20px;
    display: inline-block;
}

.pulse-animation {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .seo-title {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .steps-flow {
        flex-direction: column;
    }

    .flow-step {
        width: 100%;
    }

    .payment-wrapper {
        padding: 30px 15px;
    }

    .p-badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .benefit-item {
        padding: 25px;
    }
}


/* =========================================
   BLOGS SECTION STYLES
   ========================================= */

.blogs-section {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #080808;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 193, 7, 0.3);
}

.blog-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #FFC107;
}

.read-more {
    color: #FFC107;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: color 0.3s;
    text-decoration: none;
}

.read-more:hover {
    color: #fff;
    letter-spacing: 0.5px;
}


/* =========================================
   FAQ SECTION STYLES
   ========================================= */

.faq {
    background: #050505;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #111, #0a0a0a);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 193, 7, 0.2);
}

.faq-item.active {
    border-color: #FFC107;
    background: linear-gradient(145deg, #161616, #0e0e0e);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #e0e0e0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #FFC107;
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #FFC107;
    font-size: 1.4rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 500px;
    /* Adjust based on longest answer */
}


/* =========================================
   PREMIUM FOOTER STYLES
   ========================================= */

.main-footer {
    background: linear-gradient(to bottom, #050505, #000);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 70px 0 20px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFC107, transparent);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: #FFC107;
    border-radius: 2px;
}

.about-col p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    display: block;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #888;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.links-col ul li a::before {
    content: '›';
    margin-right: 8px;
    color: #FFC107;
    font-weight: bold;
    transition: 0.3s;
}

.links-col ul li a:hover {
    color: #FFC107;
    padding-left: 5px;
}

.links-col ul li a:hover::before {
    margin-right: 12px;
}

/* Footer SEO Tags */
.footer-seo {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 10px;
}

.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Response Breakpoints */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .links-col ul li a {}

    .links-col ul li a {
        justify-content: center;
    }
}

/* =========================================
   AUTH MODAL STYLES
   ========================================= */

.auth-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2147483647 !important;
    /* Max Z-Index */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD447 0%, #FFB800 100%);
    /* Gold Gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.floating-whatsapp i {
    font-size: 36px;
    color: #000;
}


.floating-whatsapp:hover {
    /* STRICTLY No Hover Effect */
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    /* Maintain base shadow */
    cursor: pointer;
    /* Ensure hand cursor */
}

.floating-whatsapp {
    animation: pulse-gold 2s infinite;
}

.auth-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.auth-modal-content {
    background: #111;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.auth-modal-overlay.active .auth-modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #FFC107;
}

.auth-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    color: #888;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.auth-tab.active {
    color: #FFC107;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFC107;
}

.auth-form-container {
    display: none;
    animation: fadeIn 0.4s ease;
}

.auth-form-container.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-container h3 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFC107;
    font-size: 1.2rem;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #FFC107;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #FFC107, #d4af37);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer a {
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}



/* Force Login/Get ID Buttons on Mobile Header */
@media (max-width: 768px) {

    /* Hide main navigation (Home, About, etc.) */
    nav.desktop-nav {
        display: none !important;
    }

    /* Show ONLY the auth buttons in header-right */
    .header-right .desktop-nav {
        display: flex !important;
        gap: 8px !important;
        margin-right: 0 !important;
    }

    .desktop-nav .btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .header-right {
        gap: 5px;
    }

    #sidebar-toggle {
        display: none !important;
    }
}

/* Ensure WhatsApp Icon stays black on hover */
.floating-whatsapp:hover i {
    color: #000 !important;
}