:root {
            --primary: #b71c1c;
            --primary-dark: #800000;
            --secondary: #ffeb3b;
            --bg: #121212;
            --card-bg: #1e1e1e;
            --text: #e0e0e0;
            --border: #444;
            --blue-link: #4da3ff;
        }

        /* Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg); 
            color: var(--text); 
            font-family: 'Segoe UI', Arial, sans-serif; 
            line-height: 1.6;
        }
        a { text-decoration: none; transition: 0.3s; }

        /* Header */
        header {
            background-color: var(--primary);
            padding: 20pxpx;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        header h1 { color: #fff; font-size: 1.8rem; text-transform: uppercase; }

        .announcement { background: #2c2c2c; color: #fff; padding: 8px; font-weight: bold; }
        .date-bar { background: #000; color: var(--secondary); text-align: center; padding: 10px; font-weight: bold; font-size: 0.9rem; }

        /* Navigation */
        nav { background: #333; display: flex; justify-content: center; flex-wrap: wrap; padding: 5px; position: sticky; top: 0; z-index: 100; }
        nav a { color: #fff; padding: 10px 15px; font-weight: 600; font-size: 0.85rem; }
        nav a:hover { color: var(--secondary); }

        /* Main Layout */
        .container { max-width: 1100px; margin: 20px auto; padding: 0 15px; }
        .section-title {
            border-left: 5px solid var(--primary);
            padding-left: 12px; margin-bottom: 20px; font-size: 18px; color: #fff;
        }

        /* --- NEW SUMMARY TABLE STYLE --- */
        .summary-container {
            margin-bottom: 30px;
            background: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
        }
        .summary-table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
        }
        .summary-table th {
            background: #2c2c2c;
            color: var(--secondary);
            padding: 12px;
            font-size: 0.85rem;
            text-transform: uppercase;
            border-bottom: 2px solid var(--primary);
        }
        .summary-table td {
            padding: 5px 5px;
            border-bottom: 1px solid #333;
            font-weight: bold;
        }
        .summary-game-name { color: #fff; text-align: left; padding-left: 20px !important; }
        .summary-old { color: #888; font-size: 1.1rem; }
        .summary-new { color: var(--secondary); font-size: 1.4rem; }
        .summary-time { color: var(--blue-link); font-size: 0.85rem; }

        /* --- IMAGE STYLE RESULT TABLE --- */
        .live-result-wrapper {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            margin-bottom: 30px;
        }

        .result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 25px;
            border-bottom: 1px solid #333;
        }

        .result-row:last-child { border-bottom: none; }

        .game-info { display: flex; flex-direction: column; }
        .game-name { font-size: 1.2rem; font-weight: bold; color: #fff; text-transform: uppercase; }
        .game-meta { font-size: 0.85rem; color: #aaa; margin-top: 4px; }
        .game-meta a { color: var(--blue-link); font-weight: 600; }
        .game-meta a:hover { text-decoration: underline; }

        .game-numbers { display: flex; gap: 80px; } 
        .num-old, .num-new { font-size: 1.8rem; font-weight: 500; min-width: 40px; text-align: right; }
        .num-old { color: #888; }
        .num-new { color: #fff; }

        /* Monthly Table Styles */
        .table-responsive { overflow-x: auto; margin-bottom: 30px; border-radius: 8px; border: 1px solid var(--border); }
        table { width: 100%; border-collapse: collapse; background: var(--card-bg); text-align: center; }
        th { background: var(--primary); color: #fff; padding: 15px; font-size: 0.9rem; border-bottom: 2px solid var(--secondary); }
        td { padding: 15px; border: 1px solid var(--border); font-weight: bold; }

        .blink { animation: blinker 1.5s linear infinite; color: #ff5252; font-weight: bold; }
        @keyframes blinker { 50% { opacity: 0; } }

        .row-even { background: #1a1a1a; }
        .row-odd { background: #262626; }
        .text-pink { color: #ff00ff; }
        .text-wait { color: #00ff00; }

        /* Grid */
        .chart-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 10px; margin-top: 20px; margin-bottom: 30px;
        }
        .newrock {
            background: #140e05; color: #fff;
            padding: 15px 5px; border: 1px solid #555; border-radius: 4px;
            font-size: 13px; text-align: center; font-weight: bold;
        }
        .newrock:hover { background: var(--primary); transform: translateY(-3px); }

        /* Floating WhatsApp Button */
        .whatsapp-btn {
            position: fixed; bottom: 20px; right: 20px;
            background: #25d366; color: white; padding: 12px 25px;
            border-radius: 50px; font-weight: bold; z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        /* Footer */
        .main-footer { background: #000; border-top: 3px solid var(--primary); padding: 40px 20px 20px; margin-top: 50px; }
        .footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
        .footer-section h4 { color: var(--secondary); margin-bottom: 15px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 8px; }
        .footer-links a { color: #999; font-size: 14px; }
        .footer-links a:hover { color: #fff; padding-left: 5px; }
        .footer-bottom { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #333; font-size: 12px; }
        .site-disclaimer {
        background-color: #111;
        border-left: 5px solid #c62828; 
        padding: 15px;
        margin: 20px 10px;
        border-radius: 4px;
        font-family: sans-serif;
        line-height: 1.6;
        color: #666;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .disclaimer-title {
        font-weight: bold;
        color: #c62828; 
        display: block;
        margin-bottom: 8px;
        font-size: 1.1em;
    }

    .disclaimer-text {
        font-size: 11px;
        text-align: justify;
    }

        @media (max-width: 600px) {
            header h1 { font-size: 1.4rem; }
            .game-numbers { gap: 30px; }
            .num-old, .num-new { font-size: 1.3rem; }
            .game-name { font-size: 1rem; }
            .summary-table th { font-size: 0.7rem; padding: 8px; }
            .summary-new { font-size: 1.1rem; }
        }