    :root {
            --bg-body: #120623;
            --bg-card: #1f1137;
            --bg-card-hover: #2a184a;
            --accent-yellow: #fcc200;
            --accent-purple: #8e44ad;
            --text-muted: #aab2bd;
            --ball-yellow: #fce68a;
        }

        body {
    background-color: #120623;
    font-family: 'Poppins', sans-serif;
    color: #f8f9fa;
	 overflow-x: hidden;
}
/* Fix muted text */
.text-muted {
    color: #cfcfcf !important;
}

        /* --- Header & Nav --- */
        .navbar {
            background-color: var(--bg-body);
            border-bottom: 1px solid #2d1b4e;
            padding: 5px 0;
            position: relative;
            z-index: 1000;
        }
        .navbar-brand {
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
        }
        
        .nav-link {
            color: white !important;
            font-size: 0.9rem;
            font-weight: 600;
            margin-left: 10px;
            padding-bottom: 5px;
            transition: color 0.3s;
            cursor: pointer;
        }
        .nav-link:hover, .nav-link.show {
            color: var(--accent-yellow) !important;
        }
        
        .nav-item.dropdown .nav-link.show {
            border-bottom: 2px solid var(--accent-yellow);
        }

        /* --- MARQUEE NOTIFICATION BAR (Boxed & Full Width) --- */
        .news-ticker-container {
            background-color: #0d041a; /* Darker than body */
            border: 1px solid #2d1b4e;
            border-radius: 0px; /* Rounded corners */
            color: #ddd;
            font-size: 0.85rem;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            height: 40px;
            display: flex;
            align-items: center;
            margin-bottom: 20px; /* Space between marquee and columns */
        }
        
        .news-ticker-text {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 30s linear infinite;
        }
        
        .ticker-item {
            display: inline-block;
            margin-right: 60px;
        }
        
        .ticker-item i {
            color: var(--accent-yellow);
            margin-right: 8px;
        }

        .ticker-highlight {
            color: var(--accent-yellow);
            font-weight: 700;
        }

        @keyframes marquee {
            0%   { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

        /* --- Mega Menu --- */
        .dropdown-menu.mega-menu {
            background-color: #150829;
            border: 1px solid #4b3b6b;
            border-radius: 20px;
            padding: 25px;
            width: 950px; 
            margin-top: 20px;
            left: 50% !important;
            transform: translateX(-50%) !important;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            display: none;
            z-index: 1001;
        }

        /* On mobile, mega menu needs to fit screen */
        @media (max-width: 991px) {
            .dropdown-menu.mega-menu {
                width: 100%;
                left: 0 !important;
                transform: none !important;
            }
        }

        .dropdown-menu.mega-menu::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
        }

        .dropdown-menu.mega-menu.show {
            display: block;
            animation: fadeIn 0.2s ease forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(-50%) translateY(10px) !important; }
            to { opacity: 1; transform: translateX(-50%) translateY(0) !important; }
        }

        .mega-menu-header {
            color: var(--accent-yellow);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .mega-item {
            display: flex;
            align-items: center;
            background-color: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 12px 15px;
            text-decoration: none;
            transition: all 0.2s ease;
            height: 100%;
        }

        .mega-item:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
        }

        .mega-item.dashed-border {
            border: 1px dashed var(--accent-yellow);
            background-color: transparent;
        }
        .mega-item.dashed-border:hover {
            background-color: rgba(252, 194, 0, 0.1);
        }

        .mm-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* Icon Colors */
        .bg-mm-lotto { background-color: #ef4255; }
        .bg-mm-plus1 { background-color: #ff6b35; }
        .bg-mm-plus2 { background-color: #ff9f1a; }
        .bg-mm-power { background: linear-gradient(135deg, #e056fd, #be2edd); }
        .bg-mm-powerplus { background-color: #6c5ce7; }
        .bg-mm-daily { background-color: #00b894; }
        .bg-mm-all { background-color: var(--accent-yellow); color: #000; }

        .mm-text h6 { margin: 0; color: white; font-weight: 700; font-size: 0.95rem; }
        .mm-text span { font-size: 0.75rem; color: #b2bec3; display: block; line-height: 1.2; margin-top: 2px; }

        /* --- Standard Components --- */
        .custom-card { background-color: var(--bg-card); border-radius: 12px; border: 1px solid #2d1b4e; padding: 15px; margin-bottom: 20px; }
        .section-title { color: var(--accent-yellow); font-size: 0.95rem; font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; }
        .section-title i { margin-right: 8px; }
        
        .ball-row { display: flex; gap: 5px; margin-top: 5px; }
        .ball { width: 24px; height: 24px; background-color: var(--ball-yellow); color: black; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.0rem; font-weight: 700; }
        .ball.red { background-color: #ff6b6b; color: white; }

        .lotto-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.03); padding: 10px; border-radius: 8px; margin-bottom: 10px; transition: 0.2s; }
        .lotto-row:hover { background: rgba(255,255,255,0.08); cursor: pointer; }
        .lotto-icon-box { width: 35px; height: 35px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; margin-right: 10px; }
        .bg-lotto { background-color: #eb4d4b; }
        .bg-power { background-color: #e056fd; }
        .bg-daily { background-color: #2ecc71; }
        .bg-mega { background-color: #3498db; }
        .bg-euro { background-color: #9b59b6; }
        .bg-super { background-color: #e67e22; }
        .lotto-info h6 { margin: 0; font-size: 0.85rem; font-weight: 600; }
        .lotto-info span { font-size: 0.7rem; color: var(--text-muted); }
        .jackpot-amt { color: var(--accent-yellow); font-weight: 700; font-size: 0.85rem; }
        .stat-row { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 8px; }
        .count-badge { background: var(--accent-yellow); color: black; padding: 2px 6px; border-radius: 4px; font-weight: bold; }
        .winner-item { display: flex; align-items: center; margin-bottom: 10px; }
        .winner-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 10px; font-size: 0.8rem; }
        .bg-av-1 { background-color: #2ecc71; }
        .bg-av-2 { background-color: #e056fd; }
        .bg-av-3 { background-color: #3498db; }
        .btn-tool { width: 100%; border-radius: 20px; font-weight: 600; font-size: 0.85rem; padding: 8px; margin-bottom: 10px; border: none; }
        .btn-purple { background-color: #a55eea; color: white; }
        .btn-gold { background: linear-gradient(90deg, #f1c40f, #d35400); color: white; }
        
        .hero-section { height: auto; padding: 50px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--bg-card); background-image: radial-gradient(circle at center, #2e1a53 0%, #1f1137 70%); border: 1px solid #2d1b4e; border-radius: 12px; margin-bottom: 30px; }
        .hero-icon { width: 80px; height: 80px; background-color: #a55eea; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 20px; box-shadow: 0 0 20px rgba(165, 94, 234, 0.5); }
        .hero-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 5px; }
        .hero-subtitle { color: var(--text-muted); margin-bottom: 15px; }
        .hero-jackpot { color: var(--accent-yellow); font-size: 1.5rem; font-weight: 700; margin-bottom: 30px; }
        .btn-hero-pri { background-color: var(--accent-yellow); color: black; font-weight: 700; border: none; padding: 10px 25px; border-radius: 6px; margin-right: 10px; }
        .btn-hero-sec { background-color: transparent; border: 1px solid var(--accent-yellow); color: var(--accent-yellow); font-weight: 600; padding: 10px 25px; border-radius: 6px; }
        
        .horoscope-card { background-color: #2a184a; padding: 20px; text-align: center; border-radius: 8px; margin-bottom: 20px; }
        .zodiac-icon { color: var(--accent-yellow); font-size: 2rem; margin-bottom: 10px; }
        .hot-numbers { display: flex; gap: 8px; justify-content: center; margin-bottom: 5px; }
        .hot-num { width: 30px; height: 30px; background-color: var(--ball-yellow); color: black; display: flex; align-items: center; justify-content: center; font-weight: bold; border-radius: 4px; }
        .form-control { background-color: rgba(255,255,255,0.05); border: 1px solid #4b3b6b; color: white; font-size: 0.85rem; }
        .form-control:focus { background-color: rgba(255,255,255,0.1); border-color: var(--accent-yellow); box-shadow: none; color: white; }
        .btn-sub { background-color: var(--accent-yellow); color: black; width: 100%; font-weight: 700; margin-top: 10px; border: none; }
        .next-draw-card { background: linear-gradient(135deg, #442a18, #2a182a); border: 1px solid #6b4c30; text-align: center; padding: 20px; border-radius: 8px; }
        .draw-amount { font-size: 1.8rem; font-weight: 700; color: var(--accent-yellow); display: block; }
        
        /* --- Numerology & Predictions Styles --- */
        .numerology-star-container {
            position: relative;
            display: inline-block;
            margin: 0 8px;
            color: var(--accent-yellow);
        }
        .numerology-star-container i {
            font-size: 3.5rem;
            filter: drop-shadow(0 0 5px rgba(252, 194, 0, 0.4));
        }
        .star-num {
            position: absolute;
            top: 54%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.9rem;
            font-weight: 700;
            color: black;
        }

.prediction-card{
    background-color:#1a102e;
    border:1px solid #4b3b6b;
    border-radius:8px;
    padding:5px 5px 6px;   /* tighter overall card height */
    text-align:center;
}

.prediction-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:34px;                 /* aligns divider through button center */
    height:1px;
    background:#4b3b6b;
    z-index:0;
}


.prediction-button{
    position:relative;
    z-index:2;                   /* keep button above divider */
    display:flex;
    justify-content:center;
    margin-top:5px;
    margin-bottom:2px;
    width:100%;
}

.prediction-button .btn-view-predictions{
    pointer-events:auto;
}
        .prediction-card-header {
            border-bottom: 1px solid #2d1b4e;
            padding-bottom: 10px;
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
        }
        .pred-ball-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .pred-ball {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
        .pb-blue { background-color: #3498db; }
        .pb-red { background-color: #e74c3c; }
        .pb-yellow { background-color: #f1c40f; color: black; }
        .pb-green { background-color: #2ecc71; }
        .pb-purple { background-color: #9b59b6; }
        
        .sub-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .btn-view-pred {
            background-color: var(--accent-yellow);
            color: black;
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            font-weight: 700;
            font-size: 0.8rem;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: transform 0.2s, background-color 0.2s;
        }
        .btn-view-pred:hover {
            background-color: #e3af00;
            color: black;
            transform: translateY(-2px);
        }

        footer { border-top: 1px solid #2d1b4e; padding: 40px 0; margin-top: 40px; font-size: 0.8rem; color: var(--text-muted); }
        .footer-title { color: var(--accent-yellow); font-weight: 700; margin-bottom: 15px; font-size: 0.9rem; }
        .footer-links { padding: 0; list-style: none; }
        .footer-links li { margin-bottom: 8px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; }
        .footer-links a:hover { color: white; }
        .app-btn { background-color: #2b2b2b; border: 1px solid #444; color: white; display: flex; align-items: center; padding: 8px 12px; border-radius: 6px; margin-bottom: 10px; text-decoration: none; width: 160px; }
        .app-btn i { font-size: 1.5rem; margin-right: 10px; }
        .app-btn small { display: block; font-size: 0.6rem; }
        .app-btn span { font-weight: 700; font-size: 0.9rem; }
        .app-btn:hover { background-color: #333; color: white; }
        .btn-view-all { background: transparent; border: 1px solid #4b3b6b; color: var(--accent-yellow); width: 100%; font-size: 0.8rem; padding: 8px; border-radius: 20px; margin-top: 10px; }
        .btn-view-all:hover { background: rgba(255,255,255,0.05); }
		
    .prediction-title {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .prediction-divider {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 15px 0 25px 0;
    }

    .game-label {
        font-size:13px;
        font-weight: 600;
        margin-bottom: 12px;
        color: white;
    }
/* ===============================
   FINAL CASINO LOTTO BALL STYLE
=============================== */

.balls-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    max-width:372px;
    margin:12px auto 0;
}
@media (max-width:768px){
    .balls-container{
        grid-template-columns:repeat(4, 52px);
    }
}

@media (max-width:480px){
    .balls-container{
        grid-template-columns:repeat(3, 52px);
    }
}
/* Main Ball */


/* COLOR SYSTEM */

.lotto-ball.blue {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 25%, transparent 35%),
        radial-gradient(circle at 30% 30%, #6ea8ff, #0047ab 60%, #001f5c);
}

.lotto-ball.red {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 25%, transparent 35%),
        radial-gradient(circle at 30% 30%, #ff8080, #d40000 60%, #7a0000);
}

.lotto-ball.yellow {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 25%, transparent 35%),
        radial-gradient(circle at 30% 30%, #ffe680, #f4b400 60%, #b8860b);
}

.lotto-ball.green {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 25%, transparent 35%),
        radial-gradient(circle at 30% 30%, #66ff99, #009933 60%, #004d1a);
}

.lotto-ball.purple {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 25%, transparent 35%),
        radial-gradient(circle at 30% 30%, #c084ff, #6a0dad 60%, #3b0066);
}
    /* Button Style */
.btn-view-predictions {
        background-color: #fcc200;
        color: #000;
        font-weight: 800;
        font-size: 0.95rem;
        padding: 10px 35px;
        border-radius: 50px;
        border: none;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
        transition: transform 0.2s;
    }

.btn-view-predictions:hover {
        background-color: #e3af00;
        color: #000;
        transform: scale(1.05);
    }
	

/* ===============================
   SHARE WIDGET STYLE
=============================== */

.share-title i {
    margin-right: 10px;
}

.share-item {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.share-item:last-child {
    border-bottom: none;
}

.share-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-name {
    font-size: 14px;
    font-weight: 600;
}

.share-date {
    font-size: 12px;
    opacity: 0.7;
}


.share-game {
    text-align: right;
    font-size: 12px;
    opacity: 0.85;
}

.view-all-btn {
    margin-top: 25px;
    text-align: center;
}

.view-all-btn a {
    display: block;
    padding: 18px;
    border-radius: 40px;
    border: 1px solid #4a2c7d;
    color: #fcc200;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.view-all-btn a:hover {
    background: rgba(255,255,255,0.05);
}

.no-data {
    opacity: 0.7;
    font-size: 14px;
}

/* ===============================
   SMALLER MOBILE CARD BUTTONS
=============================== */

.mobile-cards {
    display: none;
}

@media (max-width: 768px) {

    .mobile-cards {
        display: flex;
        gap: 10px;            /* smaller gap */
        margin: 15px 0;
    }

    .mobile-card {
        flex: 1;
        background: #2a1247;
        border: 1px solid #3d2066;
        border-radius: 12px;  /* smaller radius */
        padding: 12px;        /* reduced padding */
        text-align: center;
        text-decoration: none;
        color: white;
        transition: 0.3s ease;
    }

    .mobile-card:hover {
        background: #341a5a;
    }

    .mobile-card-icon img {
        width: 28px;          /* smaller icon */
        height: 28px;
        object-fit: contain;
        margin-bottom: 6px;
    }

    .mobile-card-text {
        font-size: 13px;      /* smaller text */
        font-weight: 600;
    }
}

/* ===============================
   FIX PLACEHOLDER COLOR
=============================== */

.form-control::placeholder {
    color: #cccccc !important;
    opacity: 1; /* important for Firefox */
}

/* For older browser support */
.form-control:-ms-input-placeholder {
    color: #cccccc !important;
}

.form-control::-ms-input-placeholder {
    color: #cccccc !important;
}

.btn-add-review {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 48px;
            background-color: transparent;
            color: #f4c430;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            border: 2px solid #4a3b6e;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 280px;
        }

        .btn-add-review:hover {
            background-color: rgba(244, 196, 48, 0.1);
            border-color: #f4c430;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244, 196, 48, 0.2);
        }

        .btn-add-review:active {
            transform: translateY(0);
        }
		
		/* =========================
   SIDEBAR COMPACT CONTAINER
========================= */
.sidebar-lotto-section {
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sidebar-lotto-section h2 {
    color: #fcc200;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sidebar-lotto-section p {
    color: #aab2bd;
    font-size: 0.7rem;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* =========================
   LOTTO BALL STYLE
========================= */
.balls-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
    flex-wrap:nowrap;
    width:100%;
}

.lotto-ball{
    width:38px !important;
    height:38px !important;
	background: var(--ball-bg);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    flex:0 0 auto;
    overflow:hidden;

    box-shadow:
        inset -8px -8px 12px rgba(0,0,0,0.35),
        inset 6px 6px 10px rgba(255,255,255,0.30),
        0 8px 14px rgba(0,0,0,0.35);
}

/* Shine effect on the ball */
.lotto-ball::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 10px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.lotto-ball span{
    width:58%;
    height:58%;
    background:radial-gradient(circle at 35% 35%, #ffffff, #e8e8e8);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:14px !important;
    color:#000;
}

.ball-wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.bonus-label{
    font-size:12px !important;
    margin-top:5px;
	margin-right:10px;
	text-align:right;
}

.bonus-ball{
    margin-left:6px;
}

.result-title{
    font-size:14px;
    text-align:left;
	padding-top:10px;
    margin-bottom:10px;
    color:#fff;
	margin-left:10px;
}


/* =========================
   FOOTER LABEL
========================= */
.valid-label {
    margin-top: 10px;
    font-size: 0.65rem;
    color: #777;
    font-style: italic;
}

/* ===============================
   PREMIUM QUICK ACTION BUTTONS
=============================== */

/* Container - Prevent wrapping on mobile */
.quick-cards {
    flex-wrap: nowrap !important;
}

/* Base style for all cards */
.quick-card {
    border: none !important; /* Removes Bootstrap's default border */
    border-radius: 12px !important;
    transition: transform 0.2s ease, filter 0.2s ease;
    min-width: 0; /* Important for flex scaling */
}

/* Match the exact colors from your image */
.btn-card-result { background-color: #744fc6 !important; }
.btn-card-check  { background-color: #208b57 !important; }
.btn-card-history { background-color: #007bff !important; }

/* Desktop Hover Effect */
.quick-card:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Icon & Title spacing */
.quick-card .icon {
    display: block;
    font-size: 2.2rem; /* Adjusted size */
}

.quick-card .title {
    font-size: 1rem;
}

/* MOBILE OPTIMIZATION: Shrink items to fit one row */
@media (max-width: 576px) {
    .quick-cards {
        gap: 0.5rem !important; /* Smaller gap on mobile */
    }
    
    .quick-card .card-body {
        padding: 12px 5px !important;
    }

    .quick-card .icon {
        font-size: 1.5rem !important; /* Smaller icons on mobile */
        margin-bottom: 4px !important;
    }

    .quick-card .title {
        font-size: 0.75rem !important; /* Smaller text on mobile */
    }
}


/* General Font */

.main-title {
            display: inline-flex;
            align-items: center;
            justify-content: center;
			color:#FC3;
            text-decoration: none;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 280px;
        }

.sub-title {
            display: inline-flex;
            align-items: center;
            justify-content: center;
			color:#FC3;
            text-decoration: none;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: 0.5px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 280px;
        }
		
.ball-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
			color:#FFF;
            text-decoration: none;
            font-size: 15px;
           
        }
.button-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
			color:#FFF;
            text-decoration: none;
            font-size: 15px;
           
        }
		

.prediction-ball{
    --ball-bg:#27ae60;
}

.bonus-ball{
    --ball-bg:#e74c3c;
}
.ball-yellow { --ball-bg:#f1c40f; }
.ball-blue   { --ball-bg:#3498db; }
.ball-green  { --ball-bg:#2ecc71; }
.ball-purple { --ball-bg:#9b59b6; }
.ball-orange { --ball-bg:#e67e22; }	

.result-card{
    background: #45257A;
    border-radius:3px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* title spacing */
.result-card h3,
.result-card .result-title{
    margin-bottom:15px;
}

/* bonus label spacing */
.bonus-label{
    margin-top:10px;
    font-size:16px;
    color:white;
}


/* =========================
   GRID LAYOUT
========================= */
.prediction-grid {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(2, 1fr); /* default = 2 columns */
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1px;
}

/* =========================
   🔥 1 CARD → CENTER
========================= */
.prediction-grid:has(.prediction-box:only-child) {
    grid-template-columns: 1fr;
    max-width: 450px; /* center nicely */
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 768px) {
    .prediction-grid {
        grid-template-columns: 1fr; /* always 1 column */
        max-width: 100%;
    }
}

.prediction-box{
    background:#331C59;
    border-radius:8px;
    padding:8px 10px 16px;    /* extra bottom padding under balls */
    min-height:auto;          /* remove forced tall box height */
}

.prediction-box h3{
    margin:0 0 10px;
    font-size:1.15rem;
    line-height:1.2;
}

/* title */
.prediction-label{
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;
    color:white;
}


/* responsive */
@media (max-width:768px){
    .prediction-grid{
        grid-template-columns:1fr;
    }
}
.prediction-title{
    text-align:center;
    font-size:16px;
    color:white;
    margin-bottom:5px;
}

.prediction-divider{
    height:1px;
    background:rgba(255,255,255,0.2);
    margin-bottom:5px;
}

.result-search{
    background:#1b0d35;
    padding:20px;
    border-radius:12px;
    margin-bottom:20px;
}

.search-row{
    display:flex;
    gap:15px;
    align-items:flex-end;
    justify-content:center;
    flex-wrap:wrap;
}

.search-group{
    display:flex;
    flex-direction:column;
}

.search-group label{
    font-size:14px;
    margin-bottom:5px;
    color:#ccc;
}

.search-group input,
.search-group select{
    padding:8px 10px;
    border-radius:6px;
    border:1px solid #444;
    background:#120623;
    color:#fff;
}

.search-btn{
    align-self:flex-end;
}

.btn-search{
    background:#ffc400;
    border:none;
    padding:9px 22px;
    border-radius:20px;
    font-weight:600;
    cursor:pointer;
}

/* ===============================
   LOTTO RESULT CARD
=============================== */

.pred-card{
    background:#5C32A3;
    border:1px solid #4c2a7a;
    border-radius:25px;
    padding:30px 20px;
    margin-bottom:25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.35);
}

.pred-title{
    font-size:20px;
    font-weight:700;
    color:#fff;
    margin-bottom:5px;
}


.pred-date{
    font-size:14px;
    color:#c9b7f5;
    margin-bottom:20px;
}
h1 {
  /* Font properties */
  text-align: center;
  font-family: sans-serif; /* Use a common font or specify a web font */
  font-size: 14px;      /* Use 'rem' or 'em' for responsive text sizing *    /* Adjust boldness (e.g., normal, bold, 400, 700) */
  color: #fff; 
}

@media (max-width:768px){
.desktop-ad{
display:none;
}
}

.mobile-banner{
width:320px !important;
height:50px !important;
max-width:320px !important;
overflow:hidden;
margin:auto;
}


.menu-card{
    border-radius:5px;
    transition:0.2s;
	margin-bottom:30px;
	background:#383697;
}

.menu-card:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.menu-icon{
    font-size:24px;
}

.menu-text{
    font-size:14px;
    font-weight:600;
	color:#FFF;
}

/* Mobile adjustments */
@media (max-width:576px){

.menu-card{
    padding:6px !important;
}

.menu-icon{
    font-size:18px;
}

.menu-text{
    font-size:10px;
}

}

