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

:root {
    /* Brand Colors derived from the logo & logotype */
    --primary-red: #c21217;                 /* Deep metallic crimson red from shield */
    --primary-red-dark: #7a0b0e;            /* Shaded dark red */
    --primary-red-glow: rgba(194, 18, 23, 0.55);
    
    --accent-yellow: #dcb36c;               /* Champagne metallic gold from "BWL" letter bevels */
    --accent-yellow-glow: rgba(220, 179, 108, 0.4);
    --accent-gold-dark: #a17c3b;            /* Bronze/gold shadow */
    
    --chrome-silver: #c5c5c7;               /* Brushed steel/silver from Batman silhouette */
    --chrome-silver-light: #f5f5f7;
    --chrome-silver-dark: #8e8e93;
    
    --secondary-black: #080809;            /* Solid black background from the shield logo */
    --bg-dark: #0f0f11;                     /* Dark steel charcoal background */
    --bg-card: rgba(18, 18, 20, 0.72);      /* Glassmorphism card fill */
    --bg-card-hover: rgba(28, 28, 32, 0.88); /* Lighter on hover */
    
    --text-white: #FFFFFF;
    --text-gray: #a1a1a6;                   /* Modern cooler grey */
    --glass-border: rgba(194, 18, 23, 0.25); /* Crimson glass outline */
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
}

/* Cyber SF6 Particle & Grid Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(194, 18, 23, 0.09) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(220, 179, 108, 0.05) 0%, transparent 45%),
        linear-gradient(rgba(15, 15, 17, 0.96), rgba(8, 8, 9, 0.99));
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.25;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--secondary-black);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

/* Typography */
h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

a {
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}
a:hover {
    color: var(--accent-yellow);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
    background: var(--bg-card-hover);
    border-color: rgba(163, 0, 0, 0.4);
    box-shadow: 0 12px 40px 0 rgba(163, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--secondary-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-logo {
    max-width: 160px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(194, 18, 23, 0.4);
    animation: pulseGlow 1.8s infinite ease-in-out;
}

.loading-bar-container {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 25px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
    position: absolute;
    animation: fillBar 1.5s forwards ease-in-out;
}

/* Custom Buttons (Red Energy Glow) */
.btn-batliga {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-batliga-primary {
    background: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 0 10px var(--primary-red-glow);
}

.btn-batliga-primary:hover {
    background: #c20000;
    color: var(--text-white);
    box-shadow: 0 0 20px var(--primary-red), 0 0 5px var(--accent-yellow);
    transform: scale(1.03);
}

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

.btn-batliga-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(231, 177, 0, 0.3);
    transform: scale(1.03);
}

.btn-batliga-accent {
    background: var(--accent-yellow);
    color: var(--secondary-black);
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}

.btn-batliga-accent:hover {
    background: #ffc400;
    box-shadow: 0 0 20px var(--accent-yellow);
    transform: scale(1.03);
}

/* Navbar */
.navbar-batliga {
    background: rgba(13, 13, 13, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-red);
    padding: 12px 0;
}

.navbar-brand img {
    height: 45px;
    transition: filter var(--transition-speed) ease;
}

.navbar-brand:hover img {
    filter: drop-shadow(0 0 8px var(--primary-red));
}

.nav-link-batliga {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-white) !important;
    margin: 0 8px;
    padding: 6px 12px !important;
    border-radius: 4px;
    position: relative;
}

.nav-link-batliga::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

.nav-link-batliga:hover::after,
.nav-link-batliga.active::after {
    width: 80%;
}

.nav-link-batliga:hover,
.nav-link-batliga.active {
    color: var(--primary-red) !important;
    text-shadow: 0 0 8px rgba(163, 0, 0, 0.4);
}

/* User Badge/Status */
.user-menu-badge {
    background: rgba(163, 0, 0, 0.2);
    border: 1px solid var(--primary-red);
    border-radius: 30px;
    padding: 4px 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-menu-badge .role-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 3px;
}

.role-admin { background-color: var(--primary-red); color: white; }
.role-moderator { background-color: var(--accent-yellow); color: black; }
.role-user { background-color: #333333; color: white; }

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(194, 18, 23, 0.18) 0%, transparent 60%);
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    border-radius: 28px;
    padding: 10px;
    background: radial-gradient(circle at center, rgba(194, 18, 23, 0.25) 0%, transparent 70%);
}

.hero-logo {
    max-width: 310px;
    border-radius: 24px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 35px var(--primary-red-glow);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.hero-logo:hover {
    transform: translateY(-8px) scale(1.025) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 45px var(--primary-red), 0 0 20px var(--accent-yellow);
}

.navbar-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: filter var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.navbar-logo-img:hover {
    filter: drop-shadow(0 0 12px var(--primary-red-glow));
    transform: scale(1.03);
}

.footer-logo {
    height: 65px;
    width: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6), 0 0 15px var(--primary-red-glow);
    transition: all var(--transition-speed) ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 10px var(--primary-red));
    transform: scale(1.03);
}

/* Metallic Utility Gradients */
.text-metallic-gold {
    background: linear-gradient(135deg, #f3e7c4 0%, #dcb36c 50%, #b88f4c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(220, 179, 108, 0.2);
}

.text-metallic-silver {
    background: linear-gradient(135deg, #ffffff 0%, #e2e2e4 40%, #a1a1a6 70%, #d2d2d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-family: var(--font-display);
    color: var(--accent-yellow);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(220, 179, 108, 0.35);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e2e4 45%, #a1a1a6 80%, #d2d2d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* SF6 character selection grid & avatars */
.character-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    object-fit: cover;
    background-color: var(--secondary-black);
    box-shadow: 0 0 5px var(--primary-red-glow);
}

.character-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary-red);
    object-fit: cover;
    background-color: var(--secondary-black);
}

.character-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Player Cards & Directory */
.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all var(--transition-speed) ease;
}

.player-card .bg-character {
    position: absolute;
    top: 0;
    right: -20px;
    height: 100%;
    width: 60%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    transition: opacity var(--transition-speed) ease, transform 0.5s ease;
    z-index: 1;
}

.player-card:hover .bg-character {
    opacity: 0.35;
    transform: scale(1.1) translateX(-5px);
}

.player-card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.winrate-radial {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-yellow) calc(var(--percentage) * 1%), rgba(255,255,255,0.1) 0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.winrate-radial::after {
    content: attr(data-val);
    position: absolute;
    width: 53px;
    height: 53px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-white);
}

/* Table Style Esports */
.table-esports {
    border-collapse: separate;
    border-spacing: 0 8px;
    width: 100%;
}

.table-esports th {
    font-family: var(--font-display);
    color: var(--text-gray);
    font-size: 0.8rem;
    padding: 12px 18px;
    border: none;
    text-transform: uppercase;
}

.table-esports tbody tr {
    background: rgba(25, 25, 25, 0.45);
    backdrop-filter: blur(5px);
    transition: all 0.25s ease;
}

.table-esports tbody tr:hover {
    background: rgba(163, 0, 0, 0.1);
    transform: scale(1.005);
}

.table-esports tbody td {
    padding: 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.table-esports tbody tr td:first-child {
    border-left: 2px solid transparent;
    border-radius: 8px 0 0 8px;
}

.table-esports tbody tr:hover td:first-child {
    border-left-color: var(--primary-red);
}

.table-esports tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}

.rank-gold { color: var(--accent-yellow); font-weight: 900; }
.rank-silver { color: #CCCCCC; font-weight: 900; }
.rank-bronze { color: #CD7F32; font-weight: 900; }

/* Interactive Brackets Styling (Capcom Cup IX style) */
.bracket-viewport {
    width: 100%;
    overflow-x: auto;
    padding: 40px 20px;
    cursor: grab;
    user-select: none;
}

.bracket-viewport:active {
    cursor: grabbing;
}

.bracket-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    min-width: max-content;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    min-height: 600px;
    gap: 30px;
}

.round-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--accent-yellow);
    border-bottom: 1px solid rgba(231,177,0,0.3);
    padding-bottom: 8px;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
}

.bracket-match {
    position: relative;
    width: 220px;
    background: rgba(13, 13, 13, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    z-index: 10;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bracket-match.match-active {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(231, 177, 0, 0.2);
}

.bracket-match:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(163, 0, 0, 0.3);
}

.bracket-match-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    height: 40px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bracket-match-player:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bracket-match-player.winner {
    color: var(--text-white);
    background: rgba(163, 0, 0, 0.15);
}

.bracket-match-player.loser {
    color: var(--text-gray);
    opacity: 0.6;
}

.player-info-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 140px;
}

.player-score-cell {
    font-family: var(--font-display);
    font-weight: 900;
    background: rgba(0, 0, 0, 0.5);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    color: var(--accent-yellow);
}

.player-score-cell.score-won {
    background: var(--primary-red);
    color: white;
}

/* SVG Connection Lines */
.bracket-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bracket-link {
    fill: none;
    stroke: rgba(163, 0, 0, 0.35);
    stroke-width: 2px;
    transition: stroke 0.3s ease;
}

.bracket-link.link-highlighted {
    stroke: var(--accent-yellow);
    stroke-dasharray: 4;
    animation: dash 1s linear infinite;
}

/* Modals glass customization */
.modal-content-batliga {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    color: var(--text-white);
}

.modal-header-batliga {
    border-bottom: 1px solid rgba(163, 0, 0, 0.2);
}

.modal-footer-batliga {
    border-top: 1px solid rgba(163, 0, 0, 0.2);
}

.form-control-batliga {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white) !important;
    border-radius: 6px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.form-control-batliga:focus {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red-glow);
}

.form-control-batliga::placeholder {
    color: #666;
}

/* Community Sections Card */
.comunidad-card {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    height: 100%;
}

.comunidad-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.comunidad-card:hover .comunidad-icon {
    transform: scale(1.1);
    color: var(--accent-yellow);
    text-shadow: 0 0 15px var(--accent-yellow-glow);
}

/* News Slider Styles */
.swiper-news {
    width: 100%;
    padding-bottom: 50px !important;
}

.news-card-swiper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-swiper:hover .news-image {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(13,13,13,0.95) 75%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Hall Of Fame Timeline */
.hof-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hof-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary-red);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.hof-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.hof-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--accent-yellow);
    border: 3px solid var(--primary-red);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.hof-left { left: 0; }
.hof-right { left: 50%; }

.hof-right::after {
    left: -8px;
}

.hof-content {
    padding: 20px 30px;
    background: var(--bg-card);
    position: relative;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

/* Admin Panel Styling */
.admin-tab-btn {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}

.admin-tab-btn.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

/* Toast Container (Notifications) */
.toast-container-batliga {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-batliga {
    background: rgba(13, 13, 13, 0.95);
    border-left: 4px solid var(--primary-red);
    border-top: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-batliga.show {
    transform: translateX(0);
}

/* Keyframes */
@keyframes pulseGlow {
    0% { transform: scale(0.95); filter: drop-shadow(0 0 10px var(--primary-red-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px var(--primary-red)); }
    100% { transform: scale(0.95); filter: drop-shadow(0 0 10px var(--primary-red-glow)); }
}

@keyframes fillBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

/* Character Portrait Selection Form */
.character-select-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-height: 220px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

.char-select-option {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 4px;
    text-align: center;
    transition: all 0.2s ease;
}

.char-select-option:hover {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.char-select-option.selected {
    border-color: var(--accent-yellow);
    background: rgba(231,177,0,0.1);
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}

.char-select-option img {
    width: 100%;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.char-select-option span {
    display: block;
    font-size: 0.65rem;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hof-timeline::after {
        left: 31px;
    }
    .hof-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .hof-container::after {
        left: 23px;
        right: auto;
    }
    .hof-left, .hof-right {
        left: 0;
    }
    .bracket-viewport {
        cursor: ew-resize;
    }
    .character-select-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Admin Actions in Player Profile */
.admin-profile-actions {
    background: rgba(194, 18, 23, 0.05);
    border-radius: 8px;
    padding: 15px;
    border: 1px dashed rgba(194, 18, 23, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-admin-action {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.btn-admin-action i {
    font-size: 0.95rem;
    transition: transform var(--transition-speed) ease;
}

.btn-admin-action:hover i {
    transform: scale(1.15);
}

/* Suspend action button */
.btn-admin-suspend {
    border-color: rgba(220, 179, 108, 0.2);
}
.btn-admin-suspend:hover {
    background: rgba(220, 179, 108, 0.15);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(220, 179, 108, 0.25);
}

/* Ban action button */
.btn-admin-ban {
    border-color: rgba(239, 68, 68, 0.2);
}
.btn-admin-ban:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.25);
}

/* Delete action button */
.btn-admin-delete {
    border-color: rgba(194, 18, 23, 0.2);
}
.btn-admin-delete:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 0 15px var(--primary-red-glow);
}

/* Unban action button */
.btn-admin-unban {
    border-color: rgba(16, 185, 129, 0.2);
}
.btn-admin-unban:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}
