:root {
    --primary: #D32F2F; /* Vagai Red */
    --dark: #0f0f0f;
    --darker: #050505;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --card-bg: #1a1a1a;
    --font: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font); scroll-behavior: smooth; }

body { background-color: var(--darker); color: var(--text); line-height: 1.6; }

/* Loader */
#loader {
    position: fixed; inset: 0; background: var(--darker);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 9999;
}
#loader img { width: 80px; margin-bottom: 20px; }
.spinner {
    width: 30px; height: 30px; border: 3px solid #333;
    border-top: 3px solid var(--primary); border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Utility */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }
.btn {
    display: inline-block; padding: 12px 24px; text-decoration: none;
    border-radius: 50px; font-weight: 600; transition: 0.3s; border: none; cursor: pointer;
}
.primary { background: var(--primary); color: white; }
.primary:hover { background: #b71c1c; transform: translateY(-2px); }
.glass { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.glass:hover { background: rgba(255,255,255,0.2); }

/* Nav */
nav { position: sticky; top: 0; background: rgba(5,5,5,0.9); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid #222; padding: 15px 0; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 40px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.9rem; }
.btn-nav { background: white; color: black !important; padding: 8px 18px; border-radius: 4px; font-weight: bold; }

/* Hero */
.hero {
    height: 85vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
    background: url('https://images.unsplash.com/photo-1579532537598-459ecdaf39cc?q=80&w=1000&auto=format&fit=crop') center/cover;
}
.overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,0.7), var(--darker)); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 20px; }
.tag { color: var(--primary); font-weight: 800; letter-spacing: 2px; font-size: 0.8rem; text-transform: uppercase; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; font-weight: 800; }
.hero p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }

/* Sections */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); }

/* Cricket */
#cricket-section { background: #121212; border-top: 1px solid #333; border-bottom: 1px solid #333; }
.live-dot { color: red; animation: blink 1.5s infinite; margin-right: 8px; }
@keyframes blink { 50% { opacity: 0.4; } }

.match-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.match-card {
    background: #252525; padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.match-status { font-size: 0.8rem; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.teams { font-weight: bold; font-size: 1.1rem; margin-bottom: 10px; }
.score { background: #333; padding: 8px; border-radius: 6px; font-family: monospace; color: #ffeb3b; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: var(--card-bg); padding: 30px; border-radius: 16px; text-align: center; transition: 0.3s; border: 1px solid #222; }
.card:hover { transform: translateY(-5px); border-color: var(--primary); }
.card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.9rem; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-info a { display: block; color: var(--text); text-decoration: none; margin: 15px 0; font-size: 1.2rem; }
.contact-info i { color: var(--primary); margin-right: 10px; width: 20px; }
.modern-form input, .modern-form textarea {
    width: 100%; background: #222; border: 1px solid #333; color: white; padding: 15px;
    margin-bottom: 15px; border-radius: 8px; outline: none; transition: 0.3s;
}
.modern-form input:focus, .modern-form textarea:focus { border-color: var(--primary); background: #2a2a2a; }
.full-width { width: 100%; border-radius: 8px; }

/* Footer */
footer { text-align: center; padding: 40px; border-top: 1px solid #222; color: #666; font-size: 0.9rem; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified mobile nav for now */
    .hero h1 { font-size: 2.5rem; }
    .contact-wrap { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
}