@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════
   TBD ETKİNLİK SİTESİ  |  Professional v2
   ═══════════════════════════════════════════ */
:root {
    --blue-900: #0a1628;
    --blue-800: #0f2043;
    --blue-700: #1a3a6b;
    --blue-600: #1e4fa0;
    --blue-500: #2563eb;
    --blue-100: #dbeafe;
    --blue-50:  #eff6ff;
    --red:      #dc2626;
    --red-soft: #fee2e2;
    --green:    #16a34a;
    --green-soft: #dcfce7;
    --orange:   #ea580c;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;
    --white:    #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius:   12px;
    --radius-lg:16px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ─────────────────────────────── */
.tbd-navbar {
    background: var(--blue-900);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    height: 68px;
}

.tbd-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 0 1rem 0 0;
}

.tbd-brand img {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: opacity .2s;
}
.tbd-brand:hover img { opacity: .85; }

.brand-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.2);
}

.brand-text {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: .5px;
    text-transform: uppercase;
    line-height: 1.3;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: .875rem;
    font-weight: 500;
    padding: .45rem .85rem !important;
    border-radius: 7px;
    transition: all .18s;
    letter-spacing: .2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}

.nav-btn {
    background: var(--blue-500) !important;
    color: #fff !important;
    padding: .4rem 1rem !important;
}
.nav-btn:hover { background: var(--blue-600) !important; }

/* ── HERO ───────────────────────────────── */
.tbd-hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 40%, #1c3461 70%, var(--blue-700) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.tbd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(220,38,38,.08) 0%, transparent 60%);
    pointer-events: none;
}

.tbd-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--gray-50);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.68);
    max-width: 520px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--blue-500);
    border: none;
    color: #fff;
    padding: .75rem 1.75rem;
    border-radius: 9px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(37,99,235,.4);
}
.btn-hero-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,99,235,.5);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    padding: .75rem 1.75rem;
    border-radius: 9px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .2s;
    backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2.5rem;
}

.hero-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 2px;
}

/* ── SECTION ────────────────────────────── */
.section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-500);
    margin-bottom: .5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.5px;
    line-height: 1.2;
}

.section-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
    border-radius: 3px;
    margin: .75rem 0 0;
}

/* ── ETKİNLİK KARTI ────────────────────── */
.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.event-card-img {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.event-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.event-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--white);
    border-radius: 10px;
    padding: 6px 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 1;
    min-width: 52px;
}

.event-date-day {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue-700);
    line-height: 1;
}

.event-date-month {
    font-size: .65rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.event-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 1;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 50px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.event-badge.upcoming { background: #22c55e; color: #fff; }
.event-badge.past     { background: var(--gray-500); color: #fff; }

.event-cat-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    background: var(--blue-600);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 50px;
    letter-spacing: .3px;
}

.event-card-body {
    padding: 1.25rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .75rem;
}

.event-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-desc {
    font-size: .84rem;
    color: var(--gray-500);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.event-meta-item i {
    width: 15px;
    text-align: center;
    flex-shrink: 0;
}

.event-card-footer {
    border-top: 1px solid var(--gray-100);
    padding: .9rem 1.4rem;
}

.btn-event {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--blue-600);
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s;
}
.btn-event:hover { color: var(--blue-800); }
.btn-event i { transition: transform .15s; }
.btn-event:hover i { transform: translateX(3px); }

/* ── SAYFA BAŞLIĞI ─────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(37,99,235,.2) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    margin: 0;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .85rem; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); font-size: .85rem; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── FİLTRE ÇUBUĞU ─────────────────────── */
.filter-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

/* ── ETKİNLİK DETAY ─────────────────────── */
.detail-hero {
    background: linear-gradient(to bottom, rgba(10,22,40,0.9), rgba(10,22,40,0.7)),
                center/cover no-repeat var(--blue-900);
    padding: 3.5rem 0 2.5rem;
    color: #fff;
}

.detail-cat {
    display: inline-block;
    background: var(--blue-500);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .9rem;
    border-radius: 50px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.detail-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.5px;
    max-width: 700px;
}

.detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.detail-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--gray-100);
}
.detail-info-item:last-child { border-bottom: none; }
.detail-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
}
.detail-info-label { font-size: .75rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.detail-info-value { font-size: .92rem; font-weight: 600; color: var(--gray-900); }

/* ── İSTATİSTİK KARTLARI ─────────────────── */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform .2s, box-shadow .2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -1px;
}
.stat-label {
    font-size: .82rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: .35rem;
}

/* ── FOOTER ─────────────────────────────── */
.tbd-footer {
    background: var(--blue-900);
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-size: .875rem;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: .7;
    height: 32px;
}

.footer-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color .15s;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }

.footer-divider {
    border-color: rgba(255,255,255,0.08);
}

/* ── BUTTONS ────────────────────────────── */
.btn-primary {
    background: var(--blue-600);
    border-color: var(--blue-600);
    font-weight: 600;
    border-radius: 8px;
}
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); }

.btn-outline-primary {
    color: var(--blue-600);
    border-color: var(--blue-600);
    font-weight: 600;
    border-radius: 8px;
}
.btn-outline-primary:hover { background: var(--blue-600); }

/* ── SAYFALAMA ──────────────────────────── */
.pagination .page-link {
    color: var(--blue-600);
    border-color: var(--gray-200);
    border-radius: 8px !important;
    margin: 0 2px;
    font-weight: 500;
    font-size: .875rem;
}
.pagination .page-item.active .page-link {
    background: var(--blue-600);
    border-color: var(--blue-600);
}

/* ── EMPTY STATE ────────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}
.empty-state-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blue-500);
    margin-bottom: 1.25rem;
}

/* ── ABOUT SECTION ──────────────────────── */
.about-section {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
    border-top: 1px solid var(--gray-200);
}

/* ── SPONSOR BÖLÜMÜ ────────────────────────── */
.sponsor-section {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.sponsor-seviye-baslik { text-align: center; margin-bottom: 1.5rem; }
.sponsor-rozet {
    display: inline-block;
    padding: .35rem 1.1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}
.sponsor-logolar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}
.sponsor-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: all .2s;
    min-width: 120px;
    min-height: 70px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}
a.sponsor-logo-item:hover {
    border-color: var(--blue-100);
    box-shadow: 0 4px 20px rgba(37,99,235,.1);
    transform: translateY(-3px);
}
.sponsor-logo-item img { filter: grayscale(30%); transition: filter .2s; }
.sponsor-logo-item:hover img { filter: grayscale(0%); }
.sponsor-ad-text { font-weight: 700; color: var(--gray-700); font-size: .9rem; }

/* ── GİRİŞ / KAYIT SAYFASI ──────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gray-50);
}

.auth-hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
    padding: 2rem 0;
    text-align: center;
}

.auth-hero img {
    height: 44px;
    filter: brightness(0) invert(1);
    margin-bottom: .75rem;
}

.auth-hero-title {
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .3px;
}

.auth-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
}

.auth-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
}

.auth-card-header {
    padding: 2rem 2rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.auth-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--blue-600);
    margin-bottom: 1rem;
}

.auth-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.4px;
    margin: 0 0 .3rem;
}

.auth-card-sub {
    font-size: .875rem;
    color: var(--gray-500);
    margin: 0;
}

.auth-card-body {
    padding: 1.75rem 2rem 2rem;
}

.auth-input-group {
    margin-bottom: 1.1rem;
}

.auth-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .4rem;
}

.auth-input {
    width: 100%;
    padding: .65rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: .9rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}

.auth-input:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.auth-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.auth-input-icon {
    position: relative;
}

.auth-input-icon .auth-input {
    padding-left: 2.5rem;
}

.auth-input-icon i {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: .95rem;
    pointer-events: none;
}

.auth-input-icon .toggle-pw {
    position: absolute;
    right: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    cursor: pointer;
    pointer-events: all;
    background: none;
    border: none;
    padding: 0;
    font-size: .95rem;
    transition: color .15s;
}
.auth-input-icon .toggle-pw:hover { color: var(--gray-700); }

.auth-error-msg {
    font-size: .78rem;
    color: #ef4444;
    margin-top: .3rem;
    display: block;
}

.auth-btn {
    width: 100%;
    padding: .75rem;
    background: var(--blue-600);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    margin-top: .5rem;
}

.auth-btn:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,.3);
}

.auth-btn:active { transform: translateY(0); }

.auth-divider {
    text-align: center;
    font-size: .82rem;
    color: var(--gray-400);
    margin: 1.25rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 1px;
    background: var(--gray-200);
}

.auth-divider span {
    background: var(--white);
    padding: 0 .75rem;
    position: relative;
}

.auth-link-row {
    text-align: center;
    font-size: .875rem;
    color: var(--gray-500);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.auth-link-row a {
    color: var(--blue-600);
    font-weight: 600;
    text-decoration: none;
    transition: color .15s;
}

.auth-link-row a:hover { color: var(--blue-800); text-decoration: underline; }

.auth-alert {
    border-radius: 10px;
    padding: .85rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    border: none;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}

.auth-alert i { flex-shrink: 0; margin-top: .1rem; }
.auth-alert-danger  { background: #fef2f2; color: #b91c1c; }
.auth-alert-success { background: #f0fdf4; color: #15803d; }
.auth-alert-info    { background: var(--blue-50); color: var(--blue-700); }

.auth-tos {
    font-size: .78rem;
    color: var(--gray-400);
    line-height: 1.6;
    text-align: center;
    margin-top: 1rem;
}
.auth-tos a { color: var(--blue-500); text-decoration: none; }

/* Profil sayfası */
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    flex-shrink: 0;
}

/* Navbar üye badge */
.nav-uye-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: .3rem .75rem .3rem .4rem;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    transition: background .15s;
}
.nav-uye-badge:hover { background: rgba(255,255,255,.18); color: #fff; }
.nav-uye-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
    color: #fff;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
    .tbd-hero { padding: 3rem 0 3.5rem; }
    .hero-stats { gap: 1.25rem; }
    .event-card-img { height: 170px; }
}

@media (max-width: 576px) {
    .hero-title { letter-spacing: -.5px; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .filter-panel .row { gap: .5rem; }
}
