/* Gamer Ban List - Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #08090d;
    --bg-card: rgba(18, 22, 36, 0.7);
    --bg-card-hover: rgba(26, 32, 54, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --color-lol: #0ac8b9;
    --color-lol-gold: #c8aa6e;
    --color-val: #ff4655;
    --color-purple: #9d4edd;
    --color-accent: #00f3ff;
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --badge-perm: #ff4655;
    --badge-cond: #f59e0b;
    --badge-warn: #3b82f6;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-neon: 0 0 25px rgba(0, 243, 255, 0.15);
    --shadow-val: 0 0 25px rgba(255, 70, 85, 0.2);
    --shadow-lol: 0 0 25px rgba(10, 200, 185, 0.2);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
    transform: translateZ(0);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 70, 85, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(10, 200, 185, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.05) 0%, transparent 60%);
}

/* Header & Navbar */
.app-header {
    background: rgba(11, 13, 20, 0.96);
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-val), var(--color-purple));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.4);
}

.brand-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text p {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-admin {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-admin:hover {
    background: rgba(0, 243, 255, 0.15);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.12), rgba(10, 200, 185, 0.12));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.hero-title span.highlight-ceyda {
    color: var(--color-purple);
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.hero-title span.highlight-val {
    color: var(--color-val);
    text-shadow: 0 0 15px rgba(255, 70, 85, 0.5);
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Quick Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 1.8rem;
}

.stat-info .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-info .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Leaderboard / Hall of Fame */
.leaderboard-section {
    margin-bottom: 2.5rem;
}

.section-title-box {
    margin-bottom: 1.2rem;
}

.section-title-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.leaderboard-card {
    background: #0f1423;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.lb-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}

.lb-card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.lb-header-icon {
    font-size: 1.3rem;
}

.lb-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lb-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.lb-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.lb-item-link {
    text-decoration: none;
    color: inherit;
}

.lb-rank-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lb-rank {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.lb-rank.rank-1 {
    background: linear-gradient(135deg, #ffd700, #b8860b);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.lb-rank.rank-2 {
    background: linear-gradient(135deg, #e0e0e0, #8a9ba8);
    color: #000;
}

.lb-rank.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: #fff;
}

.lb-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lb-avatar {
    font-size: 1.2rem;
}

.lb-hero-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lb-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.lb-count-badge {
    background: rgba(255, 70, 85, 0.15);
    border: 1px solid rgba(255, 70, 85, 0.3);
    color: var(--color-val);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Controls Bar (Tabs & Filters) */
.controls-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Game Tabs */
.game-tabs {
    display: flex;
    background: rgba(15, 20, 35, 0.7);
    padding: 6px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
}

.game-tab {
    padding: 0.6rem 1.4rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.game-tab.active[data-game="all"] {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(157, 78, 221, 0.2));
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.game-tab.active[data-game="lol"] {
    background: linear-gradient(135deg, rgba(10, 200, 185, 0.3), rgba(200, 170, 110, 0.3));
    color: var(--color-lol-gold);
    box-shadow: var(--shadow-lol);
}

.game-tab.active[data-game="valorant"] {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.3), rgba(255, 100, 100, 0.2));
    color: var(--color-val);
    box-shadow: var(--shadow-val);
}

.game-tab.active[data-game="apex"] {
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.35), rgba(255, 90, 0, 0.25));
    color: #ff3355;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
}

/* Player Selector Tabs */
.player-chips {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.player-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.player-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.player-chip.active {
    background: rgba(0, 243, 255, 0.15);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: var(--shadow-neon);
}

/* Search Bar */
.search-wrapper {
    position: relative;
    min-width: 280px;
    flex-grow: 1;
    max-width: 450px;
}

.search-input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.8rem;
    background: rgba(15, 20, 35, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-neon);
    background: rgba(20, 26, 46, 0.9);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Ban Cards Grid */
.ban-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
}

.ban-card {
    background: #0f1423;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
    transform: translateZ(0);
}

.ban-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.ban-card[data-game="lol"] {
    border-top: 3px solid var(--color-lol);
}

.ban-card[data-game="valorant"] {
    border-top: 3px solid var(--color-val);
}

.ban-card[data-game="apex"] {
    border-top: 3px solid #ff003c;
}

.card-header {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.card-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 9, 13, 0.2) 0%, rgba(8, 9, 13, 0.95) 100%);
}

.card-badge-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.game-tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.game-tag.lol {
    background: rgba(10, 200, 185, 0.2);
    border: 1px solid var(--color-lol);
    color: var(--color-lol);
}

.game-tag.valorant {
    background: rgba(255, 70, 85, 0.2);
    border: 1px solid var(--color-val);
    color: var(--color-val);
}

.game-tag.apex {
    background: rgba(255, 0, 60, 0.2);
    border: 1px solid #ff003c;
    color: #ff3355;
}

.ban-type-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ban-type-badge.PERMANENT {
    background: rgba(255, 70, 85, 0.2);
    color: var(--badge-perm);
    border: 1px solid rgba(255, 70, 85, 0.4);
}

.ban-type-badge.CONDITIONAL {
    background: rgba(245, 158, 11, 0.2);
    color: var(--badge-cond);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.ban-type-badge.WARNING {
    background: rgba(59, 130, 246, 0.2);
    color: var(--badge-warn);
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.hero-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.hero-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-title-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.hero-title-box p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Card Body */
.card-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.target-player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.player-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-avatar-mini {
    font-size: 1.2rem;
}

.player-name-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.ban-reason-box {
    background: rgba(0, 0, 0, 0.25);
    border-left: 3px solid var(--color-val);
    padding: 0.8rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.penalty-note-box {
    font-size: 0.8rem;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.08);
    border: 1px dashed rgba(245, 158, 11, 0.3);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.admin-card-actions {
    display: flex;
    gap: 6px;
}

.btn-icon-sm {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon-sm:hover.edit {
    background: rgba(0, 243, 255, 0.2);
    color: var(--color-accent);
}

.btn-icon-sm:hover.delete {
    background: rgba(255, 70, 85, 0.2);
    color: var(--color-val);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-glass);
    border-radius: var(--radius-xl);
}

.empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.empty-state h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-muted);
}

/* Modal Overlay & Dialogs */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 14, 0.92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #0f1423;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--color-val);
}

.modal-body {
    padding: 1.5rem;
}

/* Forms & Admin Inputs */
.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-control, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(20, 26, 46, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-primary {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--color-val), #d93845);
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-val);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
}

.btn-secondary {
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Admin Status Banner */
.admin-status-banner {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-status-text {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toast {
    background: rgba(15, 20, 35, 0.95);
    border: 1px solid var(--color-accent);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: toastIn 0.3s ease forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Per-Person Ban Summary Grid */
.player-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.8rem;
}

.player-profile-card {
    background: #0f1423;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transform: translateZ(0);
}

.pp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
}

.pp-avatar {
    font-size: 2.2rem;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.pp-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pp-game-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pp-game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

.pp-game-title.lol {
    background: rgba(10, 200, 185, 0.15);
    color: var(--color-lol);
    border: 1px solid rgba(10, 200, 185, 0.3);
}

.pp-game-title.valorant {
    background: rgba(255, 70, 85, 0.15);
    color: var(--color-val);
    border: 1px solid rgba(255, 70, 85, 0.3);
}

.pp-game-title.apex {
    background: rgba(255, 0, 60, 0.15);
    color: #ff3355;
    border: 1px solid rgba(255, 0, 60, 0.3);
}

.pp-rule-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-val);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pp-rule-item.lol {
    border-left-color: var(--color-lol);
}

.pp-rule-item.apex {
    border-left-color: #ff003c;
}

.pp-rule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pp-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-hero-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.pp-hero-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.pp-statement {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pp-statement strong {
    color: #fff;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .app-header {
        padding: 0.8rem 1rem;
    }
    .hero-banner {
        padding: 1.5rem;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    .game-tabs {
        justify-content: center;
    }
    .search-wrapper {
        max-width: 100%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Passives Only View Styles */
.passives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.passive-card {
    background: linear-gradient(145deg, rgba(18, 22, 36, 0.8), rgba(157, 78, 221, 0.08));
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.passive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.2);
    border-color: rgba(157, 78, 221, 0.6);
}

.passive-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.passive-avatar-link {
    text-decoration: none;
    transition: transform 0.2s ease;
}

.passive-avatar-link:hover {
    transform: scale(1.1);
}

.passive-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--player-color, #00f3ff), rgba(157, 78, 221, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

.passive-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.passive-name-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.passive-name-link:hover {
    color: #c084fc;
}

.passive-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.passive-card-body {
    min-height: 60px;
}

.passive-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.passive-text::before {
    content: "🎭";
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 1.5rem;
    opacity: 0.15;
}

.passive-text-empty {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.7;
}

/* Passive Ability Box - Per-Person Summary */
.pp-passive-box {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 243, 255, 0.05));
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin: 0 0 0.5rem 0;
}

.pp-passive-label {
    font-size: 0.72rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #c084fc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.pp-passive-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* Profile Link Styles */
.chip-profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    font-size: 0.65rem;
    text-decoration: none;
    margin-left: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chip-profile-link:hover {
    background: rgba(0, 243, 255, 0.25);
    transform: scale(1.15);
}

.pp-name-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pp-name-link:hover {
    color: var(--color-accent);
}

.pp-avatar-link {
    text-decoration: none;
    transition: transform 0.2s ease;
    display: block;
}

.pp-avatar-link:hover {
    transform: scale(1.1);
}

.pp-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
    margin-left: auto;
}

.pp-profile-btn:hover {
    background: rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.4);
}

.player-meta-link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.player-meta-link:hover {
    opacity: 0.8;
}

.player-meta-link .player-name-text {
    transition: color 0.2s ease;
}

.player-meta-link:hover .player-name-text {
    color: var(--color-accent);
}

/* ===== EPIC MOMENTS GALLERY ===== */
.epic-section {
    margin-bottom: 2.5rem;
}

.epic-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.epic-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.epic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.epic-card[data-game="lol"] { border-top: 3px solid var(--color-lol); }
.epic-card[data-game="valorant"] { border-top: 3px solid var(--color-val); }
.epic-card[data-game="apex"] { border-top: 3px solid var(--color-purple); }

.epic-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #0a0c15;
    overflow: hidden;
}

.epic-video-wrap iframe,
.epic-video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.epic-video-wrap.epic-no-video {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    height: 200px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.epic-link-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.epic-link-fallback:hover {
    background: rgba(0, 243, 255, 0.2);
}

.epic-card-body {
    padding: 1rem 1.2rem 1.2rem;
}

.epic-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.epic-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.epic-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.epic-player {
    font-weight: 600;
    color: var(--text-primary);
}

.epic-game-tag {
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.epic-game-tag.lol {
    background: rgba(10, 200, 185, 0.15);
    color: var(--color-lol);
    border: 1px solid rgba(10, 200, 185, 0.3);
}

.epic-game-tag.valorant {
    background: rgba(255, 70, 85, 0.15);
    color: var(--color-val);
    border: 1px solid rgba(255, 70, 85, 0.3);
}

.epic-game-tag.apex {
    background: rgba(157, 78, 221, 0.15);
    color: var(--color-purple);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

@media (max-width: 768px) {
    .epic-gallery {
        grid-template-columns: 1fr;
    }
}
