/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Upgraded Welcome Section */
.welcome-section {
    background: linear-gradient(180deg, #fff9f0 0%, #f9f9f9 100%);
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #ff0000;
}

/* Main Heading */
.welcome-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a237e;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Live Result Animation */
.live-result {
    font-size: 1.4rem;
    font-weight: 900;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 8px;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(90deg, #ff0000, #ff9900, #00ccff, #ff00ff, #00ff66);
    background-size: 300% 300%;
    animation: liveGradient 4s linear infinite, livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

/* Gradient Movement */
@keyframes liveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulse Effect */
@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
    }
}

/* Shine Effect */
.live-result::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-20deg);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 120%; }
}

.dot-icon {
    color: green; /* Dark gray dot */
    margin: 0 8px;
    font-size: 8px; /* Adjust size as needed */
    vertical-align: middle;
}

/* Marquee Styling */
.marquee-text {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    padding: 6px 10px;
    background: #fff8e1;
    border: 1px solid #ff9800;
    border-radius: 5px;
    display: inline-block;
    animation: marqueeBlink 2s infinite alternate;
}

/* Blinking border for marquee */
@keyframes marqueeBlink {
    0% { border-color: #ff9800; }
    100% { border-color: #ff0000; }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .welcome-heading { font-size: 2rem; }
    .live-result { font-size: 1.1rem; padding: 4px 10px; }
    .marquee-text { font-size: 0.9rem; }
}

/* Results Section */
.results-section {
    padding: 0;
    background-color: #fff;
}

.section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 30px;
}

.results-list {
    padding: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: 1.2rem;
}

.game-name {
    font-family: serif !important;
    font-weight: 500;
    color: red;
}

.region {
    font-weight: 600;
    font-size: 2rem;
}

.time {
    font-size: 1rem;
    color: #0066cc;
    margin-left: 5px;
}

.game-result .number {
    font-family: serif !important;
    font-size: 2rem;
    font-weight: 900;
    color: green;
}

.game-result .status {
    font-family: serif !important;
    font-size: 2rem !important;
    font-weight: 900;
    color: green;
}

.result-divider {
    border: 0;
    height: 2px;
    background-color: black;
    margin: 10px 0;
}

/* Month Tabs Styling */
.section-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 8px 20px;
    background-color: #f1f5f9;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tab-btn:hover {
    background-color: #e2e8f0;
    color: #475569;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Existing Table Styles */
.result-table {
    width: 100%;
    border-collapse: collapse;
}

/* Booking Section */
.booking-section {
    background-color: #e8f5e9;
    padding: 5px 0;
    text-align: center;
}

.booking-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.whatsapp-button {
    font-size: 1.2rem;
    padding: 10px 25px;
    border-radius: 20px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
}

.whatsapp-button i {
    margin-right: 8px;
}

/* Result Section */
.result-section {
    padding: 40px 0;
    background-color: #fff;
}

.month-table {
    margin-bottom: 30px;
}

.month-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
}

.result-table th,
.result-table td {
    text-align: center;
    vertical-align: middle;
}

/* Information Section */
.info-section {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.info-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a237e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.info-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}
/* All Months Results Button */
.all-months-btn {
    background-color: skyblue;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.all-months-btn:hover {
    background-color: deepskyblue;
    color: white;
}
/* Warning Section Styles */
.warning-section {
    background-color: #fff8f8;
    border-top: 3px solid #ff6b6b;
    padding: 30px 0;
    margin-top: 40px;
}

.warning-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.warning-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.warning-content h4 {
    font-size: 1.5rem;
    color: #d63031;
    margin-bottom: 20px;
}

.legal-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.warning-symbols {
    font-size: 1.5rem;
    letter-spacing: 5px;
}

/* Info Section Styles */
.info-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.info-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.info-content h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin: 25px 0 15px 0;
}

.info-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .warning-content {
        padding: 15px;
    }
    
    .warning-content h3 {
        font-size: 1.5rem;
    }
    
    .warning-content h4 {
        font-size: 1.3rem;
    }
    
    .info-content h2 {
        font-size: 1.8rem;
    }
    
    .info-content h3 {
        font-size: 1.3rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .welcome-heading {
        font-size: 2rem;
    }

    .marquee-text {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .result-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .game-name {
        font-size: 1.5rem;
    }

    .game-result .number,
    .game-result .status {
        font-size: 1.8rem !important;
    }

    .cta-button,
    .whatsapp-button {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .month-heading {
        font-size: 1.5rem;
    }

    .info-content h2 {
        font-size: 1.8rem;
    }

    .info-content h3 {
        font-size: 1.5rem;
    }

    .info-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .welcome-heading {
        font-size: 1.8rem;
    }

    .marquee-text {
        font-size: 0.9rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .booking-text,
    .explore-content {
        font-size: 1rem;
    }

    .game-result .number,
    .game-result .status {
        font-size: 2rem !important;
    }

    .info-content h2 {
        font-size: 1.6rem;
    }

    .info-content h3 {
        font-size: 1.4rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }
}