:root {
    --primary: #800000;
    --primary-hover: #a00000;
    --secondary: #EDDC92;
    --navy: #0E2245;
    --navy-light: #162a4d;
    --danger: #ef4444;
    --success: #10b981;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --dash-sidebar-w: 220px;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    max-width: 100%;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4 {
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Global heading scale refined for better balance */
h1 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

h2 {
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
}

h3 {
    font-size: clamp(1rem, 1.25vw, 1.2rem);
}

/* Laptop & Desktop premium typography - tuned for better readability */
@media (min-width: 1200px) {
    h1 {
        font-size: 2.2rem !important;
        letter-spacing: -1px;
    }

    h2 {
        font-size: 1.6rem !important;
        letter-spacing: -0.2px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.45rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.08rem;
    }
}

.navbar {
    background: var(--navy);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-tile {
    background: #800000;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #EDDC92;
    font-size: 1.5rem;
}

.brand-tile-lg {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.6rem;
}

.brand-icon-lg {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    border-radius: 16px;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
}

.main-content {
    min-height: calc(100vh - 260px);
}

.page-header {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.page-header .container {
    text-align: center;
}

.card {
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    overflow: hidden;
}

.card-navy {
    background: var(--navy) !important;
    color: #ffffff !important;
    border: none !important;
}

.card-navy h1,
.card-navy h2,
.card-navy h3,
.card-navy h4,
.card-navy h5,
.card-navy h6,
.card-navy p,
.card-navy span,
.card-navy div {
    color: #ffffff !important;
}

.card-navy .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.card-body,
.card-header,
.card-footer {
    padding: 0.75rem 1rem;
}

.btn,
.c_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    transition: all 0.3s ease;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.l_btn,
.btn-primary,
.btn-warning {
    background: #800000 !important;
    color: #fff !important;
    border: 1px solid #800000 !important;
}

.btn-navy {
    background: var(--navy) !important;
    border: 1px solid var(--navy) !important;
    color: #fff !important;
}

.btn-outline-danger {
    border-radius: 50px;
}

.form-control,
.form-select {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: var(--text-main);
    padding: 0.7rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(237, 220, 146, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
}

.footer-main {
    background: #0a1128;
    color: #94a3b8;
    padding: 70px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-heading {
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    margin: 0;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 350px;
}

.hide-desktop {
    display: none;
}

.menu-toggle-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.menu-icon {
    width: 32px;
    height: 32px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 34, 69, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 6rem 2.5rem;
    z-index: 10001;
    animation: slideDown 0.3s ease-out;
    overflow-y: auto;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-link {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    color: #fff !important;
}

.mobile-nav-link:hover {
    color: var(--secondary) !important;
}

.mobile-nav-divider {
    width: 60px;
    margin: 1rem auto;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-signin-wrap {
    width: 100%;
    margin-top: 1rem;
}

.mobile-signin-btn {
    width: 100%;
    padding: 1rem !important;
    font-size: 1.1rem !important;
    background: var(--secondary) !important;
    color: var(--navy) !important;
}

.search-form-min {
    min-width: 280px;
}

.venue-thumb {
    height: 180px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 14px 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-thumb-icon {
    font-size: 3rem;
    opacity: .3;
}

.venue-title {
    font-size: 1rem;
    letter-spacing: -.3px;
}

.venue-thumb-sm {
    height: 160px;
}

.venue-thumb-icon-sm {
    font-size: 2.5rem;
    opacity: .3;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

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

.home-section {
    padding: 4rem 0;
}

.home-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.home-hero h1,
.home-hero .fw-700,
.home-hero .fw-900 {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(237, 220, 146, .15);
    border: 1px solid rgba(237, 220, 146, .3);
    color: var(--secondary);
    font-size: .75rem;
    font-weight: 700;
    padding: .35rem 1rem;
    border-radius: 50px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 520px;
    opacity: .85;
}

.hero-stat-label {
    opacity: .75;
}

.hero-preview-card {
    max-width: 420px;
    margin: auto;
}

.auth-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding: 2rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
    padding: 2rem;
}

.auth-title {
    letter-spacing: -1px;
}

.auth-eye-btn {
    background: rgba(255, 255, 255, .06);
    border-left: 1px solid rgba(255, 255, 255, .1) !important;
}

.auth-eye-btn-muted {
    color: #94a3b8;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1.5rem 0;
}

.stat-card {
    text-align: center;
    height: 100%;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: .75rem;
}

.stat-icon-gold {
    background: rgba(245, 158, 11, .15);
    color: var(--secondary);
}

.stat-icon-indigo {
    background: rgba(99, 102, 241, .15);
    color: #6366f1;
}

.stat-icon-green {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
}

.stat-icon-red {
    background: rgba(239, 68, 68, .15);
    color: #ef4444;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    margin-top: .45rem;
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-main);
    --bs-table-hover-bg: #f8fafc;
}

.badge-confirmed {
    background: rgba(16, 185, 129, .14);
    color: #0f766e;
}

.badge-pending {
    background: rgba(245, 158, 11, .18);
    color: #92400e;
}

.badge-cancelled {
    background: rgba(239, 68, 68, .14);
    color: #b91c1c;
}

.badge-completed {
    background: rgba(14, 34, 69, .14);
    color: var(--navy);
}

.admin-shell {
    min-height: calc(100vh - 64px);
}

.admin-panel-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0 .5rem;
}

.breadcrumb-soft {
    --bs-breadcrumb-divider-color: #64748b;
    opacity: .7;
}

.court-card-ui {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s;
}

.calendar-sticky {
    top: 80px;
}

.calendar-compact {
    font-size: .75rem;
}

.badge-live {
    background: rgba(239, 68, 68, .2);
    color: #b91c1c;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .6;
    }
}

.glass-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.score-total {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--primary);
    line-height: 1;
}

.score-team {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.ball-pip {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    background: #e2e8f0;
    color: #334155;
    border: 2px solid #cbd5e1;
}

.ball-pip.wicket {
    background: var(--danger);
    color: #fff;
    border-color: var(--danger);
}

.ball-pip.six {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}

.ball-pip.four {
    background: var(--secondary);
    color: var(--navy);
    border-color: var(--secondary);
}

.ball-pip.dot {
    background: #f1f5f9;
    color: #64748b;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    min-height: 45px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Home Page Component Upgrades */
.ticker-wrap {
    overflow: hidden;
    height: 40px;
    background: #0d1b31;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #cbd5e1;
    white-space: nowrap;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.glass-tabs {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 16px;
    display: inline-flex;
    gap: 0.5rem;
}

.glass-tab-btn {
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s;
}

.glass-tab-btn.active {
    background: var(--primary);
    color: var(--navy);
}

.broadcaster-hero {
    background: linear-gradient(rgba(14, 34, 69, 0.9), rgba(14, 34, 69, 0.9)), url('https://images.unsplash.com/photo-1541252260730-0412e8e2108e?q=80&w=2400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
}

.gallery-card {
    border-radius: 20px;
    border: 0;
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-card:hover {
    transform: translateY(-8px);
}

.verified-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(14, 34, 69, 0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern Hero Pattern */
.hero-block {
    background: linear-gradient(135deg, #0E2245 0%, #172a4d 100%);
    border-radius: 24px;
    padding: 2.25rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.hero-block::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.hero-sub {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 0;
    max-width: 700px;
}

/* Glassmorphism Controls */
.glass-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.glass-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.glass-control:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    font-weight: 700;
    transition: all 0.2s ease;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block !important;
    }

    .hero-block {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1b252c;
    line-height: 26px;
    overflow-x: hidden;
    background: var(--bg-light);
}

.dash-shell {
    display: grid;
    grid-template-columns: var(--dash-sidebar-w) 1fr;
    background: #f8fafc;
    min-height: calc(100vh - 80px);
}

.dash-sidebar {
    background: #fff;
    border-right: 1px solid #e2e8f0;
    padding: 1rem 0.5rem;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    z-index: 100;
}

.dash-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 2px;
}

.dash-nav-link i {
    font-size: 1rem;
}

.dash-nav-link:hover {
    background: #f1f5f9;
    color: var(--navy);
}

.dash-nav-link.active {
    background: rgba(14, 34, 69, 0.05);
    color: var(--navy);
    border-left: 3px solid var(--navy);
    border-radius: 0 8px 8px 0;
}

.dash-main {
    padding: 1rem 1.25rem;
}

.dash-kpi-card {
    padding: 0.75rem;
    border-radius: 12px;
}

.stat-value {
    font-size: 1.15rem;
}

.stat-label {
    font-size: 0.6rem;
    margin-top: 0.25rem;
}

.dash-kpi-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card-header {
    padding: 0.6rem 1rem;
}

.card-body {
    padding: 0.75rem 1rem;
}

h4 {
    font-size: 1.15rem !important;
}

h6 {
    font-size: 0.75rem !important;
}

/* DataTables Compact */
table.dataTable td {
    padding: 0.5rem 0.4rem !important;
    font-size: 0.75rem;
}

table.dataTable thead th {
    font-size: 0.7rem;
    padding: 0.6rem 0.4rem !important;
}

/* --- UI Polish & Fixes --- */
.venue-manage-banner {
    background: linear-gradient(135deg, #0e2245 0%, #1a365d 100%);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    /* Prevent overlap */
    gap: 1rem;
    min-height: 70px;
}

.venue-manage-banner .h4 {
    font-size: 1rem !important;
}

.venue-manage-banner p {
    font-size: 0.75rem;
}

.dash-kpi-card {
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    min-height: 80px;
    /* Compact height */
}

.dash-kpi-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.stat-value {
    font-size: 1rem;
}

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

.btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.btn-quick {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
}

/* Global Font Sync */
h1,
h2,
h3 {
    font-size: 1.25rem !important;
}

h4,
h5 {
    font-size: 1rem !important;
}

h6 {
    font-size: 0.7rem !important;
}

/* Mobile Nav - Move to Top */
.dash-mobile-nav {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dash-mobile-nav .nav-link {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    border-bottom: 2px solid transparent;
}

.dash-mobile-nav .nav-link.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

@media (max-width: 991px) {
    .dash-shell {
        grid-template-columns: 1fr;
    }

    .dash-sidebar {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    /* Reset bottom padding */
}

@media (max-width: 576px) {
    .dash-main {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    .btn-quick {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

/* --- Modern Broadcast UI --- */
.hero-block {
    background: linear-gradient(135deg, #0e2245 0%, #1a365d 100%);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(14, 34, 69, 0.15);
}

.hero-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-sub {
    opacity: 0.8;
    font-size: 1rem;
    max-width: 600px;
}

.glass-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.glass-control:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15) !important;
}

.glass-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.broadcast-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
}

.broadcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.card-live-badge {
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.scoreboard-compact {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.sb-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sb-name {
    font-weight: 800;
    color: var(--navy);
    font-size: 0.9rem;
}

.sb-score {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--navy);
}

@media (max-width: 768px) {
    .hero-block {
        padding: 1.5rem;
        border-radius: 16px;
    }

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