/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon img {
    height: 50px;
}

.logo-text {
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
}

.logo-text .phanda { color: #FF6B00; }
.logo-text .pusha { color: #DC143C; }
.logo-text .play { color: #FF6B00; }

/* Navigation */
.main-navigation {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item:hover,
.nav-item.active {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 2px;
}

/* Login Section */
.login-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.login-input {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11px;
    width: 100px;
}

.forgot-pin {
    font-size: 10px;
    color: #666;
    cursor: pointer;
}

.login-btn, .register-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn {
    background-color: #FFD700;
    color: #333;
}

.register-btn {
    background-color: #333;
    color: white;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.social-icon {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.instagram { background-color: #e4405f; }
.social-icon.youtube { background-color: #ff0000; }

/* Ticket Banner */
.ticket-banner {
    background-color: #DC143C;
    color: white;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.ticket-banner marquee {
    font-size: 14px;
    font-weight: bold;
}

.cart-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #333;
    width: 30px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    border-radius: 3px;
}

/* Main Content */
.main-content {
    padding: 20px 0;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #333;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff5722;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.disclaimer-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.disclaimer-banner strong {
    color: #d32f2f;
}

/* Draw Results Section */
.draw-results {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}

.draw-results h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.draw-results h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.lottery-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.lottery-logo img {
    height: 60px;
}

.winning-numbers {
    display: flex;
    gap: 10px;
}

.number {
    background-color: #DC143C;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
}

.age-badge {
    background-color: #333;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.restriction-text {
    font-size: 10px;
    color: #333;
    text-align: center;
    font-weight: bold;
}

.logo-small img {
    height: 30px;
}

/* Game Cards Section */
.game-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 15px;
    padding: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.game-logo {
    height: 40px;
    margin-bottom: 5px;
}

.game-name {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.prize-amount {
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.game-info {
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
}

.info-row span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 5px;
    min-width: 40px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.play-now-btn {
    background-color: #FFD700;
    color: #333;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-now-btn:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.draw-info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.view-results-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-results-btn:hover {
    background-color: white;
    color: #28a745;
}

/* TV and News Section */
.tv-news-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.tv-draws h3,
.news-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tv-draws h3 i {
    color: #FF6B00;
}

.news-section h3 i {
    color: #DC143C;
}

.video-container {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.news-tabs {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background-color: #f8f9fa;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    background-color: white;
    color: #FF6B00;
    border-bottom-color: #FF6B00;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.news-item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more {
    background-color: #FF6B00;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

/* Promo Banners Section */
.promo-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.promo-banner {
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.daily-lotto-banner {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    color: white;
}

.lottery-banner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.promo-banner h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.promo-banner h4 {
    font-size: 14px;
    margin-bottom: 15px;
}

.phones-image {
    max-width: 150px;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.app-buttons img {
    height: 40px;
}

.promo-play-btn {
    background-color: white;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
}

.banner-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    opacity: 0.7;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Footer Navigation */
.footer-nav {
    text-align: center;
}

.nav-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Games Carousel */
.games-carousel {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.games-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 50px;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 300px;
    backdrop-filter: blur(5px);
}

.game-item img {
    height: 50px;
    background: white;
    border-radius: 8px;
    padding: 5px;
}

.game-details .amount {
    font-size: 14px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.game-details .closing {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(255, 107, 0, 0.2);
    color: white;
}

/* Footer Social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #FF6B00;
    transform: scale(1.1);
}

/* Age Verification */
.age-verification {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.age-verification .age-badge {
    background-color: #333;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.verification-logos {
    display: flex;
    gap: 10px;
}

.verification-logos img {
    height: 40px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Legal Links */
.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
}

.legal-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.legal-link:hover {
    color: white;
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Legal Pages Styles */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-page h1 {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF6B00 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.legal-section h2 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.legal-section h2::before {
    content: "📋";
    margin-right: 10px;
    font-size: 18px;
}

.legal-section h3 {
    color: #555;
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.legal-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info {
    background: #e9ecef;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #333;
}

.contact-info strong {
    color: #FF6B00;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .legal-page h1 {
        font-size: 24px;
    }
    
    .legal-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-link {
        display: inline-block;
        padding: 12px 20px;
    }
    
    .disclaimer-banner {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .disclaimer-banner p {
        font-size: 13px;
    }
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.age-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    text-align: center;
    overflow: hidden;
}

.age-modal-header {
    background: linear-gradient(135deg, #FF6B00 0%, #DC143C 100%);
    color: white;
    padding: 20px;
    margin: 0;
}

.age-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.age-modal-body {
    padding: 30px 20px;
    background: white;
}

.age-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.age-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.age-subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-confirm-btn, .age-decline-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.age-confirm-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.age-confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.age-decline-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.age-decline-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

/* Mobile responsive for age modal */
@media (max-width: 768px) {
    .age-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .age-modal-header h2 {
        font-size: 20px;
    }
    
    .age-icon {
        font-size: 50px;
    }
    
    .age-text {
        font-size: 16px;
    }
    
    .age-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .age-confirm-btn, .age-decline-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.modal-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #333;
    font-size: 22px;
    font-weight: bold;
}

.close {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #DC143C;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registration-form input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.registration-form input:focus {
    outline: none;
    border-color: #FFD700;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.submit-btn {
    background: linear-gradient(135deg, #FF6B00 0%, #FFD700 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}

.modal-footer a {
    color: #FF6B00;
    text-decoration: none;
    font-weight: bold;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.chat-button i {
    font-size: 24px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tv-news-section {
        grid-template-columns: 1fr;
    }
    
    .promo-banners {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-navigation {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-item {
        font-size: 11px;
    }
    
    .login-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .promo-banners {
        grid-template-columns: 1fr;
    }
    
    .games-list {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .footer-links {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .draw-results h1 {
        font-size: 18px;
    }
    
    .winning-numbers {
        gap: 5px;
    }
    
    .number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prize-amount {
        font-size: 24px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .chat-button i {
        font-size: 20px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card {
    animation: fadeInUp 0.6s ease-out;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}


/* Banner Slider Styles */
        .banner-slider {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            background: #000;
        }

        .banner-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .banner-slide {
            min-width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-slide img {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
        }

        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            padding: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }

        .banner-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #FFD700;
        }

        .banner-jackpot {
            font-size: 48px;
            font-weight: bold;
            color: #FFD700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .banner-play-btn {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #333;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }

        .banner-play-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        }

        .banner-draw-info {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            font-size: 14px;
        }

        .banner-timer {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: bold;
        }

        .timer-unit {
            background: rgba(255, 215, 0, 0.2);
            padding: 5px 10px;
            border-radius: 5px;
            min-width: 30px;
            text-align: center;
        }

        .banner-prev,
        .banner-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
        }

        .banner-prev {
            left: 15px;
        }

        .banner-next {
            right: 15px;
        }

        .banner-prev:hover,
        .banner-next:hover {
            background: rgba(255, 215, 0, 0.9);
            color: #333;
            transform: translateY(-50%) scale(1.1);
        }

        /* Static slides without game timers */
        .banner-slide.static .banner-content {
            background: rgba(0, 0, 0, 0.3);
        }

        .banner-slide.static .banner-title {
            font-size: 24px;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-title {
                font-size: 20px;
            }
            
            .banner-jackpot {
                font-size: 32px;
            }
            
            .banner-draw-info {
                flex-direction: column;
                gap: 10px;
            }
            
            .banner-prev,
            .banner-next {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .banner-content {
                padding: 15px;
            }
            
            .banner-title {
                font-size: 18px;
            }
            
            .banner-jackpot {
                font-size: 28px;
            }
            
            .banner-play-btn {
                padding: 12px 24px;
                font-size: 14px;
            }
        }