
# FILE 3: style.css - Main Website Styles

style_css = """/* A7Satta Website Styles */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
.header {
    background: linear-gradient(90deg, #0f0c29, #302b63, #24243e);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo span {
    color: #ff6b6b;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: rgba(255,215,0,0.2);
    color: #ffd700;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 20px;
}

.live-time {
    font-size: 18px;
    color: #00ff88;
    font-weight: bold;
}

/* Live Results Section */
.live-results {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    margin: 10px auto;
    border-radius: 2px;
}

/* Featured Result */
.featured-result {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(238,90,36,0.4);
    position: relative;
    overflow: hidden;
}

.featured-result::before {
    content: '🔥 LIVE';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #ee5a24;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.featured-game-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.featured-number {
    font-size: 72px;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 5px;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.result-card {
    background: linear-gradient(135deg, #2d3436, #000000);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    position: relative;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #ffd700;
}

.result-card.pending {
    opacity: 0.7;
}

.result-card.pending .result-number {
    color: #888;
}

.game-name {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.game-time {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.result-number {
    font-size: 42px;
    font-weight: bold;
    color: #00ff88;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.result-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
}

.status-declared {
    background: #00ff88;
    color: #000;
}

.status-pending {
    background: #ff6b6b;
    color: #fff;
}

/* Refresh Button */
.refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #000, #333);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px 0;
}

.refresh-btn:hover {
    background: linear-gradient(90deg, #333, #000);
    transform: scale(1.05);
}

.refresh-btn i {
    font-size: 22px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Social Buttons */
.social-section {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0,0,0,0.2);
    margin: 30px 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    min-width: 250px;
    justify-content: center;
}

.social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background: linear-gradient(90deg, #25d366, #128c7e);
    color: #fff;
}

.telegram-btn {
    background: linear-gradient(90deg, #0088cc, #005580);
    color: #fff;
}

/* Khaiwal Section */
.khaiwal-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.khaiwal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.khaiwal-card {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(255,215,0,0.3);
    transition: all 0.3s;
}

.khaiwal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30,60,114,0.5);
    border-color: #ffd700;
}

.khaiwal-crown {
    font-size: 30px;
    margin-bottom: 10px;
}

.khaiwal-name {
    font-size: 22px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.khaiwal-title {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
}

.khaiwal-games {
    text-align: left;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    max-height: 200px;
    overflow-y: auto;
}

.khaiwal-games li {
    list-style: none;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
}

.khaiwal-games li:last-child {
    border-bottom: none;
}

.khaiwal-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
}

.khaiwal-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* Cricket ID Section */
.cricket-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    border-radius: 20px;
    text-align: center;
}

.cricket-section h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cricket-note {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 14px;
}

/* Content Section */
.content-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-box {
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
}

.content-box h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 22px;
}

.content-box p {
    color: #ccc;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #0f0c29, #302b63, #24243e);
    padding: 40px 20px 20px;
    margin-top: 50px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-text {
    color: #888;
    font-size: 14px;
}

.disclaimer {
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    color: #ff9999;
    font-size: 13px;
}

/* Auto Refresh Indicator */
.refresh-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.refresh-indicator i {
    animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .featured-number {
        font-size: 48px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .khaiwal-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b6b;
}
"""

