﻿body {
}

/* ========================================
   NHS HEADER
   ======================================== */
.nhseagles-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
    background: transparent;
}

.nhseagles-header.scrolled {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

/* Logo */
.logo {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    position: relative;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-nhs {
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.logo-eagles {
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-orange-secondary, #FF8555), var(--nhs-gold, #FFD700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), transparent);
    transform: skewX(12deg);
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.menu-link {
    position: relative;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s;
}

.menu-link:hover {
    transform: scale(1.1);
}

.menu-link:hover .menu-text {
    color: var(--nhs-orange-primary, #FF6B35);
}

.menu-link.active .menu-text {
    color: var(--nhs-orange-primary, #FF6B35);
}

.menu-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-gold, #FFD700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.menu-link:hover .menu-underline,
.menu-link.active .menu-underline {
    transform: scaleX(1);
}

/* Tickets Button */
.btn-IGTBANE {
    position: relative;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-orange-secondary, #FF8555), var(--nhs-gold, #FFD700));
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 900;
    font-size: 0.875rem;
    font-style: italic;
    border: none;
    cursor: pointer;
    transform: skewX(6deg);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    overflow: hidden;
    transition: all 0.3s;
}

.btn-IGTBANE:hover {
    transform: skewX(0deg) scale(1.05);
}

.btn-IGTBANE span {
    position: relative;
    z-index: 10;
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.btn-IGTBANE:hover .btn-shine {
    transform: translateX(100%);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    line-height: 1;
}

/* Mobile Menu */
.mobile-menu {
    padding: 1.5rem 0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-link {
    display: block;
    color: white;
    font-weight: 700;
    font-style: italic;
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--nhs-dark-bg-primary, #020617) 0%, var(--nhs-dark-bg-secondary, #0f172a) 100%);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    background: rgba(255, 107, 53, 0.2);
}

.btn-IGTBANE.mobile {
    width: 100%;
    margin-top: 0.5rem;
}

/* ========================================
   NHS FOOTER
   ======================================== */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--nhs-dark-bg-primary, #001F3F), var(--nhs-dark-bg-secondary, #002a5c), var(--nhs-dark-bg-primary, #001F3F));
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-orange-secondary, #FF8555), var(--nhs-gold, #FFD700));
    transform: skewY(-3deg) translateY(-4rem);
}

@keyframes floatCircleSlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.2); }
}

.section-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    position: relative;
    z-index: 10;
}

.footer-brand {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0 0 1.5rem 0;
    transition: transform 0.3s;
}

.footer-brand:hover {
    transform: scale(1.05);
}

.brand-nhs {
    display: block;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.brand-eagles {
    display: block;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-orange-secondary, #FF8555), var(--nhs-gold, #FFD700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-desc span {
    color: var(--nhs-orange-primary, #FF6B35);
    font-style: italic;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem; /* enlarges the icon glyph without changing the circle */
    background: linear-gradient(135deg, var(--nhs-orange-primary, #FF6B35), var(--nhs-gold, #FFD700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.social-icon:hover {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-gold, #FFD700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--nhs-orange-primary, #FF6B35);
    transform: translateX(10px);
    display: inline-block;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.footer-contact li:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--nhs-orange-primary, #FF6B35), var(--nhs-gold, #FFD700));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
    transition: transform 0.3s;
}

.footer-contact li:hover .contact-icon {
    transform: scale(1.1);
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    font-weight: 700;
    font-style: italic;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: var(--nhs-orange-primary, #FF6B35);
}

.newsletter-btn {
    width: 100%;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-gold, #FFD700));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 900;
    font-style: italic;
    cursor: pointer;
    transform: skewX(3deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.newsletter-btn:hover {
    transform: skewX(0deg) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.footer-love {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    transition: transform 0.3s;
}

.footer-love:hover {
    transform: scale(1.05);
}

.heart {
    color: var(--nhs-orange-primary, #FF6B35);
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    border: none;
    background: transparent;
    cursor: pointer;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.scroll-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-gold, #FFD700));
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.75;
    transition: opacity 0.3s;
}

.scroll-to-top:hover .scroll-glow {
    opacity: 1;
}

.scroll-button {
    position: relative;
    background: linear-gradient(to right, var(--nhs-orange-primary, #FF6B35), var(--nhs-orange-secondary, #FF8555), var(--nhs-gold, #FFD700));
    padding: 1.25rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: skewX(6deg);
    transition: all 0.3s;
}

.scroll-to-top:hover .scroll-button {
    transform: skewX(0deg) scale(1.2) rotate(15deg);
}

.scroll-icon {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    animation: iconBounceUp 1.5s infinite;
}

@keyframes iconBounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.scroll-border {
    position: absolute;
    inset: 0;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: borderRotate 3s infinite linear;
}

@keyframes borderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-sparkle {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 1.25rem;
    animation: sparkleRotate 2s infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1) rotate(180deg); }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    .footer-brand {
        font-size: 2rem;
    }
}

/* ========================================
   DATAGRID LINK READABILITY
   ======================================== */

/* Ensure MudLinks in data grids are always readable */
.centered-grid .mud-table-row .mud-link {
    color: #1a56db;
    font-weight: 600;
    text-decoration: underline;
}

/* Striped (grey) rows — bump contrast further */
.centered-grid .mud-table-striped tbody tr:nth-child(odd) .mud-link {
    color: #1040b0;
    font-weight: 700;
}

/* Hover state */
.centered-grid .mud-table-row .mud-link:hover {
    color: #FF6B35;
    text-decoration: underline;
}

/* ========================================
   ACCESSIBILITY — reduce motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   SMALL-PHONE TIER
   ======================================== */
@media (max-width: 480px) {
    .footer {
        padding: 4rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
    }
}

.section-corner-image {
    position: absolute;
    top: 0;
    right: 1rem; /* aligns with .section-container padding */
    width: 200px;
    height: auto;
    z-index: 11;
}

.mic-divider {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
}

.mic-divider-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 720px;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(0,31,63,0.85), rgba(0,10,25,0.95));
    border: 1px solid rgba(255,107,53,0.35);
    box-shadow: 0 0 40px rgba(255,107,53,0.25);
}

.mic-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.15em;
    color: #FF6B35;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.mic-live-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #FF3B3B;
    box-shadow: 0 0 10px #FF3B3B;
    animation: micPulse 1.5s infinite;
}

@keyframes micPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

.mic-divider-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255,107,53,0.5));
}

.mic-copy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mic-tagline {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.mic-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 900;
    font-style: italic;
    text-decoration: none;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.2s ease;
}

.mic-link:hover {
    filter: drop-shadow(0 0 12px rgba(255,215,0,0.7));
}

.mic-featuring {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.gametime-section {
    position: relative;
    padding: 5rem 0;
}

/* Two boxes side-by-side, wrapping on small screens */
.gametime-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}

.mic-box,
.countdown-box {
    position: relative;
    flex: 1 1 360px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(0,31,63,0.85), rgba(0,10,25,0.95));
    border: 1px solid rgba(255,107,53,0.35);
}

/* Countdown */
.countdown-label {
    color: #FF6B35;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.countdown-opponent {
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    margin: 0;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    min-width: 64px;
    padding: 0.75rem 0.5rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.05);
}

.countdown-value {
    font-size: 2.25rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-name {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.countdown-live {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    color: #FF3B3B;
    text-transform: uppercase;
}

.countdown-datetime {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.forecast-box {
    position: relative;
    flex: 1 1 360px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(0,31,63,0.85), rgba(0,10,25,0.95));
    border: 1px solid rgba(255,107,53,0.35);
}

.forecast-title {
    color: #FF6B35;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.forecast-icon {
    font-size: 4rem;
    line-height: 1;
}

.forecast-condition {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    font-style: italic;
    margin: 0;
}

.forecast-temp {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forecast-location {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.forecast-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.5rem;
}

.forecast-stat {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.5rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.05);
}

.forecast-stat-value {
    color: white;
    font-size: 1.35rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
}

.forecast-stat-name {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.scoreboard-box {
    position: relative;
    flex: 1 1 360px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(0,31,63,0.9), rgba(0,10,25,0.97));
    border: 1px solid rgba(255,107,53,0.35);
    overflow: hidden;
}

    /* Extra glow while the game is live */
    .scoreboard-box.live {
        border-color: #FF3B3B;
        box-shadow: 0 0 40px rgba(255,59,59,0.35);
    }

.scoreboard-status {
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scoreboard-live {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF3B3B;
}

.scoreboard-live-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #FF3B3B;
    box-shadow: 0 0 10px #FF3B3B;
    animation: micPulse 1.5s infinite; /* reuse existing pulse keyframes */
}

.scoreboard-final {
    color: rgba(255,255,255,0.85);
}

.scoreboard-pre {
    color: #FF6B35;
}

.scoreboard-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.scoreboard-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.scoreboard-helmet {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.scoreboard-helmet-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.scoreboard-name {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.05em;
    text-align: center;
}

.scoreboard-score {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scoreboard-vs {
    color: rgba(255,255,255,0.5);
    font-size: 1.25rem;
    font-weight: 900;
    font-style: italic;
}

.scoreboard-meta {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 700;
}

