/* الهيدر العلوي */
.top-header { display: flex; justify-content: space-between; align-items: center; padding: 10px 5px; }
.top-header h1 { font-weight: 900; font-size: 28px; color: var(--gold); flex-grow: 1; text-align: center; margin-right: 30px; }

/* شريط التمرير العلوي للتصنيفات الزمنية */
.time-filter-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 10px 5px 25px; scrollbar-width: none; }
.time-filter-scroll::-webkit-scrollbar { display: none; }
.filter-badge { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-sub); padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 700; white-space: nowrap; transition: 0.2s; cursor: pointer; }
.filter-badge.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* المنصة */
.podium-wrap { display: flex; align-items: flex-end; justify-content: center; gap: 10px; margin-bottom: 40px; padding: 0 5px; }
.podium-box { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px 16px 8px 8px; padding: 20px 10px; text-align: center; flex: 1; position: relative; }
.podium-box.p1 { height: 180px; border-top: 3px solid var(--gold); order: 2; }
.podium-box.p2 { height: 140px; border-top: 3px solid var(--silver); order: 1; }
.podium-box.p3 { height: 120px; border-top: 3px solid var(--bronze); order: 3; }
.p-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.p1 .p-avatar { width: 75px; height: 75px; }

.live-neon { border: 2px solid var(--neon-red); box-shadow: 0 0 10px var(--neon-red); animation: pulse-red 1.5s infinite; }
@keyframes pulse-red { 0% { box-shadow: 0 0 5px var(--neon-red); } 50% { box-shadow: 0 0 12px var(--neon-red); } 100% { box-shadow: 0 0 5px var(--neon-red); } }

.crown-icon { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 24px; color: var(--gold); }
.p-name { font-weight: 700; margin: 8px 0 4px; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-score { font-weight: 900; color: var(--gold); font-size: 13px; }

/* القائمة */
.list-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.list-info { display: flex; align-items: center; gap: 15px; }
.list-rank { font-weight: 900; color: var(--text-sub); font-size: 18px; width: 20px; text-align: center; }
.list-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.list-details h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }

.top-supporters { display: flex; gap: 5px; align-items: center; margin-top: 4px; }
.sup-img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; border: 1.5px solid; background: #000; }
.sup-gold { border-color: var(--gold); }
.sup-silver { border-color: var(--silver); }
.sup-bronze { border-color: var(--bronze); }
.status { font-size: 11px; color: var(--text-sub); }
.list-score { font-weight: 700; font-size: 16px; color: #fff; }