@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
    /* background-color: #f8f9fa;  */
    /* background-color: #f8f9fa !important; Ye ekdum perfect soft white hai */

}
.bg-pale-white {
    background-color: #f8f9fa !important; /* Ye ekdum perfect soft white hai */
}
.bg-warm-white {
    background-color: #f4f4f2 !important;
}

.content-box { 
    max-width: 1140px; 
    margin: 0 auto; 
    padding: 0 20px; 
}



/* Green Results Dropdown */
.results-dropdown { 
    width: 340px; 
    background: white; 
    border-radius: 24px; 
    position: absolute; 
    top: 45px; 
    left: -50px; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); 
    border: 1px solid #f0f0f0; 
    z-index: 1000; 
    overflow: hidden; 
}

.dropdown-footer { 
    background-color: #15803d; /* Tailwind green-700 */
    color: white; 
    padding: 1rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-family: monospace; 
    font-weight: bold; 
    font-size: 0.75rem; 
}

/* Hero Carousel */
.carousel-container { 
    position: relative; 
    width: 100%; 
    height: 370px; 
    overflow: hidden; 
    background: linear-gradient(90deg, #ff4e00 0%, #ec9f05 100%); 
}

.carousel-track { 
    display: flex; 
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); 
    height: 100%; 
}

.carousel-slide { 
    min-width: 100%; 
    height: 100%; 
    display: flex; 
    align-items: center; 
}
.carousel-track {
    display: flex;
    height: 100%;
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
}
.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #22c55e; /* Green Theme */
    width: 24px;
    border-radius: 10px;
}

.carousel-slide img {
    filter: brightness(1.2) contrast(1.1); /* 1.2 ka matlab 120% brightness */
    transition: filter 0.3s ease; /* Smooth transition */
}
/* UI Elements */
.slot-ball { 
    background: white; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 1.5px solid #eee; 
    width: 36px; 
    height: 36px; 
}

.reel div { 
    height: 36px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 900; 
    font-size: 14px; 
}

.reel { 
    transition: transform 2s cubic-bezier(0.15, 0.88, 0.3, 1); 
}

.scratch-img-box { 
    height: 220px; 
    width: 100%; 
    position: relative; 
    overflow: hidden; 
    border-radius: 20px 20px 0 0; 
}

.scratch-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s ease; 
}

.card-wrapper:hover img { 
    transform: scale(1.1); 
}

.card-info { 
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); 
    position: absolute; 
    inset: 0; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    padding: 15px; 
}

/* Moving Ticker */
@keyframes scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

.ticker-wrap { 
    display: flex; 
    width: max-content; 
    animation: scroll 30s linear infinite; 
}

.ticker-item { 
    background: white; 
    border: 1px solid #eee; 
    padding: 15px 25px; 
    margin: 0 10px; 
    border-radius: 15px; 
    min-width: 220px; 
    text-align: center; 
}

/* Mobile Sidebar */
#mobile-sidebar { 
    position: fixed; 
    top: 0; 
    right: 0; 
    height: 100%; 
    width: 280px; 
    background: white; 
    z-index: 2001; 
    transform: translateX(100%); 
    transition: 0.3s ease; 
    box-shadow: -10px 0 30px rgba(0,0,0,0.1); 
}

#mobile-sidebar.sidebar-open { 
    transform: translateX(0); 
}

#mobile-overlay { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.5); 
    z-index: 2000; 
    display: none; 
}

.section-gap { 
    padding-top: 80px; 
    padding-bottom: 80px; 
}

.sidebar-open {
        transform: translateX(0) !important;
}
#mobile-sidebar {
    /* Manual override agar class miss ho jaye */
    transform: translateX(100%);
}

#mobile-sidebar:not(.translate-x-full) {
    transform: translateX(0);
}
/* 1. Moving Gradient Background */
    .animated-bg {
        background: linear-gradient(125deg, #ffffff, #f0fdf4, #ffffff, #dcfce7);
        background-size: 400% 400%;
        animation: gradientMove 10s ease infinite;
    }

    @keyframes gradientMove {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* 2. Text Hover Effect Fix */
    .nav-item span {
        -webkit-text-stroke: 1px transparent;
    }
    .nav-item:hover span {
        -webkit-text-stroke: 1px rgba(0,0,0,0.05); /* Halka sa outline premium feel ke liye */
    }

    @keyframes shimmer {
    100% { transform: skewX(-12deg) translateX(200%); }
}

/* Background Liquid Effect */
.wave-bg {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #f0fdf4 0%, #ffffff 100%);
    animation: pulseBg 4s ease-in-out infinite alternate;
}

@keyframes pulseBg {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

#logo-anim span:nth-child(n+4) {
    color: #16a34a; /* LOTTO part green */
}

 /* Premium Glow Animation */
   
/* Premium VIP Modal CSS */
.modal-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.backdrop-overlay {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.vip-card {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 3.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    animation: modalIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-header {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-indicator {
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 1rem;
}

.header-title {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.6em;
    opacity: 0.5;
}

.modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.premium-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.4s ease;
}

.premium-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Gradients & Glows */
.lucky-glow { background: linear-gradient(135deg, #00f2fe, #4facfe); box-shadow: 0 0 20px rgba(79, 172, 254, 0.4); }
.weekly-glow { background: linear-gradient(135deg, #fccb90, #d57eeb); box-shadow: 0 0 20px rgba(213, 126, 235, 0.4); }
.monthly-glow { background: linear-gradient(135deg, #667eea, #764ba2); box-shadow: 0 0 20px rgba(118, 75, 162, 0.4); }

.btn-content { flex: 1; text-align: left; }
.btn-title { display: block; color: #fff; font-weight: 900; font-size: 15px; text-transform: uppercase; }
.btn-subtitle { display: block; color: rgba(255, 255, 255, 0.4); font-weight: 700; font-size: 9px; text-transform: uppercase; margin-top: 2px; }

.arrow-icon { color: rgba(255, 255, 255, 0.1); font-size: 0.8rem; }

.close-panel-btn {
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #444;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    cursor: pointer;
    font-size: 10px;
    transition: 0.3s;
}

.close-panel-btn:hover { color: #fff; }

/* Animations */
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.float-anim { animation: float 2s infinite ease-in-out; }



/* alerts styling  */
/* Custom Popup Styling */
.sexy-popup {
    border-radius: 20px !important;
    background: #1a1a1a !important; /* Dark theme */
    color: #fff !important;
    border: 1px solid #333;
}

.sexy-title {
    color: #ff4444 !important; /* Red for Error */
    font-weight: 800 !important;
    text-transform: uppercase;
}

.sexy-confirm-btn {
    background: linear-gradient(45deg, #ff4444, #cc0000) !important;
    border-radius: 10px !important;
    padding: 10px 30px !important;
    font-weight: bold !important;
}
