@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;600;700&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
    --black:   #080c14;
    --dark:    #0d1220;
    --dark2:   #131927;
    --dark3:   #1a2236;
    --surf:    #1e293b;
    --surf2:   #243044;
    --gold:    #c9a84c;
    --gold-l:  #e8c96a;
    --gold-d:  #8b6914;
    --red:     #cc2529;
    --green:   #1b6b2e;
    --blue:    #1a3a8f;
    --text:    #eef2f7;
    --dim:     #7a8799;
    --border:  rgba(201,168,76,.16);
    --border2: rgba(255,255,255,.07);
    --card:    rgba(255,255,255,.03);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--text);
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201,168,76,.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(26,58,143,.08) 0%, transparent 60%);
}

a { color: inherit; text-decoration: none; }

/* ── TOPBAR ──────────────────────────────────────── */
.topbar {
    background: rgba(8,12,20,.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 200;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text);
}
.logo-year { color: var(--gold); }

.nav-tabs {
    display: flex;
    gap: 2px;
    background: var(--dark3);
    border-radius: 8px;
    padding: 3px;
}
.nav-tab {
    padding: .42rem .9rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--dim);
    border: none;
    background: none;
    transition: all .15s;
    white-space: nowrap;
}
.nav-tab.active { background: var(--gold); color: var(--black); }
.nav-tab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,.05); }

.user-chip {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .3rem .8rem .3rem .35rem;
    background: var(--dark3);
    border-radius: 20px;
    border: 1px solid var(--border2);
}
.avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-d), var(--gold));
    color: var(--black);
    font-size: .65rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.uname { font-size: .8rem; font-weight: 600; color: var(--text); }

/* ── HERO ────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 5rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 20px;
    padding: .35rem 1rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: 6px;
    line-height: .9;
    color: var(--text);
    position: relative;
}
.hero-title .year {
    display: block;
    color: var(--gold);
    font-size: clamp(5rem, 15vw, 10rem);
    line-height: .85;
}
.hero-sub {
    color: var(--dim);
    font-size: 1.1rem;
    margin: 1.5rem 0 2.5rem;
    letter-spacing: .5px;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}
.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}
.hero-stat-label {
    font-size: .7rem;
    color: var(--dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: .2rem;
}

/* ── ŞAMPIYON GALERİSİ ───────────────────────────── */
.champions-section {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    overflow: hidden;
    position: relative;
}
.champions-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--dim);
    text-align: center;
    margin-bottom: 2rem;
}
.champions-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: .5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.champions-scroll::-webkit-scrollbar { display: none; }

.champion-card {
    flex-shrink: 0;
    width: 160px;
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s, border-color .2s;
    cursor: default;
}
.champion-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
}
.champion-card.wc2022 { border-color: rgba(201,168,76,.3); }

.champion-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    background: var(--surf);
}
.champion-img-placeholder {
    width: 100%;
    height: 100px;
    background: var(--surf);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    color: var(--dim);
    font-size: .65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.champion-img-placeholder .ph-flag { font-size: 2rem; }
.champion-img-placeholder .ph-size { font-size: .6rem; color: rgba(255,255,255,.2); }

.champion-info {
    padding: .75rem;
}
.champion-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1;
}
.champion-country {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    margin-top: .2rem;
}
.champion-host {
    font-size: .68rem;
    color: var(--dim);
    margin-top: .1rem;
}
.champion-flag {
    font-size: 1.2rem;
    float: right;
    margin-top: -1.8rem;
}

/* ── COUNTDOWN ───────────────────────────────────── */
.countdown-bar {
    background: linear-gradient(90deg, var(--dark2), var(--dark3));
    border-bottom: 1px solid var(--border);
    padding: .85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.countdown-label {
    font-size: .7rem;
    color: var(--dim);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.countdown-units {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.cd-unit { text-align: center; }
.cd-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--gold);
    line-height: 1;
    min-width: 2.5ch;
}
.cd-lbl {
    font-size: .6rem;
    color: var(--dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.cd-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--border);
    margin-bottom: .3rem;
}

/* ── LAYOUT ──────────────────────────────────────── */
.main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem;
}
.ph { margin-bottom: 1.5rem; }
.ph h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--gold);
    line-height: 1;
}
.ph p { color: var(--dim); font-size: .85rem; margin-top: .3rem; letter-spacing: .3px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.75rem;
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all .15s;
    text-decoration: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-d));
    color: var(--black);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.25); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-l); }
.btn-full { width: 100%; justify-content: center; }

/* ── ALERTS ──────────────────────────────────────── */
.alert {
    padding: .85rem 1.1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: .88rem;
    line-height: 1.5;
}
.alert-ok  { background: rgba(27,107,46,.15);  border: 1px solid rgba(27,107,46,.35);  color: #6fcf7a; }
.alert-err { background: rgba(204,37,41,.12);  border: 1px solid rgba(204,37,41,.35);  color: #ff8080; }
.alert-inf { background: rgba(201,168,76,.1);  border: 1px solid rgba(201,168,76,.3);  color: var(--gold-l); }

/* ── FORMS ───────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
label.flabel {
    display: block;
    margin-bottom: .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dim);
}
.finput, .fselect {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: .95rem;
    transition: border-color .15s, box-shadow .15s;
}
.finput:focus, .fselect:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.fselect option { background: var(--dark2); }

/* ── MATCH CARDS ─────────────────────────────────── */
.rd {
    display: flex; align-items: center; gap: .75rem;
    margin: 1.5rem 0 .75rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .72rem; font-weight: 700; letter-spacing: 3px;
    color: var(--dim); text-transform: uppercase;
}
.rd::after { content: ''; flex: 1; height: 1px; background: var(--border2); }

.mc {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: .85rem 1.25rem;
    margin-bottom: .45rem;
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    gap: .75rem;
    transition: all .15s;
}
.mc:hover { border-color: var(--border); background: var(--surf); }
.mc.done-card { opacity: .7; }

.team-home, .team-away { display: flex; align-items: center; gap: .6rem; }
.team-away { flex-direction: row-reverse; }

.flag-img {
    width: 34px; height: 23px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0;
}
.tname { font-weight: 700; font-size: .9rem; }
.tname.win { color: var(--gold-l); }
.tgroup { font-size: .68rem; color: var(--dim); margin-top: 2px; }
.team-away .tname, .team-away .tgroup { text-align: right; }

.score-center { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.score-nums {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem; letter-spacing: 5px;
    color: var(--text); line-height: 1;
}
.kickoff {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; letter-spacing: 3px; color: var(--gold);
}
.meta-line { font-size: .67rem; color: var(--dim); text-align: center; }

/* ── FILTER BAR ──────────────────────────────────── */
.filter-bar { display: flex; gap: .4rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.fb {
    padding: .38rem .9rem;
    border-radius: 6px;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .8px; text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--border2);
    background: var(--dark3);
    color: var(--dim);
    transition: all .15s;
}
.fb.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.fb:hover:not(.active) { border-color: rgba(201,168,76,.3); color: var(--gold-l); }

/* ── GROUP TABLE ─────────────────────────────────── */
.grp-wrap {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: .5rem;
}
.grp-wrap table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.grp-wrap th {
    padding: .5rem .75rem;
    font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--dim); text-align: center;
    border-bottom: 1px solid var(--border2);
}
.grp-wrap th:first-child { text-align: left; }
.grp-wrap td { padding: .55rem .75rem; border-bottom: 1px solid rgba(255,255,255,.03); text-align: center; }
.grp-wrap td:first-child { text-align: left; }
.grp-wrap tr:last-child td { border-bottom: none; }
.grp-wrap tr:nth-child(-n+2) td { color: var(--text); }
.grp-wrap tr:nth-child(n+3) td { color: var(--dim); }
.tc { display: flex; align-items: center; gap: .5rem; }
.qdot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.qdot.yes { background: var(--green); }
.qdot.no  { background: var(--dim); }
.pts-c { font-weight: 700; color: var(--gold); }
.form-cell { display: flex; gap: 2px; justify-content: center; }
.fw,.fd,.fl { width: 15px; height: 15px; border-radius: 3px; font-size: .6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.fw { background: var(--green); color: #fff; }
.fd { background: #3a4a5a; color: #8899aa; }
.fl { background: rgba(204,37,41,.4); color: #ff9090; }

/* ── PREDICTION FORM ─────────────────────────────── */
.stabs {
    display: flex; gap: 2px;
    background: var(--dark3);
    border-radius: 8px; padding: 3px;
    width: fit-content;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    max-width: 100%;
}
.stab {
    padding: .42rem .9rem;
    border-radius: 6px;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .8px; text-transform: uppercase;
    cursor: pointer; color: var(--dim);
    border: none; background: none;
    white-space: nowrap; transition: .15s;
}
.stab.active { background: var(--gold); color: var(--black); }
.stab:hover:not(.active) { color: var(--text); }

.gg { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1rem; }

.gcard {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 1.1rem;
    transition: border-color .15s;
}
.gcard:hover { border-color: var(--border); }
.gcard-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .7rem; }
.gtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem; letter-spacing: 2px; color: var(--gold);
}
.tpill {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .72rem; padding: 2px 7px 2px 4px;
    border-radius: 4px; background: var(--surf);
    color: var(--dim); border: 1px solid var(--border2);
    margin: 0 3px 3px 0;
}
.tpill img { width: 18px; height: 12px; object-fit: cover; border-radius: 1px; }

.pick-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.pbadge {
    width: 22px; height: 22px; border-radius: 4px;
    font-size: .72rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pbadge.g1 { background: var(--gold); color: var(--black); }
.pbadge.g2 { background: var(--surf); color: #aaa; border: 1px solid rgba(255,255,255,.1); }
.psel {
    flex: 1; padding: .42rem .7rem;
    background: var(--surf);
    border: 1px solid var(--border2);
    border-radius: 6px; color: var(--text);
    font-size: .82rem; font-family: 'Barlow', sans-serif;
    cursor: pointer; transition: border-color .15s;
}
.psel:focus { outline: none; border-color: var(--gold); }
.psel option { background: var(--dark2); }

.save-bar {
    position: sticky; bottom: 0; z-index: 50;
    background: rgba(8,12,20,.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 1rem 0; margin-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.save-hint { font-size: .78rem; color: var(--dim); }

/* ── LEADERBOARD ─────────────────────────────────── */
.stats-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.scard {
    flex: 1; min-width: 120px;
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-align: center;
    transition: border-color .15s;
}
.scard:hover { border-color: var(--border); }
.scard .sv {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem; letter-spacing: 2px; line-height: 1;
}
.scard .sl { font-size: .65rem; color: var(--dim); letter-spacing: 1.5px; text-transform: uppercase; margin-top: .25rem; }
.c-gold  { color: var(--gold); }
.c-green { color: #4caf50; }
.c-red   { color: var(--red); }
.c-dim   { color: var(--dim); }

.lb-wrap {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
}
.lb { width: 100%; border-collapse: collapse; }
.lb th {
    padding: .6rem 1rem;
    font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--dim); border-bottom: 1px solid var(--border2); text-align: left;
}
.lb td { padding: .8rem 1rem; border-bottom: 1px solid rgba(255,255,255,.025); vertical-align: middle; }
.lb tr:last-child td { border-bottom: none; }
.lb tr.me td { background: rgba(201,168,76,.06); }
.lb tr:hover td { background: var(--surf); }
.rnk { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--dim); }
.r1 { color: var(--gold); } .r2 { color: #b0b0b0; } .r3 { color: #8b6914; }
.you-tag {
    font-size: .62rem; font-weight: 800;
    background: rgba(201,168,76,.15); color: var(--gold);
    padding: 2px 7px; border-radius: 4px;
    letter-spacing: 1px; margin-left: .5rem;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,.3);
}
.lb-pts { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 1px; color: var(--gold); text-align: right; }
.bar-wrap { height: 3px; background: rgba(255,255,255,.06); border-radius: 2px; margin-top: .3rem; min-width: 80px; }
.bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--gold-d), var(--gold)); }

/* ── SCORE BADGES ────────────────────────────────── */
.sbadge { font-size: .65rem; font-weight: 800; padding: 2px 8px; border-radius: 4px; letter-spacing: .8px; text-transform: uppercase; }
.sbadge.ok   { background: rgba(27,107,46,.2);  color: #6fcf7a; border: 1px solid rgba(27,107,46,.3); }
.sbadge.wait { background: rgba(201,168,76,.1); color: var(--gold); border: 1px solid rgba(201,168,76,.25); }
.sbadge.live { background: rgba(204,37,41,.15); color: #ff8080; border: 1px solid rgba(204,37,41,.3); }

/* ── AUTH PAGES ──────────────────────────────────── */
.auth-wrap {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}
.auth-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
    pointer-events: none;
}
.auth-card {
    width: 100%;
    max-width: 460px;
    background: var(--dark2);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}
.auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}
.auth-logo-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold-d), var(--gold));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto .75rem;
}
.auth-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem; letter-spacing: 3px; color: var(--gold); margin-bottom: .25rem;
}
.auth-sub { color: var(--dim); margin-bottom: 1.75rem; font-size: .9rem; line-height: 1.5; }
.auth-foot { text-align: center; margin-top: 1.25rem; color: var(--dim); font-size: .85rem; }
.auth-foot a { color: var(--gold); }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }

/* ── ADMIN ───────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - 60px); }
.admin-side {
    background: var(--dark2);
    border-right: 1px solid var(--border2);
    padding: 1.5rem;
}
.admin-side-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 1.25rem;
}
.admin-nav a {
    display: flex; align-items: center; gap: .6rem;
    padding: .65rem .9rem;
    border-radius: 8px;
    color: var(--dim); font-weight: 600; font-size: .85rem;
    margin-bottom: 3px; transition: all .15s;
    text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(201,168,76,.1); color: var(--gold); }
.admin-main { padding: 2rem; }
.admin-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 1.5rem; }

/* ── LOCKED ──────────────────────────────────────── */
.locked {
    background: rgba(204,37,41,.08);
    border: 1px solid rgba(204,37,41,.25);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-align: center; color: #ff8080; font-weight: 700; margin-bottom: 1.5rem;
}

/* ── SLOT/STAGE ITEMS ────────────────────────────── */
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: .7rem; }
.slot-item {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 8px; padding: .8rem;
}
.slot-label { font-size: .67rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--dim); margin-bottom: .4rem; }
.big-select {
    width: 100%; padding: .65rem .85rem;
    background: var(--surf); border: 1px solid var(--border2);
    border-radius: 6px; color: var(--text);
    font-family: 'Barlow', sans-serif; font-size: .85rem;
    cursor: pointer; transition: border-color .15s;
}
.big-select:focus { outline: none; border-color: var(--gold); }
.big-select option { background: var(--dark2); }

.champ-card {
    background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.03));
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 12px; padding: 1.25rem; max-width: 380px;
}
.champ-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; color: var(--gold); margin-bottom: .85rem; }

/* ── PUANLAMA KART ───────────────────────────────── */
.pts-breakdown { display: grid; gap: .45rem; }
.brow {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--dark3); border: 1px solid var(--border2);
    border-radius: 8px; padding: .75rem 1rem;
    transition: border-color .15s;
}
.brow:hover { border-color: var(--border); }
.brow-left { display: flex; align-items: center; gap: .7rem; }
.bstage { font-weight: 700; font-size: .88rem; }
.bsub { font-size: .72rem; color: var(--dim); margin-top: 2px; }
.bpts { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 1px; }
.bpts.pos { color: #4caf50; }
.bpts.zero { color: var(--dim); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
    text-align: center;
    padding: 2.5rem 2rem;
    color: var(--dim);
    font-size: .82rem;
    border-top: 1px solid var(--border2);
    margin-top: 4rem;
    line-height: 1.8;
}
footer a { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
    .topbar { padding: 0 1rem; }
    .nav-tabs .nav-tab { padding: .38rem .6rem; font-size: .68rem; }
    .main { padding: 1.25rem; }
    .hero { padding: 3rem 1.25rem 2.5rem; }
    .hero-stats { gap: 1.5rem; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-side { border-right: none; border-bottom: 1px solid var(--border2); }
    .name-row { grid-template-columns: 1fr; gap: 0; }
    .mc { grid-template-columns: 1fr 90px 1fr; gap: .4rem; padding: .65rem .75rem; }
    .champions-scroll { padding: 0 1.25rem 1rem; }
}
