@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');
:root {
    --bg-dark: #020617;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --yellow: #eab308;
    --orange: #f97316;
    --gradient: linear-gradient(135deg, var(--orange), var(--yellow));
    --glass: rgba(30, 41, 59, 0.7);
    --border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--bg-dark); color: var(--text-main); overflow-x: hidden; }
.glass-panel {
    background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.btn-premium {
    background: var(--gradient); border: none; padding: 12px 24px; border-radius: 8px; color: #000;
    font-weight: 600; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    text-decoration: none; display: inline-block;
}
.btn-premium:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6); }
.input-premium {
    width: 100%; padding: 14px; background: rgba(0,0,0,0.3); border: 1px solid var(--border);
    border-radius: 8px; color: #fff; outline: none; margin-bottom: 15px; transition: 0.3s;
}
.input-premium:focus { border-color: var(--yellow); box-shadow: 0 0 10px rgba(234, 179, 8, 0.2); }
/* Skeleton Loader */
.skeleton { background: linear-gradient(90deg, var(--navy-light) 25%, #2a3b52 50%, var(--navy-light) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
/* Bottom Nav */
.bottom-nav { position: fixed; bottom: 0; width: 100%; display: flex; justify-content: space-around; background: var(--glass); backdrop-filter: blur(10px); padding: 15px 0; border-top: 1px solid var(--border); z-index: 1000; }
.nav-item { color: var(--text-muted); text-decoration: none; font-size: 12px; display: flex; flex-direction: column; align-items: center; transition: 0.3s; }
.nav-item i { font-size: 20px; margin-bottom: 4px; }
.nav-item.active, .nav-item:hover { color: var(--yellow); text-shadow: 0 0 10px var(--yellow); transform: translateY(-3px); }
/* Tournaments */
.t-card { padding: 20px; margin-bottom: 20px; position: relative; overflow: hidden; }
.t-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gradient); }
.progress-bar { width: 100%; height: 8px; background: rgba(0,0,0,0.5); border-radius: 4px; overflow: hidden; margin: 10px 0; }
.progress-fill { height: 100%; background: var(--gradient); transition: width 0.5s ease; }
/* Podium */
.podium-container { display: flex; justify-content: center; align-items: flex-end; height: 250px; margin-top: 30px; }
.podium-step { width: 30%; text-align: center; background: var(--glass); border-top-left-radius: 10px; border-top-right-radius: 10px; border: 1px solid var(--border); border-bottom: none; position: relative; }
.step-1 { height: 180px; border-top: 3px solid #FFD700; }
.step-2 { height: 140px; border-top: 3px solid #C0C0C0; }
.step-3 { height: 100px; border-top: 3px solid #CD7F32; }
.floating-wa { position: fixed; bottom: 80px; right: 20px; background: #25D366; color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 24px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 999; animation: bounce 2s infinite; text-decoration: none;}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }