* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #000000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: #FFCC00;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.8);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0 20px;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.2);
}

nav a:hover {
    background: #000000;
    color: #FFCC00;
    transform: translateY(-2px);
}

#main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.marquee-container {
    background: #FF0000;
    color: #fff;
    padding: 8px 0;
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 0;
}

.blinking {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: #FFCC00;
    padding: 20px 0;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFCC00, #FFD700, #FFCC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 204, 0, 0.9), 0 0 30px rgba(255, 204, 0, 0.6);
    }
}

.result-box {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    text-align: center;
    border: 2px solid #FFCC00;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.current-date {
    font-size: 1.2rem;
    color: #FFCC00;
    font-weight: bold;
    margin-bottom: 15px;
    background: #333;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid #FFCC00;
}

.hindi-text {
    font-size: 1.2rem;
    color: #FFCC00;
    font-weight: bold;
    margin: 15px 0;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

.top-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.top-result-card {
    background: #000000;
    border: 2px solid #FFCC00;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.top-result-card:hover {
    transform: translateY(-5px);
}

.result-game {
    color: #FFCC00;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.result-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FFCC00;
    background: #333;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #FFCC00;
    margin: 10px 0;
}

.result-time {
    color: #ccc;
    font-size: 0.9rem;
}

.section {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #FFCC00;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.section h3 {
    margin-bottom: 20px;
    color: #FFCC00;
    text-align: center;
    font-size: 1.4rem;
    background: #333;
    padding: 12px;
    border-radius: 5px;
    border-left: 5px solid #FFCC00;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

.table-container {
    overflow-x: auto;
    border: 1px solid #FFCC00;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid #333;
}

th {
    background: #FFCC00;
    color: #000000;
    font-weight: bold;
    font-size: 1.1rem;
}

tr:nth-child(even) {
    background-color: #222;
}

tr:hover {
    background-color: #2a2a2a;
}

.waiting-text {
    color: #FFD700;
    font-style: italic;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.result-text {
    color: #4cd964;
    font-weight: bold;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #FFCC00;
    font-size: 1.2rem;
    font-style: italic;
}

.error-message {
    color: #ff4444;
    text-align: center;
    padding: 15px;
    background-color: #330000;
    border-radius: 5px;
    margin: 15px 0;
    border: 1px solid #ff4444;
    font-weight: bold;
}

/* WhatsApp Banners */
.whatsapp-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.whatsapp-banner {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.whatsapp-header {
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
}

.whatsapp-icon {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 15px;
    display: block;
}

.contact-title {
    color: #FFCC00;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.whatsapp-link {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
    transition: background 0.3s;
}

.whatsapp-link:hover {
    background: #128C7E;
}

/* FAQ Styles */
.faq-container {
    margin: 20px 0;
}

.faq-item {
    background: #000000;
    border: 1px solid #FFCC00;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    background: #1a1a1a;
    color: #FFCC00;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-toggle:hover {
    background: #333;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #1a1a1a;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-icon.active {
    transform: rotate(180deg);
}

/* Info Content */
.info-content {
    color: #ccc;
    line-height: 1.8;
}

.info-content p {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #FFCC00;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 2px solid #FFCC00;
}

.disclaimer {
    background: #ff4444;
    color: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .blinking {
        font-size: 2rem;
    }
    
    .whatsapp-banners-grid {
        grid-template-columns: 1fr;
    }
    
    .top-results-grid {
        grid-template-columns: 1fr;
    }
    
    th, td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}