/* assets/css/style.css - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
.nav-container {
    display: flex;
    gap: 10px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    display: block;
}

.nav-btn.home, .nav-btn.chart, .nav-btn.login { background: #FFD700; color: #000; }
.nav-btn.contact { background: #fff; color: #000; }

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Marquee */
.marquee-container {
    background: #FFD700;
    color: #000;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header */
.header {
    background: #FFD700;
    text-align: center;
    padding: 30px 20px;
}

.header h1 {
    color: #000;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 5px;
}

/* Hero Section */
.hero {
    background: #000;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 3px solid #FFD700;
}

.hero-text {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
}

.main-result {
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    padding: 40px 20px;
    margin: 20px;
    border-radius: 10px;
}

.result-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.sun-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.result-subtitle {
    font-size: 28px;
    margin: 20px 0;
}

.result-number {
    font-size: 72px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Info Sections */
.info-section {
    background: #FFD700;
    color: #000;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
}

.info-link {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

/* Games Grid */
.games-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.game-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.game-header {
    background: #000;
    color: #FFD700;
    padding: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.game-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
}

.result-box {
    background: #fff;
    color: #000;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.result-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Chart Section */
.chart-section {
    background: #FFD700;
    margin: 40px 20px;
    padding: 30px;
    border-radius: 10px;
}

.chart-title {
    color: #000;
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.chart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.chart-table th {
    background: #000;
    color: #FFD700;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

.chart-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    color: #000;
    font-weight: 600;
}

.chart-table tr:hover {
    background: #f5f5f5;
}

/* WhatsApp Button */
.whatsapp-section {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
    margin: 20px;
    border-radius: 10px;
}

.whatsapp-text {
    color: #000;
    font-size: 20px;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #FFD700;
}

.footer-links {
    margin: 20px 0;
}

.footer-link {
    color: #FFD700;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #FFA500;
}

.copyright {
    background: #FFD700;
    color: #000;
    padding: 15px;
    margin-top: 20px;
    font-weight: bold;
}

.disclaimer {
    background: #1a1a1a;
    color: #FFD700;
    padding: 30px;
    margin: 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    color: #000;
}

.form-group {
    margin: 20px 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background: #FFD700;
    color: #000;
}

.btn-primary:hover {
    background: #FFA500;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 15px;
        gap: 8px;
    }
    
    .nav-btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 140px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .header h1 {
        font-size: 32px;
    }
    
    .result-number {
        font-size: 48px;
    }
    
    .game-results {
        grid-template-columns: 1fr;
    }

    .chart-table {
        font-size: 12px;
    }

    .chart-table th, .chart-table td {
        padding: 8px;
    }
}
/* Additional Mobile Responsive Improvements */
@media (max-width: 768px) {
    .marquee {
        font-size: 12px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .result-title {
        font-size: 24px;
    }
    
    .result-subtitle {
        font-size: 20px;
    }
    
    .footer-link {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px;
        gap: 8px;
    }
    
    .nav-btn {
        flex: 1 1 100%;
        width: 100%;
        font-size: 15px;
        padding: 14px 20px;
        min-width: unset;
    }
    
    .header h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .result-number {
        font-size: 56px;
    }
    
    .game-header {
        font-size: 20px;
        padding: 15px;
    }
    
    .chart-table th, .chart-table td {
        padding: 6px 4px;
        font-size: 11px;
    }
}