.lottery-ball {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background: radial-gradient(circle at 30% 30%, #f8f9fa, #e9ecef);
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1), inset 0 -2px 0 rgba(0,0,0,0.05);
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0.35rem;
            font-family: monospace;
            color: #1e2a3a;
            transition: transform 0.1s ease;
        }
        .bonus-ball {
            background: radial-gradient(circle at 30% 30%, #f7c35c, #f39c12);
            color: #2c3e2f;
            box-shadow: 0 4px 12px rgba(243,156,18,0.3);
        }
        .super-bonus {
            background: radial-gradient(circle at 30% 30%, #e65c5c, #c0392b);
            color: white;
        }
        .numbers-container {
            background: #fef9e8;
            border-radius: 2rem;
            padding: 1.5rem;
            margin: 1rem 0;
            border: 1px solid #ffdfb8;
            text-align: center;
        }
        .result-number-group {
            margin-bottom: 1rem;
        }
        .result-label {
            font-weight: 600;
            color: #7f8c8d;
            letter-spacing: 1px;
            margin-right: 12px;
        }
        .lottery-panel {
            background-color: #ffffff;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            transition: all 0.2s;
        }
        .custom-card-header {
            background: transparent;
            border-bottom: 2px solid #f1c40f;
            font-weight: 700;
        }
        .probability-badge {
            background: #ecf0f1;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-family: monospace;
        }
        .glowing-btn {
            box-shadow: 0 6px 14px rgba(241, 196, 15, 0.3);
            transition: all 0.2s;
        }
        .glowing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 18px rgba(241, 196, 15, 0.4);
        }
        .fa-shield-alt {
            color: #2ecc71;
        }
        .rng-note {
            border-left: 4px solid #3498db;
            background: #f4f9ff;
        }
        .lottery-history {
            max-height: 180px;
            overflow-y: auto;
            font-size: 0.9rem;
        }
        .history-item {
            border-bottom: 1px dashed #e0e0e0;
            padding: 0.5rem 0;
        }
        .property-table td, .verification-badge {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border: 2px solid #2ecc71;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .test-result {
            font-family: 'Courier New', monospace;
            background: #2c3e50;
            color: #ecf0f1;
            padding: 0.75rem;
            border-radius: 8px;
            overflow-x: auto;
        }
        @media (max-width: 576px) {
            .lottery-ball { width: 42px; height: 42px; font-size: 1.2rem; margin: 0.2rem; }
        }