﻿:root {
            --primary-red: #c026d3;
            --brand-red: #b62d1e;
            --brand-dark: #6b0d04;
            --brand-gold: #fbbf24;
            --brand-gold-glow: rgba(251, 191, 36, 0.35);
            --bg-dark: #0f172a;
            --card-bg: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f8fafc;
            color: var(--text-main);
            overflow-x: hidden;
        }

        /* Top Announcement Bar */
        .top-ticker {
            background: #1e1b4b;
            color: #f1f5f9;
            font-size: 0.875rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .ticker-badge {
            background: var(--brand-gold);
            color: #000;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            text-transform: uppercase;
        }
/* =========================
   Header & Navbar
========================= */

header {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-red));
    border-bottom: 3px solid var(--brand-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}

/* Logo */
.logo {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px var(--brand-gold-glow);
}

.logo span {
    color: var(--brand-gold);
}

/* Desktop Menu */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    padding: 8px 14px;
    border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.08);
}

/* Toggle Button */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;

    color: #fff;
    font-size: 1.45rem;
    cursor: pointer;

    transition: 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
}


/* =========================
   Mobile Navbar
========================= */

@media (max-width: 768px) {

    .navbar-custom {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Toggle show */
    .mobile-toggle {
        display: flex;
    }

    /* Mobile Menu */
    .nav-links {
        position: absolute;

        top: calc(100% + 3px);
        left: 0;

        width: 100%;

        background: linear-gradient(
            135deg,
            var(--brand-dark),
            var(--brand-red)
        );

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        max-height: 0;
        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease;

        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);

        z-index: 999;
    }

    /* Menu open */
    .nav-links.show {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;

        padding: 15px 22px;

        border-radius: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.10);
        color: var(--brand-gold);
    }
}

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(107, 13, 4, 0.88)), 
                        url('banner.1.jpg') center/cover no-repeat;
            padding: 90px 0 110px;
            color: #1e1b4b;
            text-align: center;
            position: relative;
        }

        .hero-title {
            font-size: 3.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 620px;
            margin: 0 auto 35px;
        }

        .hero-stats {
            display: inline-flex;
            gap: 30px;
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(12px);
            padding: 16px 32px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--brand-gold);
        }

        .stat-label {
            font-size: 0.75rem;
            color: #cbd5e1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .hero-stats { display: none; }
        }

        @media (max-width: 768px) {
            .mobile-toggle { display: block; }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--brand-dark);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }

            .nav-links.show {
                max-height: 280px;
            }

            .nav-links li { width: 100%; }

            .nav-links a {
                display: block;
                padding: 15px 24px;
                border-radius: 0;
                border-top: 1px solid rgba(255,255,255,0.05);
            }

            .hero-section { padding: 60px 0 90px; }
            .hero-title { font-size: 2rem; }
            .cards-container { margin-top: -30px; }
        }
.hero-banner{
    text-align: center;
    align-items: center;
    background-color: #dbecb7;
    border: #fdf6f6;
    border-radius: 20px;

}

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(107, 13, 4, 0.88)), 
                        url('banner.1.jpg') center/cover no-repeat;
            padding: 90px 0 110px;
            color: #fff;
            text-align: left;
            position: relative;
        }

        .hero-title {
            font-size: 3.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 620px;
            margin: 0 auto 35px;
        }

        .hero-stats {
            display: inline-flex;
            gap: 30px;
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(12px);
            padding: 16px 32px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--brand-gold);
        }

        .stat-label {
            font-size: 0.75rem;
            color: #cbd5e1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Lottery Card & Table */
        .lottery-card {
            width: 100%;
            margin-bottom: 28px;
            background: #fff;
            border: 3px solid transparent;
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(#fff, #fff) padding-box,
                        linear-gradient(135deg, #ef233c, #ff7a00, #fff200, #22c55e, #00a8ff, #8b5cf6, #ec4899) border-box;
            box-shadow: 0 10px 25px rgba(0,0,0,.08);
        }

        .table-header-banner {
            padding: 12px 10px;
            color: #fff;
            text-align: center;
            font-size: 16px;
            font-weight: 900;
            letter-spacing: 0.5px;
            background: linear-gradient(90deg, #680b08, #c72019, #ff7a00, #c72019, #680b08);
            border-bottom: 3px solid #fff200;
            text-shadow: 1px 1px 2px #000;
        }

        .table-sub-header {
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
            font-size: 13px;
            font-weight: 800;
            color: #450a0a;
            background: linear-gradient(90deg, #fee2e2, #ffedd5, #fef9c3, #dcfce7, #dbeafe, #ede9fe);
            border-bottom: 2px solid #ff9800;
            flex-wrap: wrap;
        }

        .badge-price {
            padding: 4px 12px;
            color: #fff;
            border-radius: 30px;
            background: linear-gradient(135deg, #dc2626, #ef233c, #ff7a00);
            border: 1.5px solid #fff200;
            font-size: 12px;
            font-weight: 800;
            box-shadow: 0 0 6px #ff7a00;
            white-space: nowrap;
        }

        .table-scroll {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .results-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .results-table th {
            padding: 10px 6px;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,.3);
            text-shadow: 1px 1px 2px #000;
            white-space: nowrap;
        }

        .results-table th:nth-child(1) { background: linear-gradient(180deg, #ff5268, #b91c1c); }
        .results-table th:nth-child(2) { background: linear-gradient(180deg, #a78bfa, #6d28d9); }
        .results-table th:nth-child(3) { background: linear-gradient(180deg, #ffad42, #ea580c); }
        .results-table th:nth-child(4) { background: linear-gradient(180deg, #38d9ff, #0284c7); }
        .results-table th:nth-child(5) { background: linear-gradient(180deg, #fff200, #f59e0b); color: #451a03; }

        .results-table td {
            padding: 10px 4px;
            text-align: center;
            font-size: 13px;
            font-weight: 800;
            border-right: 1px solid #fff;
            border-bottom: 1px solid #e2e8f0;
        }

        .results-table td:nth-child(1) { color: #991b1b; background: linear-gradient(135deg, #fff1f2, #fecaca); border-left: 4px solid #ef233c; }
        .results-table td:nth-child(2) { color: #581c87; background: linear-gradient(135deg, #faf5ff, #ddd6fe); border-left: 4px solid #8b5cf6; }
        .results-table td:nth-child(3) { color: #9a3412; background: linear-gradient(135deg, #fff7ed, #fed7aa); border-left: 4px solid #ff7a00; }
        .results-table td:nth-child(4) { color: #075985; background: linear-gradient(135deg, #ecfeff, #bae6fd); border-left: 4px solid #00a8ff; }
        .results-table td:nth-child(5) { background: linear-gradient(135deg, #fffde7, #fde68a); border-left: 4px solid #ffd600; }

        .result-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1px;
            color: #713f12;
            background: linear-gradient(180deg, #fff, #fff200 45%, #ff9800);
            border: 1.5px solid #b45309;
            box-shadow: 0 2px 0 #92400e;
            white-space: nowrap;
        }

       
       /* Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 40px 0 25px;
        }

        .footer-brand {
            color: #fff;
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            margin: 0 12px;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
        }

        .footer-links a:hover {
            color: var(--brand-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 25px;
            margin-top: 30px;
            font-size: 0.85rem;
        }
 /* Responsive Mobile Navigation */
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--brand-dark);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }

            nav.show {
                max-height: 250px;
            }

            nav a {
                display: block;
                width: 100%;
                padding: 14px 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 0;
            }

            .section-header h1 {
                font-size: 2rem;
            }

            .neon-text {
                font-size: 1.4rem;
            }

            .header-title {
                font-size: 1.4rem;
            }
        }