﻿: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;
        }

        /* Main Results Cards */
        .cards-container {
            margin-top: -50px;
            position: relative;
            z-index: 10;
            padding-bottom: 60px;
        }

        .lottery-card {
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            padding: 32px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
            transition: var(--transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .lottery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.12);
            border-color: var(--brand-gold);
        }

        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #dcfce7;
            color: #15803d;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: #fef3c7;
            color: #d97706;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 20px;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .card-meta {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-bottom: 24px;
        }

        .btn-draw {
            background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
            color: #fff;
            font-weight: 700;
            padding: 14px 28px;
            border-radius: 12px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 12px rgba(182, 45, 30, 0.25);
            border: none;
        }

        .btn-draw:hover {
            background: linear-gradient(135deg, #d33423, var(--brand-red));
            color: var(--brand-gold);
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(182, 45, 30, 0.35);
        }

        /* Trust & Security Features */
        .trust-section {
            background: #fff;
            padding: 60px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .feature-box {
            text-align: center;
            padding: 20px;
        }

        .feature-box i {
            font-size: 2.25rem;
            color: var(--brand-red);
            margin-bottom: 15px;
        }

        .feature-box h5 {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .feature-box p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Support / Contact Section */
        .contact-section {
            padding: 60px 0;
            background: #f1f5f9;
        }


        /* 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;
            }
        }