/* ============================
   HAKEM YORUMLARI — Premium Stadium Dark v3
   Complete UI/UX Redesign
   ============================ */

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

:root {
    /* Deep stadium night palette */
    --bg-base: #04060c;
    --bg-surface: #0a0f1a;
    --bg-card: #0f1628;
    --bg-elevated: #152035;
    --bg-hover: #1a2740;

    /* Neon pitch accents */
    --green-neon: #00e676;
    --green-bright: #69f0ae;
    --green-soft: #1b5e20;
    --green-deep: #0a3d0a;
    --green-glow: 0 0 30px rgba(0, 230, 118, 0.25), 0 0 60px rgba(0, 230, 118, 0.1);
    --green-glow-intense: 0 0 40px rgba(0, 230, 118, 0.35), 0 0 80px rgba(0, 230, 118, 0.15);

    /* Secondary palette */
    --gold: #ffd600;
    --gold-soft: rgba(255, 214, 0, 0.12);
    --red-card: #ff1744;
    --red-soft: rgba(255, 23, 68, 0.12);
    --blue-var: #448aff;
    --blue-soft: rgba(68, 138, 255, 0.12);
    --orange: #ff9100;

    /* Text hierarchy */
    --text-white: #f8fafc;
    --text-primary: #e2e8f0;
    --text-secondary: #8b9dc3;
    --text-muted: #4a5f82;

    /* Effects */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.07);
    --glass-strong: rgba(255, 255, 255, 0.08);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --radius-full: 100px;

    /* Spacing */
    --nav-height: 72px;
}

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

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    padding-top: calc(var(--nav-height) + 24px);
}

/* Animated stadium glow background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(68, 138, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 80%, rgba(255, 214, 0, 0.03) 0%, transparent 50%);
    z-index: -1;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Football pitch SVG overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1050 680' fill='none' stroke='%2300e676' stroke-width='2.5'%3E%3Crect x='2' y='2' width='1046' height='676' rx='0'/%3E%3Cline x1='525' y1='2' x2='525' y2='678'/%3E%3Ccircle cx='525' cy='340' r='91.5'/%3E%3Ccircle cx='525' cy='340' r='4' fill='%2300e676'/%3E%3Crect x='2' y='138' width='165' height='404'/%3E%3Crect x='883' y='138' width='165' height='404'/%3E%3Crect x='2' y='228' width='55' height='224'/%3E%3Crect x='993' y='228' width='55' height='224'/%3E%3Ccircle cx='110' cy='340' r='4' fill='%2300e676'/%3E%3Ccircle cx='940' cy='340' r='4' fill='%2300e676'/%3E%3Cpath d='M 167 288 A 56 56 0 0 1 167 392'/%3E%3Cpath d='M 883 288 A 56 56 0 0 0 883 392'/%3E%3C/svg%3E");
    background-size: min(100vw, 1400px) auto;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--green-soft);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-neon);
}

/* ======== FLOATING NAVBAR ======== */
.navbar {
    position: fixed;
    top: 12px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 8px;
    background: rgba(10, 15, 26, 0.95);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 230, 118, 0.06);
    border-color: rgba(0, 230, 118, 0.12);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white) !important;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
}

.nav-logo {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.2));
    transition: filter 0.3s ease;
}

.navbar-brand:hover .nav-logo {
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.4));
}

.hero-logo-container {
    display: inline-block;
}

.hero-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(0, 230, 118, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.navbar-brand:hover {
    color: var(--green-neon) !important;
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

.navbar-nav {
    gap: 2px;
}

.navbar-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
    transition: all 0.25s ease;
    border-bottom: 2px solid transparent;
    text-shadow: none;
    border-radius: var(--radius-sm);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--green-neon) !important;
    background: rgba(0, 230, 118, 0.06);
    border-bottom-color: transparent;
}

.navbar-nav .nav-link.active {
    color: var(--green-neon) !important;
    background: rgba(0, 230, 118, 0.08);
}

.navbar-toggler {
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,230,118,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======== MAIN CONTAINER ======== */
.container-fluid {
    background: transparent;
    box-shadow: none;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    max-width: 1200px;
    border-radius: 0;
}

/* ======== HERO ======== */
.hero-section {
    text-align: center;
    padding: 4rem 1rem 2.5rem;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
}

.hero-title span,
.hero-title .accent {
    background: linear-gradient(135deg, var(--green-neon), var(--green-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ======== STAT CARDS ======== */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-neon), var(--blue-var), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 230, 118, 0.15);
    box-shadow: var(--green-glow);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: rgba(0, 230, 118, 0.08);
    border-radius: 12px;
    color: var(--green-neon);
}

.stat-icon svg,
.stat-icon i {
    width: 24px;
    height: 24px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green-neon) 0%, var(--green-bright) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ======== CARDS ======== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    border-color: rgba(0, 230, 118, 0.12);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 230, 118, 0.06);
}

.card-clickable {
    cursor: pointer;
}

.card-clickable:hover {
    transform: translateY(-3px);
}

.card-header {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08) 0%, rgba(68, 138, 255, 0.04) 100%);
    border-bottom: 1px solid rgba(0, 230, 118, 0.08);
    color: var(--text-white);
    padding: 1rem 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0 !important;
}

.card-body {
    color: var(--text-primary) !important;
    padding: 1.25rem;
}

.card-body h4,
.card-body h5,
.card-body h6 {
    color: var(--text-white) !important;
}

.card-body p,
.card-body span,
.card-body div {
    color: var(--text-secondary) !important;
}

.card-body a {
    color: var(--green-bright);
}

.card-title {
    color: var(--text-white) !important;
}

.card-footer {
    background: rgba(0, 230, 118, 0.03);
    border-top: 1px solid var(--glass-border);
    padding: 0.85rem 1.25rem;
}

/* ======== SCOREBOARD MATCH CARDS ======== */
.match-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green-neon), var(--green-soft));
    transition: width 0.3s ease;
}

.match-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 230, 118, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 230, 118, 0.08);
}

.match-card:hover::before {
    width: 4px;
}

.match-score {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-white) !important;
    letter-spacing: -0.02em;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.match-team-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-white);
    flex: 1;
}

.match-team-name:last-child {
    text-align: right;
}

.match-vs {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85rem;
    padding: 0 0.5rem;
}

.match-score-center {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--green-neon);
    background: rgba(0, 230, 118, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    min-width: 60px;
    text-align: center;
}

.match-date {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.match-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.match-meta svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* ======== BUTTONS ======== */
.btn {
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.55rem 1.3rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #04060c;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00e676, #69f0ae);
    color: #04060c;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #04060c;
    font-weight: 700;
}

.btn-success:hover {
    background: linear-gradient(135deg, #00e676, #69f0ae);
    color: #04060c;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #d50000, var(--red-card));
    color: #fff;
}

.btn-danger:hover {
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-hover);
    color: var(--text-white);
    transform: translateY(-1px);
}

.btn-warning {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #1a1a1a;
    font-weight: 700;
}

.btn-warning:hover {
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 1px solid rgba(0, 230, 118, 0.25);
    color: var(--green-bright);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(0, 230, 118, 0.08);
    border-color: var(--green-neon);
    color: var(--green-neon);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.1);
}

.btn-outline-primary {
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--green-bright);
    background: transparent;
}

.btn-outline-primary:hover {
    background: rgba(0, 230, 118, 0.08);
    border-color: var(--green-neon);
    color: var(--green-neon);
}

.btn-outline-secondary {
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
}

.btn-outline-danger {
    border: 1px solid rgba(255, 23, 68, 0.2);
    color: var(--red-card);
    background: transparent;
}

.btn-outline-danger:hover {
    background: var(--red-soft);
    border-color: rgba(255, 23, 68, 0.4);
    color: var(--red-card);
}

.btn-outline-success {
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--green-bright);
    background: transparent;
}

.btn-outline-success:hover {
    background: rgba(0, 230, 118, 0.08);
    border-color: var(--green-neon);
    color: var(--green-neon);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
}

.btn-sm {
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
}

.btn-link {
    text-decoration: none;
    color: var(--green-bright);
}

/* ======== BADGES ======== */
.badge {
    font-weight: 600;
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.badge svg {
    width: 12px;
    height: 12px;
}

.badge.bg-success,
.bg-success {
    background: rgba(0, 230, 118, 0.12) !important;
    color: var(--green-neon) !important;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.badge.bg-danger,
.bg-danger {
    background: var(--red-soft) !important;
    color: var(--red-card) !important;
    border: 1px solid rgba(255, 23, 68, 0.2);
}

.badge.bg-warning,
.bg-warning {
    background: var(--gold-soft) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(255, 214, 0, 0.2);
}

.badge.bg-info,
.bg-info {
    background: var(--blue-soft) !important;
    color: var(--blue-var) !important;
    border: 1px solid rgba(68, 138, 255, 0.2);
}

.badge.bg-primary {
    background: rgba(0, 230, 118, 0.12) !important;
    color: var(--green-neon) !important;
}

.badge.bg-secondary {
    background: var(--glass) !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--glass-border);
}

/* ======== POSITION & REFEREE ======== */
.position-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.position-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--orange));
    border-radius: 3px 0 0 3px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.position-item:hover {
    background: var(--glass-hover);
    border-color: rgba(0, 230, 118, 0.12);
}

.position-item:hover::before {
    opacity: 1;
}

.position-time {
    background: linear-gradient(135deg, var(--green-neon), #00c853);
    color: #04060c;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.position-type {
    background: var(--gold-soft);
    color: var(--gold);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.25rem;
    border: 1px solid rgba(255, 214, 0, 0.15);
}

.referee-comment {
    background: rgba(255, 214, 0, 0.03);
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.5rem;
    margin: 0.75rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: background 0.3s ease;
}

.referee-comment:hover {
    background: rgba(255, 214, 0, 0.06);
}

/* ======== VOTE ======== */
.user-vote {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.03), rgba(68, 138, 255, 0.02));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.vote-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.vote-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vote-btn:hover::after {
    opacity: 1;
}

.vote-btn svg {
    width: 20px;
    height: 20px;
}

.vote-correct {
    background: linear-gradient(135deg, #00c853, var(--green-neon));
    color: #04060c;
}

.vote-correct:hover {
    box-shadow: var(--green-glow-intense);
    transform: scale(1.05) translateY(-2px);
}

.vote-incorrect {
    background: linear-gradient(135deg, #d50000, var(--red-card));
    color: #fff;
}

.vote-incorrect:hover {
    box-shadow: 0 0 40px rgba(255, 23, 68, 0.35), 0 0 80px rgba(255, 23, 68, 0.15);
    transform: scale(1.05) translateY(-2px);
}

.vote-results {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.25rem;
}

/* ======== PROGRESS ======== */
.progress {
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-bar {
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--green-neon), var(--green-bright));
    position: relative;
}

.progress-bar.bg-danger {
    background: linear-gradient(90deg, #d50000, var(--red-card)) !important;
}

.progress-bar.bg-success {
    background: linear-gradient(90deg, #00c853, var(--green-neon)) !important;
}

/* ======== FORMS ======== */
.form-control,
.form-select {
    background: var(--bg-surface) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(0, 230, 118, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-elevated) !important;
    color: var(--text-white) !important;
    border-color: var(--green-neon);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15), 0 0 20px rgba(0, 230, 118, 0.08);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-label {
    color: var(--text-secondary) !important;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

select.form-select option {
    background: var(--bg-surface);
    color: var(--text-primary);
}

/* ======== TABLES ======== */
.table {
    color: var(--text-primary);
    border-color: var(--glass-border);
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-primary);
    --bs-table-border-color: var(--glass-border);
    --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
    --bs-table-hover-bg: rgba(0, 230, 118, 0.06);
    --bs-table-hover-color: var(--text-white);
    background: transparent;
}

.table thead th {
    background: var(--bg-elevated) !important;
    color: var(--text-muted) !important;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(0, 230, 118, 0.08);
    padding: 0.75rem 1rem;
}

.table-dark {
    --bs-table-bg: var(--bg-elevated);
    --bs-table-color: var(--text-muted);
    --bs-table-border-color: var(--glass-border);
}

.table tbody td {
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 1rem;
    vertical-align: middle;
    background: transparent;
    color: var(--text-primary);
}

.table tbody tr {
    background: transparent;
}

.table tbody tr:hover {
    background: var(--glass-hover) !important;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background: var(--glass);
    color: var(--text-primary);
}

.table-responsive {
    background: transparent;
}

/* ======== ALERTS ======== */
.alert {
    border-radius: var(--radius);
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(0, 230, 118, 0.08);
    border-color: rgba(0, 230, 118, 0.15);
    color: var(--green-bright);
}

.alert-danger {
    background: var(--red-soft);
    border-color: rgba(255, 23, 68, 0.15);
    color: #ff5252;
}

.alert-warning {
    background: var(--gold-soft);
    border-color: rgba(255, 214, 0, 0.15);
    color: var(--gold);
}

.alert-info {
    background: var(--blue-soft);
    border-color: rgba(68, 138, 255, 0.15);
    color: #82b1ff;
}

/* ======== TEXT ======== */
.text-danger {
    color: var(--red-card) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-success {
    color: var(--green-neon) !important;
}

.text-warning {
    color: var(--gold) !important;
}

.text-info {
    color: var(--blue-var) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

a {
    color: var(--green-bright);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--green-neon);
}

/* ======== SECTION TITLE ======== */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-neon), transparent);
}

.section-title svg {
    width: 22px;
    height: 22px;
    color: var(--green-neon);
}

/* ======== FOOTER ======== */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a svg {
    width: 14px;
    height: 14px;
}

.footer-links a:hover {
    color: var(--green-neon);
    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--green-neon);
    text-decoration: none;
}

/* ======== GUIDE PAGE ======== */
.guide-section {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.guide-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.guide-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.guide-step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--green-neon), #00c853);
    color: #04060c;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.25);
}

.guide-step h5 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.guide-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

/* ======== FEATURE CARDS ======== */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 230, 118, 0.2);
    box-shadow: var(--green-glow);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(0, 230, 118, 0.08);
    border-radius: 14px;
    color: var(--green-neon);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h5 {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.83rem;
    line-height: 1.6;
}

/* ======== FAQ ACCORDION ======== */
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: var(--green-bright);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.2s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--green-neon);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 0.75rem;
}

/* ======== GLASS PANEL ======== */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ======== EMPTY STATE ======== */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.empty-state h4 {
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ======== WEEK NAVIGATOR ======== */
.week-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.week-nav .btn {
    border-radius: var(--radius-full);
    padding: 0.5rem 1.5rem;
}

.week-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ======== VIDEO CONTAINER ======== */
.video-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.video-container h5 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.embed-responsive {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ======== ANIMATIONS ======== */
.loading {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 230, 118, 0.15);
    border-radius: 50%;
    border-top-color: var(--green-neon);
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.7s ease-out forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0ms;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 80ms;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 160ms;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 240ms;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 320ms;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 400ms;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(7) {
    transition-delay: 480ms;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(8) {
    transition-delay: 560ms;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(9) {
    transition-delay: 640ms;
    opacity: 1;
    transform: translateY(0);
}

/* ======== PAGINATION ======== */
.pagination .page-link {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    margin: 0 2px;
}

.pagination .page-link:hover {
    background: var(--glass-hover);
    border-color: var(--green-neon);
    color: var(--green-neon);
}

.pagination .page-item.active .page-link {
    background: var(--green-neon);
    border-color: var(--green-neon);
    color: #04060c;
    font-weight: 700;
}

/* ======== DROPDOWN / MODAL ======== */
.dropdown-menu {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.dropdown-item {
    color: var(--text-secondary);
}

.dropdown-item:hover {
    background: var(--glass-hover);
    color: var(--text-white);
}

.modal-content {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.modal-header {
    border-bottom: 1px solid var(--glass-border);
}

.modal-footer {
    border-top: 1px solid var(--glass-border);
}

/* ======== OVERRIDES ======== */
.bg-light {
    background: var(--glass) !important;
}

.bg-white {
    background: var(--bg-card) !important;
}

.border {
    border-color: var(--glass-border) !important;
}

.border-success {
    border-color: rgba(0, 230, 118, 0.3) !important;
}

.border-danger {
    border-color: rgba(255, 23, 68, 0.3) !important;
}

.text-dark {
    color: var(--text-primary) !important;
}

/* HR */
hr {
    border-color: var(--glass-border);
    opacity: 0.5;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    body {
        padding-top: calc(var(--nav-height) + 16px);
    }

    .navbar {
        top: 8px;
        left: 10px;
        right: 10px;
        border-radius: var(--radius);
    }

    .container-fluid {
        padding: 1rem 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-section {
        padding: 3rem 0.75rem 2rem;
    }

    .hero-section::before {
        width: 300px;
        height: 300px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    /* Match Cards — mobilde takım isimleri düzgün kaydırılsın */
    .match-card .card-body {
        padding: 0.75rem;
    }

    .match-card .card-title.match-score {
        font-size: 0.95rem !important;
        word-break: break-word;
        line-height: 1.4;
    }

    .match-card .d-flex.justify-content-between.align-items-start {
        flex-direction: column;
        gap: 0.5rem;
    }

    .match-score-center {
        font-size: 1.2rem;
        padding: 0.2rem 0.6rem;
        min-width: 50px;
        align-self: flex-end;
    }

    .match-card .d-flex.justify-content-between.align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }

    .match-card .btn-sm {
        align-self: flex-end;
    }

    /* Vote bölümü */
    .vote-buttons {
        flex-direction: column;
        align-items: center;
    }

    .vote-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .user-vote {
        padding: 1.5rem;
    }

    /* Pozisyon detay */
    .position-item {
        padding: 1rem;
    }

    .referee-comment {
        padding: 1rem;
    }

    /* Guide */
    .guide-step {
        flex-direction: column;
        text-align: center;
    }

    .guide-step-number {
        margin: 0 auto;
    }

    .guide-section {
        padding: 1.25rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Week selector */
    .week-nav {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .week-nav .btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.78rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.3rem;
    }

    /* Admin tabloları */
    .table-responsive {
        font-size: 0.8rem;
    }

    /* Detay sayfası */
    .card-header {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
        padding: 0.5rem 0.75rem;
    }

    .nav-logo {
        height: 28px;
    }

    .hero-title {
        font-size: 1.55rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 2rem 0.5rem 1.5rem;
    }

    .hero-logo {
        height: 60px;
    }

    /* Match cards — tam genişlik, takım isimleri dikey */
    .match-card .card-title.match-score {
        font-size: 0.88rem !important;
        line-height: 1.5;
    }

    .match-vs {
        display: block;
        padding: 0;
        font-size: 0.7rem;
    }

    .match-score-center {
        font-size: 1.1rem;
        min-width: 45px;
        padding: 0.15rem 0.5rem;
    }

    .match-meta {
        font-size: 0.75rem;
    }

    /* Stat cards */
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    /* Badges */
    .badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    /* Vote */
    .vote-btn {
        min-width: auto;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    /* Position detail */
    .position-time {
        font-size: 0.7rem;
    }

    .position-type {
        font-size: 0.7rem;
    }

    /* Container */
    .container-fluid {
        padding: 0.75rem 0.5rem;
    }

    /* Match teams — card dışı kullanımdı ama gerekirse */
    .match-teams {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .match-team-name,
    .match-team-name:last-child {
        text-align: center;
    }

    /* Buttons daha küçük */
    .btn {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
    }

    .btn-sm {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    /* Section title */
    .section-title {
        font-size: 1.1rem;
    }
}

/* ======== PREFERS REDUCED MOTION ======== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .stagger-children>* {
        opacity: 1;
        transform: none;
    }
}

/* ======== ADMIN ACTION BUTTONS ======== */
.admin-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.admin-action-group {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0;
}

.admin-action-divider {
    width: 1px;
    height: 22px;
    background: var(--glass-border);
    margin: 0 0.3rem;
    flex-shrink: 0;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    line-height: 1.4;
    text-decoration: none;
}

.admin-btn i {
    font-size: 0.7rem;
}

.admin-btn:hover {
    transform: translateY(-1px);
}

/* Override card-body global color rule */
.card-body .admin-btn-edit,
.card-body .admin-btn-edit i {
    color: var(--gold) !important;
}

.card-body .admin-btn-score,
.card-body .admin-btn-score i {
    color: var(--blue-var) !important;
}

.card-body .admin-btn-status,
.card-body .admin-btn-status i {
    color: var(--text-secondary) !important;
}

.card-body .admin-btn-comment,
.card-body .admin-btn-comment i {
    color: var(--green-neon) !important;
}

.card-body .admin-btn-position,
.card-body .admin-btn-position i {
    color: #ce93d8 !important;
}

.card-body .admin-btn-toggle-on,
.card-body .admin-btn-toggle-on i {
    color: var(--green-neon) !important;
}

.card-body .admin-btn-toggle-off,
.card-body .admin-btn-toggle-off i {
    color: var(--text-muted) !important;
}

.card-body .admin-btn-danger,
.card-body .admin-btn-danger i {
    color: var(--red-card) !important;
}

.card-body .admin-btn-youtube,
.card-body .admin-btn-youtube i {
    color: #ff5252 !important;
}

.card-body .admin-action-divider {
    background: var(--glass-border) !important;
    color: transparent !important;
}

.card-body .admin-legend-item {
    color: var(--text-secondary) !important;
}

.card-body .admin-legend-item strong {
    color: var(--text-primary) !important;
}

.card-body .admin-legend-title {
    color: var(--text-white) !important;
}

/* Admin button variants */
.admin-btn-edit {
    background: rgba(255, 214, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 214, 0, 0.15);
}

.admin-btn-edit:hover {
    background: rgba(255, 214, 0, 0.18);
    color: var(--gold);
    box-shadow: 0 2px 10px rgba(255, 214, 0, 0.15);
}

.admin-btn-score {
    background: rgba(68, 138, 255, 0.1);
    color: var(--blue-var);
    border: 1px solid rgba(68, 138, 255, 0.15);
}

.admin-btn-score:hover {
    background: rgba(68, 138, 255, 0.18);
    color: var(--blue-var);
    box-shadow: 0 2px 10px rgba(68, 138, 255, 0.15);
}

.admin-btn-status {
    background: var(--glass);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.admin-btn-status:hover {
    background: var(--glass-hover);
    color: var(--text-white);
}

.admin-btn-comment {
    background: rgba(0, 230, 118, 0.1);
    color: var(--green-neon);
    border: 1px solid rgba(0, 230, 118, 0.15);
}

.admin-btn-comment:hover {
    background: rgba(0, 230, 118, 0.18);
    color: var(--green-neon);
    box-shadow: 0 2px 10px rgba(0, 230, 118, 0.15);
}

.admin-btn-position {
    background: rgba(156, 39, 176, 0.1);
    color: #ce93d8;
    border: 1px solid rgba(156, 39, 176, 0.15);
}

.admin-btn-position:hover {
    background: rgba(156, 39, 176, 0.18);
    color: #e1bee7;
    box-shadow: 0 2px 10px rgba(156, 39, 176, 0.15);
}

.admin-btn-toggle-on {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green-neon);
    border: 1px solid rgba(0, 230, 118, 0.25);
}

.admin-btn-toggle-on:hover {
    background: rgba(0, 230, 118, 0.22);
}

.admin-btn-toggle-off {
    background: var(--glass);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.admin-btn-toggle-off:hover {
    background: var(--glass-hover);
    color: var(--text-secondary);
}

.admin-btn-danger {
    background: rgba(255, 23, 68, 0.08);
    color: var(--red-card);
    border: 1px solid rgba(255, 23, 68, 0.12);
}

.admin-btn-danger:hover {
    background: rgba(255, 23, 68, 0.15);
    box-shadow: 0 2px 10px rgba(255, 23, 68, 0.15);
}

.admin-btn-youtube {
    background: rgba(255, 0, 0, 0.08);
    color: #ff5252;
    border: 1px solid rgba(255, 0, 0, 0.12);
}

.admin-btn-youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    color: #ff5252;
}

/* YouTube link row */
.admin-yt-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 0.35rem;
}

.admin-yt-row input {
    background: var(--bg-elevated) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    max-width: 180px;
}

.admin-yt-row input::placeholder {
    color: var(--text-muted) !important;
}

/* Admin info legend */
.admin-legend {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.admin-legend-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.admin-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.35rem 1rem;
}

.admin-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.admin-legend-item strong {
    color: var(--text-primary);
}

/* ======== YORUMCU CARDS ======== */
.yorumcu-card {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.yorumcu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.12);
    border-color: rgba(0, 230, 118, 0.25);
}

.profil-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--green-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.takip-btn {
    transition: all 0.2s ease;
    font-size: 0.78rem !important;
    font-weight: 600;
}

.takip-btn:disabled {
    opacity: 0.6;
}

.empty-state {
    padding: 2rem 1rem;
}

.empty-state h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}