/* Main CSS for IPL 2026 Hub */
:root {
    --primary: #1e3a8a;
    --secondary: #3b82f6;
    --accent: #ef4444;
    --bg-dark: #020617;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
}

body {
    background: radial-gradient(circle at top, var(--primary), var(--bg-dark));
    color: #f8fafc;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.poll-bar {
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Card Hover 3D Effect Placeholder (Handled by JS potentially) */
.team-card {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.team-logo-glow {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}
