:root {
    /* --- COLOR PALETTE (BASE) --- */
    --bg-dark: #05070a;
    --bg-panel: rgba(10, 15, 25, 0.95);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* --- VIRTUAL FUTBOL THEME (PASTEL PINK & BLUE) --- */
    --primary-main: #f0426e;
    /* Pastel Pink */
    --accent-main: #0df2f2;
    /* Cyan / Light Blue */
    --glow-main: rgba(13, 242, 242, 0.3);

    /* --- TEXT --- */
    --text-main: #ffffff;
    --text-dim: #aab4be;

    /* --- SIZES --- */
    --sidebar-width: 240px;
    --sidebar-width-collapsed: 74px;
    --border-radius: 16px;

    /* --- PREMIUM REDESIGN TOKENS (SEDE STYLE) --- */
    --primary-blue: #00d4ff;
    --accent-green: #00ff88;
    --neon-red: #ff0055;
    --text-muted: #8896a3;
    --text-light: #ffffff;
    --bg-card: rgba(10, 15, 25, 0.8);
}

/* --- THEME DEFINITIONS --- */
body[data-theme="gaming"] {
    --primary-main: #f0426e;
    --accent-main: #0df2f2;
    --glow-main: rgba(13, 242, 242, 0.3);
}

body[data-theme="sunset"] {
    --primary-main: #ff8c00;
    --accent-main: #ff0055;
    --glow-main: rgba(255, 0, 85, 0.3);
}

body[data-theme="mint"] {
    --primary-main: #00ff88;
    --accent-main: #00d4ff;
    --glow-main: rgba(0, 212, 255, 0.3);
}

body[data-theme="purple"] {
    --primary-main: #9d00ff;
    --accent-main: #f0426e;
    --glow-main: rgba(240, 66, 110, 0.3);
}

body[data-theme="midnight"] {
    --primary-main: #1a1a2e;
    --accent-main: #f0426e;
    --glow-main: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Space Grotesk', 'Lexend', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .broadcaster-dashboard {
        padding: 10px;
        gap: 15px;
    }

    .stat-tile {
        padding: 12px;
        border-radius: 12px;
    }

    .stat-tile .value {
        font-size: 1.4rem;
    }

    .component-card {
        padding: 15px;
        border-radius: 15px;
    }

    .match-hero {
        padding: 15px;
        min-height: 220px;
    }

    .vs-text {
        font-size: 2rem;
    }
}

.broadcaster-dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    padding-bottom: 80px;
    /* Space for footer news */
}

.premium-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #000;
    padding: 15px 30px;
    border-bottom: 2px solid var(--primary-blue);
    margin-bottom: 20px;
}

.premium-nav-item {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
}

.premium-nav-item.active {
    color: #fff;
    border-bottom: 3px solid var(--primary-blue);
    padding-bottom: 5px;
}

.live-network-tag {
    margin-left: auto;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid var(--primary-blue);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

/* --- RESET & BASE --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lexend', 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    background-image:
        linear-gradient(rgba(7, 9, 14, 0.9), rgba(7, 9, 14, 0.8)),
        url('../img/Inicio_app.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- TOP STATS ROW --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-tile {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.stat-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-main);
}

.stat-tile .label {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-tile .value {
    font-family: 'Lexend', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
}

.stat-tile .value.highlight {
    color: var(--accent-blue);
}

/* --- MATCH HERO --- */
.match-hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 25px;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--accent-main);
    box-shadow: 0 0 20px var(--glow-main);
}

.match-header-tag {
    background: var(--primary-blue);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    display: inline-block;
    letter-spacing: 1px;
}

.match-rival-tag {
    background: #fff;
    color: #000;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.vs-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-grow: 1;
}

.team-display {
    text-align: center;
}

.team-shield {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 4px solid var(--primary-blue);
    margin-bottom: 15px;
    transform: rotate(5deg);
}

.team-name {
    font-weight: 800;
    font-size: 1.2rem;
    font-style: italic;
    text-transform: uppercase;
}

.vs-text {
    font-family: 'Lexend', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-blue);
    font-style: italic;
    position: relative;
}

.vs-text::after {
    content: 'VS';
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    opacity: 0.2;
    transform: translate(4px, 4px);
}

/* --- SIDEBAR COMPONENTS --- */
.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.component-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.card-title {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transfer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    border-radius: 4px;
}

/* --- TACTICS & SENTIMENT --- */
.bottom-main-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tactics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tactic-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
    cursor: pointer;
}

.tactic-btn:hover {
    background: var(--primary-blue);
    border-color: #fff;
}

/* --- STANDINGS --- */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
    color: #fff;
}

.standings-table th {
    text-align: left;
    color: #888;
    text-transform: uppercase;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.standings-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.standing-pos {
    font-style: italic;
    font-weight: 900;
    color: var(--accent-blue);
}

/* --- FOOTER FLASH NEWS --- */
.flash-news-footer {
    grid-column: 1 / span 2;
    background: #000;
    border-top: 1px solid var(--primary-blue);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.flash-tag {
    background: var(--primary-blue);
    padding: 2px 8px;
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 15px;
}

.flash-marquee {
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1;
}

.flash-content {
    display: inline-block;
    animation: flash-slide 30s linear infinite;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes flash-slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.version-tag-footer {
    font-size: 0.65rem;
    color: #444;
    font-weight: 900;
}

/* --- LOGO SIZING (OFFICIAL BALANCE) --- */
.official-logo {
    height: 35px;
    /* Reduced from 40px for better balance */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.official-logo-centered-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

/* --- ROADMAP TICKER (MARQUEE) --- */
.roadmap-ticker-container {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    height: 34px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 50;
}

.roadmap-ticker-container::before {
    content: 'ROADMAP';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent-red);
    color: white;
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.5);
}

.ticker-wrap {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-item span {
    color: var(--accent-blue);
    margin-right: 8px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- LAYOUT STRUCTURE --- */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* --- SIDEBAR --- */
.sidebar {
    width: var(--sidebar-width);
    background: rgba(10, 15, 25, 0.98);
    backdrop-filter: blur(25px);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.sidebar.collapsed {
    width: var(--sidebar-width-collapsed);
}

.brand-area {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-bottom: 1px solid var(--glass-border);
}

.nav-menu {
    padding: 20px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--text-dim);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: 0.2s;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
}

.nav-item.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-blue);
    border-left: 4px solid var(--accent-blue);
}

.nav-icon {
    min-width: 24px;
    font-size: 1.1rem;
}

/* --- MAIN WRAPPER --- */
.main-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    transition: margin-left 0.4s;
}

.sidebar.collapsed+.main-wrapper {
    margin-left: var(--sidebar-width-collapsed);
}

/* Base sidebar z-index slightly above main content but below top-nav unless on mobile */
.sidebar {
    z-index: 9990;
}

.res-w {
    background: #00ff88;
}

.res-d {
    background: #ff8c00;
}

.res-l {
    background: #ff0055;
}

.sentiment-excelente {
    color: #00ff88;
}

.sentiment-bueno {
    color: #00ff88;
}

.sentiment-media {
    color: #ff8c00;
}

.sentiment-critica {
    color: #ff0055;
}

/* --- TOP HEADER --- */
.top-header {
    height: var(--header-height);
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    position: sticky;
    top: 0;
    z-index: 9900;
    /* Increased to avoid broadcaster-dashboard overlap */
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.2s;
    z-index: 9901;
    /* Extra bump over top-header */
}

.title-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    transition: transform 0.3s ease;
}

.brand-link-header:hover .header-brand-logo {
    transform: scale(1.05);
}

.title-club-logo {
    height: 38px;
    width: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 242, 242, 0.3));
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.title-text {
    display: flex;
    flex-direction: column;
}

.title-sub {
    font-size: 0.6rem;
    color: var(--accent-main);
    font-weight: 800;
    letter-spacing: 1px;
}

.page-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Economy Pills */
/* Economy Capsule */
.economy-capsule {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
}

.eco-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
}

.eco-item.vc {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.eco-item.tvc {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.eco-item.pvc {
    background: rgba(0, 242, 242, 0.1);
    color: #00f2f2;
}

/* Premium Profile Pill */
.premium-profile-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
    border: 1px solid var(--glass-border);
    padding: 6px 6px 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.premium-profile-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-main);
    transform: translateY(-1px);
}

.pp-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.pp-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
}

.pp-role {
    font-size: 0.65rem;
    color: var(--accent-main);
    font-weight: 700;
    text-transform: uppercase;
}

.pp-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent-main);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(0, 242, 242, 0.3);
}

/* --- GLASS PANELS (SPORTS STYLE) --- */
.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
}

/* Dashboard Action Cards */
.action-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: 0.3s;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--accent-blue);
    transform: translateX(4px);
}

/* --- BUTTONS --- */
.btn-neon-action {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 10px 15px;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-neon-action:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.btn-neon-2d {
    background: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

.btn-neon-2d:hover {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

/* Removal of old news footer styles if they exist */
.flash-news-footer {
    display: none !important;
}

/* Construction Placeholder Style */
.construction-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #666;
    font-size: 0.8rem;
    text-align: center;
}

/* Followers Grid */
.followers-grid-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
}

.f-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #888;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 10px;
    border-radius: 6px;
}

.f-item .v {
    font-weight: 800;
    color: #fff;
}

.f-item.total {
    border-top: 1px solid var(--glass-border);
    padding-top: 10px;
}

.f-item.total .v {
    color: var(--accent-main);
    font-size: 0.85rem;
}

/* Real Standings Neighbors highlight */
.user-row-highlight {
    background: rgba(13, 242, 242, 0.1) !important;
    border-left: 3px solid var(--accent-main) !important;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px !important;
        background: #05070a;
        /* Solid background for mobile visibility */
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
        z-index: 100000 !important;
        /* Over absolutely everything */
    }

    .mobile-close-sidebar {
        display: block !important;
    }

    .sidebar.mobile-open {
        transform: translateX(0);
    }

    .main-wrapper {
        margin-left: 0 !important;
    }

    .sidebar.collapsed+.main-wrapper {
        margin-left: 0;
    }

    .top-header {
        padding: 0 12px;
        height: 70px;
    }

    .header-right .user-name,
    .header-right .user-role {
        display: none;
    }

    .dynamic-title-pill .title-sub {
        display: none;
    }

    .dynamic-title-pill .page-title {
        font-size: 0.8rem;
    }

    .header-right .economy-capsule {
        display: none;
        /* Hide in header, show in dashboard hero */
    }

    .premium-profile-pill .pp-info {
        display: none;
    }

    .premium-profile-pill {
        padding: 4px;
    }
}

/* --- GLOBAL REDESIGN UTILITIES (SEDE STYLE) --- */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

.neon-border {
    border: 1px solid var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.neon-border-red {
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}

.neon-border-green {
    border: 1px solid var(--accent-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.premium-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-card-title i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.neon-tag {
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.neon-tag-blue {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.neon-tag-red {
    background: rgba(255, 0, 85, 0.1);
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
}

.neon-tag-green {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.premium-button {
    background: linear-gradient(135deg, var(--primary-blue), #00a3cc);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.premium-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* --- LAYOUT HELPERS --- */
.broadcaster-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    position: relative;
}

@media (max-width: 1024px) {
    .broadcaster-dashboard {
        grid-template-columns: 1fr;
    }
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pitch-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}