:root {
    --sz-primary: #0e2e10;
    --sz-primary-rgb: 14, 46, 16;
    --sz-accent: #258a00;
    --sz-accent-rgb: 37, 138, 0;
    --sz-secondary: #1e293b;
    --sz-highlight: #153e17;
    --sz-surface: #f8fafc;
    --sz-surface-alt: #f1f5f9;
    --sz-surface-warm: #fafaf9;
    --sz-border: #e2e8f0;
    --sz-border-light: #f1f5f9;
    --sz-border-hover: #cbd5e1;
    --sz-text: #0f172a;
    --sz-text-secondary: #475569;
    --sz-text-muted: #94a3b8;
    --sz-white: #ffffff;
    --sz-accent-hover: #1e6f00;
    --sz-accent-light: #f0fdf4;
    --sz-highlight-light: #ecfdf5;
    --sz-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --sz-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --sz-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --sz-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
    --sz-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --sz-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --sz-shadow-accent: 0 4px 14px rgba(37, 138, 0, 0.15);
    --sz-shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    --sz-radius-sm: 6px;
    --sz-radius: 10px;
    --sz-radius-lg: 14px;
    --sz-radius-xl: 20px;
    --sz-radius-2xl: 24px;
    --sz-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --sz-transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sz-transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
    --sz-success: #16a34a;
    --sz-warning: #f59e0b;
    --sz-danger: #dc2626;
    --sz-info: #0284c7;
    --sz-gold: #d97706;
    --sz-spacing-xs: 0.25rem;
    --sz-spacing-sm: 0.5rem;
    --sz-spacing-md: 1rem;
    --sz-spacing-lg: 1.5rem;
    --sz-spacing-xl: 2rem;
    --sz-spacing-2xl: 3rem;
    --sz-spacing-3xl: 4rem;
    --sz-font-xs: 0.75rem;
    --sz-font-sm: 0.8125rem;
    --sz-font-base: 0.9375rem;
    --sz-font-md: 1rem;
    --sz-font-lg: 1.125rem;
    --sz-font-xl: 1.25rem;
    --sz-font-2xl: 1.5rem;
    --sz-font-3xl: 1.875rem;
    --sz-font-4xl: 2.25rem;
    --sz-line-height-tight: 1.2;
    --sz-line-height-snug: 1.35;
    --sz-line-height-normal: 1.6;
    --sz-line-height-relaxed: 1.75;
    --sz-line-height-loose: 1.85;
    --bs-link-color: #268a01;
    --bs-link-hover-color: #1e6f00;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--sz-surface);
    color: var(--sz-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
    color: var(--sz-text);
    letter-spacing: -0.01em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-size: 1.375rem;
    line-height: 1.25;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.3;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

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

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}

p {
    line-height: 1.7;
    color: var(--sz-text-secondary);
}

.font-serif {
    font-family: var(--font-serif);
}

.article-body {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.85;
    color: #1e293b;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body blockquote {
    border-left: 4px solid var(--sz-accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--sz-surface-alt);
    border-radius: 0 var(--sz-radius) var(--sz-radius) 0;
    font-style: italic;
}

.article-body img {
    border-radius: var(--sz-radius-lg);
    margin: 1.5rem 0;
}

a {
    color: var(--sz-highlight);
    text-decoration: none;
    transition: color var(--sz-transition);
}

a:hover {
    color: var(--sz-accent);
}

.site-header {
    z-index: 1030;
}

.header-top {
    background: var(--sz-primary);
    position: relative;
    z-index: 1031;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
}

.header-brand {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.header-brand:hover {
    opacity: 0.9;
    color: #fff;
}

.header-brand-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sz-accent), #1a7a00);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-brand-text {
    font-family: var(--font-sans);
    line-height: 1;
}

.header-brand-accent {
    color: var(--sz-accent);
}

.header-top-center {
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
}

.header-tagline {
    font-weight: 500;
    font-style: italic;
    opacity: 0.7;
}

.header-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

.header-date {
    font-weight: 400;
}

.header-top-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header-cta-btn {
    background: var(--sz-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 5px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    align-items: center;
}

.header-cta-btn:hover {
    color: #fff;
    background: #1a7a00;
    transform: translateY(-1px);
}

.header-signin-btn {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.header-signin-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.header-user-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    transition: background 0.2s ease;
    font-size: 0.8rem;
}

.header-user-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.header-user-trigger::after {
    font-size: 0.55rem;
    opacity: 0.6;
}

.header-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sz-accent);
}

.header-user-initials {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sz-accent), var(--sz-highlight));
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-user-name {
    font-weight: 500;
    font-size: 0.78rem;
}

.header-dropdown {
    min-width: 230px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--sz-border);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
    padding: 0;
    animation: navDropdownFade 0.2s ease;
}

.header-dropdown-user {
    padding: 0.85rem 1rem;
    background: var(--sz-surface);
    font-size: 0.82rem;
    border-bottom: 1px solid var(--sz-border-light);
}

.header-dropdown .dropdown-item {
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.header-dropdown .dropdown-item:hover {
    background: var(--sz-accent-light);
    color: var(--sz-accent);
}

.header-nav {
    background: linear-gradient(180deg, #0b260d 0%, var(--sz-primary) 100%);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0;
    min-height: auto;
}

.header-nav .container {
    padding-top: 0;
    padding-bottom: 0;
}

.header-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
}

.header-nav-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    padding: 0.65rem 0.85rem;
    letter-spacing: 0.01em;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.header-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.header-nav-link.active {
    color: #fff;
    font-weight: 600;
    background: rgba(37, 138, 0, 0.12);
}

.header-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--sz-accent);
    border-radius: 2px 2px 0 0;
}

.nav-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dc3545;
    margin-right: 5px;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.header-nav-brand-sm {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.header-nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.header-nav-toggle:hover,
.header-nav-toggle:focus {
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.hamburger-line {
    display: block;
    width: 17px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.header-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.header-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.dropdown-user-header {
    border-bottom: 1px solid var(--sz-border-light);
}

.nav-mega-parent {
    position: relative;
}

.nav-mega-trigger {
    gap: 0.3rem;
}

.nav-mega-arrow {
    font-size: 0.55rem;
    margin-left: 0.2rem;
    transition: transform 0.25s ease;
}

.nav-mega-parent:hover .nav-mega-arrow {
    transform: rotate(180deg);
}

.nav-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 240px;
    background: var(--sz-white);
    border-radius: var(--sz-radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--sz-border-light);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1040;
}

.nav-mega-parent:hover .nav-mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--sz-white);
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.06));
}

.nav-mega-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--sz-radius);
    color: var(--sz-text);
    text-decoration: none;
    transition: background 0.18s ease;
}

.nav-mega-item:hover {
    background: var(--sz-surface-alt);
    color: var(--sz-text);
}

.nav-mega-item.active {
    background: rgba(37, 138, 0, 0.08);
}

.nav-mega-item > i {
    font-size: 1.15rem;
    color: var(--sz-accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 138, 0, 0.08);
    border-radius: var(--sz-radius-sm);
    flex-shrink: 0;
}

.nav-mega-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.nav-mega-desc {
    display: block;
    font-size: 0.72rem;
    color: var(--sz-text-muted);
    line-height: 1.3;
}

@keyframes navDropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
    .header-top-inner {
        padding: 0.45rem 0;
    }

    .header-nav .navbar-collapse {
        background: var(--sz-primary);
        border-radius: 0 0 10px 10px;
        padding: 0.4rem;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-top: none;
        max-height: 70vh;
        overflow-y: auto;
    }

    .header-nav-list {
        flex-direction: column;
        gap: 1px;
    }

    .header-nav-link {
        padding: 0.6rem 0.85rem;
        border-radius: 6px;
        font-size: 0.88rem;
    }

    .header-nav-link:hover,
    .header-nav-link.active {
        background: rgba(255, 255, 255, 0.08);
    }

    .header-nav-link.active::after {
        display: none;
    }

    .header-nav-link.active {
        border-left: 3px solid var(--sz-accent);
        padding-left: calc(0.85rem - 3px);
    }

    .nav-mega-parent {
        position: static;
    }

    .nav-mega-trigger {
        justify-content: space-between;
    }

    .nav-mega-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 0;
        background: rgba(255, 255, 255, 0.04);
        border: none;
        box-shadow: none;
        border-radius: var(--sz-radius);
        padding: 0.25rem 0 0.25rem 0.5rem;
        margin: 0.15rem 0 0.25rem 0;
        display: none;
    }

    .nav-mega-dropdown::before {
        display: none;
    }

    .nav-mega-parent.open .nav-mega-dropdown {
        display: block;
    }

    .nav-mega-parent.open .nav-mega-arrow {
        transform: rotate(180deg);
    }

    .nav-mega-item {
        color: rgba(255, 255, 255, 0.7);
        padding: 0.5rem 0.75rem;
    }

    .nav-mega-item:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
    }

    .nav-mega-item.active {
        background: rgba(37, 138, 0, 0.12);
        color: #fff;
    }

    .nav-mega-item > i {
        background: rgba(255, 255, 255, 0.08);
        color: var(--sz-accent);
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
    }

    .nav-mega-desc {
        color: rgba(255, 255, 255, 0.4);
    }
}

.hero-section {
    background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-highlight) 50%, #0a1f0c 100%);
    color: white;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(37, 138, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    color: #fff;
}

.card-sport {
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    box-shadow: var(--sz-shadow);
    transition: transform var(--sz-transition), box-shadow var(--sz-transition), border-color var(--sz-transition);
    overflow: hidden;
    background: var(--sz-white);
}

.card-sport:hover {
    transform: translateY(-3px);
    box-shadow: var(--sz-shadow-lg);
    border-color: rgba(37, 138, 0, 0.15);
}

a>.card-sport,
a .card-sport {
    pointer-events: none;
}

a:has(.card-sport) {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.badge-live {
    background: var(--sz-accent);
    animation: pulse 1.5s infinite;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.badge-upcoming {
    background: var(--sz-highlight);
}

.badge-completed {
    background: #16a34a;
}

.section-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--sz-primary);
    border-left: 4px solid var(--sz-accent);
    padding-left: 14px;
    letter-spacing: -0.01em;
}

.match-card {
    background: white;
    border-radius: var(--sz-radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--sz-border);
    transition: box-shadow var(--sz-transition), border-color var(--sz-transition), transform var(--sz-transition);
}

.match-card:hover {
    box-shadow: var(--sz-shadow-md);
    border-color: transparent;
    transform: translateY(-2px);
}

.match-score {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sz-primary);
    font-variant-numeric: tabular-nums;
}

.team-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sz-highlight), var(--sz-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 138, 0, 0.2);
}

.footer-sport {
    background: linear-gradient(180deg, #0a220c 0%, var(--sz-primary) 30%, #071a09 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-sport::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sz-accent), var(--sz-highlight), var(--sz-accent), transparent);
}

.footer-sport a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.2s ease;
}

.footer-sport a:hover {
    color: var(--sz-accent);
}

.footer-brand-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sz-accent), #1e6f00);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(37, 138, 0, 0.3);
    flex-shrink: 0;
}

.footer-tagline {
    line-height: 1.8;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.85rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--sz-accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a .bi-chevron-right {
    font-size: 0.65rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: var(--sz-accent) !important;
    padding-left: 2px;
}

.footer-links a:hover .bi-chevron-right {
    opacity: 1;
    transform: translateX(0);
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-btn:hover {
    background: var(--sz-accent);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--sz-accent);
    box-shadow: 0 4px 16px rgba(37, 138, 0, 0.3);
}

.footer-newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-form input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: var(--sz-radius);
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    flex: 1;
    transition: all 0.3s ease;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--sz-accent) !important;
    box-shadow: 0 0 0 3px rgba(37, 138, 0, 0.15);
    outline: none;
}

.footer-newsletter-form .btn {
    border-radius: var(--sz-radius);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    white-space: nowrap;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-trust-item {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
}

.footer-trust-item .bi {
    color: var(--sz-accent);
    opacity: 0.7;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-link:hover {
    color: var(--sz-accent) !important;
}

.btn-accent {
    background: var(--sz-accent);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--sz-radius);
    transition: background var(--sz-transition), transform var(--sz-transition), box-shadow var(--sz-transition);
}

.btn-accent:hover {
    background: var(--sz-accent-hover);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 138, 0, 0.3);
}

.btn-accent:active {
    transform: translateY(0);
}

.standings-table th {
    background: var(--sz-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.standings-table td {
    font-size: 0.875rem;
    vertical-align: middle;
}

.article-card-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-sport:hover .article-card-img {
    transform: scale(1.03);
}

.reading-time {
    font-size: 0.775rem;
    color: var(--sz-text-muted);
    font-weight: 500;
}

.author-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sz-highlight), var(--sz-accent));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    box-shadow: 0 2px 6px rgba(37, 138, 0, 0.15);
}

.topic-badge {
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--sz-highlight-light);
    color: var(--sz-highlight);
    border: 1px solid #a7f3d0;
    cursor: pointer;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    transition: all var(--sz-transition);
}

.topic-badge:hover {
    background: var(--sz-highlight);
    color: white;
    border-color: var(--sz-highlight);
    transform: translateY(-1px);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-highlight) 100%);
    border-radius: var(--sz-radius-xl);
    color: white;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 40%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bookmark-btn {
    cursor: pointer;
    font-size: 1.2rem;
    transition: color var(--sz-transition), transform var(--sz-transition);
}

.bookmark-btn:hover {
    color: var(--sz-accent);
    transform: scale(1.15);
}

.bookmark-btn.active {
    color: var(--sz-accent);
}

.sidebar-widget {
    background: white;
    border-radius: var(--sz-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--sz-shadow);
    border: 1px solid var(--sz-border);
    margin-bottom: 1.5rem;
    transition: box-shadow var(--sz-transition);
}

.sidebar-widget:hover {
    box-shadow: var(--sz-shadow-md);
}

.sidebar-widget h6 {
    font-weight: 700;
    color: var(--sz-primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--sz-accent);
    padding-bottom: 0.6rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 2rem;
}

.loading-spinner.active {
    display: block;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform var(--sz-transition), box-shadow var(--sz-transition), background var(--sz-transition);
    border: 1px solid var(--sz-border);
    background: var(--sz-white);
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--sz-shadow-md);
    background: var(--sz-surface-alt);
}

.read-also-box {
    background: #fff;
    border-left: 4px solid var(--sz-accent);
    border-radius: 0 var(--sz-radius) var(--sz-radius) 0;
    box-shadow: var(--sz-shadow);
    overflow: hidden;
}

.read-also-header {
    background: var(--sz-primary);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.read-also-body {
    padding: 1rem;
}

.read-also-link {
    text-decoration: none;
    color: var(--sz-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--sz-transition);
}

.read-also-link:hover {
    color: var(--sz-accent);
}

.breaking-ticker {
    background: var(--sz-accent);
    color: white;
    overflow: hidden;
    position: relative;
}

.breaking-label {
    background: #167600;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.breaking-scroll {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.breaking-scroll-inner {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.breaking-scroll-inner:hover {
    animation-play-state: paused;
}

.breaking-scroll-inner a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
}

.breaking-scroll-inner a:hover {
    text-decoration: underline;
}

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

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

.bbc-grid-hero {
    position: relative;
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.bbc-grid-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bbc-grid-hero:hover img {
    transform: scale(1.02);
}

.bbc-grid-hero .bbc-hero-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    width: 100%;
    padding: 2.5rem 2rem 2rem;
}

.bbc-grid-hero .bbc-hero-no-img {
    background: linear-gradient(135deg, var(--sz-primary), var(--sz-highlight));
    width: 100%;
    padding: 2.5rem 2rem 2rem;
}

.bbc-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--sz-border);
    transition: background var(--sz-transition), padding-left var(--sz-transition);
}

.bbc-card:hover {
    background: var(--sz-surface-alt);
    padding-left: 4px;
}

.bbc-card-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--sz-radius);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bbc-card:hover .bbc-card-img {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .bbc-card-img {
        width: 140px;
        height: 90px;
    }
}

:root {
    --plyr-color-main: var(--sz-accent);
}

.plyr {
    border-radius: var(--sz-radius-lg);
}

.plyr--youtube .plyr__poster {
    border-radius: var(--sz-radius-lg);
}

.paywall-container {
    position: relative;
    overflow: hidden;
}

.paywall-blurred-content {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    user-select: none;
    pointer-events: none;
    opacity: 0.5;
}

.paywall-wall-inline {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-top: 60px;
    background: linear-gradient(to bottom, transparent, var(--sz-surface) 60px, var(--sz-surface) 100%);
}

.paywall-card {
    background: white;
    border-radius: var(--sz-radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--sz-shadow-xl);
    border: 1px solid var(--sz-border);
}

.paywall-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sz-highlight), var(--sz-primary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.paywall-icon.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.meter-banner {
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    border-radius: var(--sz-radius);
    padding: 0.75rem 1rem;
    border: 1px solid #f59e0b;
}

.inline-subscribe-prompt {
    background: linear-gradient(135deg, #f6fff4 0%, #f5f8ff 100%);
    border: 1px solid #d2fec7;
    border-radius: var(--sz-radius);
}

.sticky-subscribe-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--sz-primary);
    color: white;
    padding: 0.75rem 0;
    transform: translateY(100%);
    transition: transform var(--sz-transition-slow);
}

.sticky-subscribe-bar.visible {
    transform: translateY(0);
}

.premium-badge-card {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.text-accent {
    color: var(--sz-accent) !important;
}

.text-muted-custom {
    color: var(--sz-text-muted) !important;
}

.bg-surface {
    background-color: var(--sz-surface) !important;
}

.bg-surface-alt {
    background-color: var(--sz-surface-alt) !important;
}

.border-subtle {
    border-color: var(--sz-border) !important;
}

.card-premium {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    box-shadow: var(--sz-shadow);
    transition: all var(--sz-transition);
    overflow: hidden;
}

.card-premium:hover {
    box-shadow: var(--sz-shadow-lg);
    border-color: transparent;
    transform: translateY(-2px);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-header .section-title {
    margin-bottom: 0;
}

.section-header .section-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sz-accent);
    text-decoration: none;
    transition: color var(--sz-transition);
}

.section-header .section-link:hover {
    color: var(--sz-accent-hover);
}

.tag-pill {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    background: var(--sz-accent);
    color: white;
}

.divider {
    border: none;
    border-top: 1px solid var(--sz-border);
    margin: 1.5rem 0;
}

.text-balance {
    text-wrap: balance;
}

.img-cover {
    object-fit: cover;
    width: 100%;
}

.img-rounded {
    border-radius: var(--sz-radius-lg);
}

.gap-grid {
    gap: 1.5rem;
}

::selection {
    background: rgba(37, 138, 0, 0.15);
    color: var(--sz-primary);
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
    }

    .newsletter-box {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .sidebar-widget {
        padding: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.video-card-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--sz-radius-lg) var(--sz-radius-lg) 0 0;
}

.video-card-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: background var(--sz-transition);
    pointer-events: none;
}

.video-card-overlay:hover::after {
    background: rgba(0, 0, 0, 0.25);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform var(--sz-transition), box-shadow var(--sz-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-play-icon i {
    font-size: 1.2rem;
    color: var(--sz-accent);
    margin-left: 3px;
}

.video-card-overlay:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    z-index: 2;
    font-variant-numeric: tabular-nums;
}

.video-show-breadcrumb {
    padding: 0.6rem 0;
}

.video-show-breadcrumb .breadcrumb {
    margin: 0;
    font-size: 0.8rem;
}

.video-show-breadcrumb .breadcrumb-item a {
    color: var(--sz-accent);
    text-decoration: none;
    font-weight: 500;
}

.video-show-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

.player-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    background: #000;
    margin-bottom: 2rem;
}

.video-title-section {
    margin-bottom: 1.75rem;
}

.video-title-section h1 {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.video-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sz-border);
    margin-bottom: 1rem;
}

.video-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--sz-text-muted);
}

.video-meta-item i {
    font-size: 0.85rem;
    color: var(--sz-accent);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.share-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--sz-border);
    background: var(--sz-white);
    color: var(--sz-text-secondary);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.share-btn-premium:hover {
    border-color: var(--sz-accent);
    color: var(--sz-accent);
    background: rgba(37, 138, 0, 0.05);
    transform: translateY(-1px);
}

.share-btn-premium.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.05);
}

.share-btn-premium.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.05);
}

.share-btn-premium.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
    background: rgba(37, 211, 102, 0.05);
}

.description-card {
    border: 1px solid var(--sz-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    background: var(--sz-white);
}

.description-card h6 {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description-card h6 i {
    color: var(--sz-accent);
}

.description-card p {
    color: var(--sz-text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    white-space: pre-line;
}

.sidebar-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--sz-accent);
}

.sidebar-heading h5 {
    font-weight: 800;
    font-size: 1rem;
    margin: 0;
    letter-spacing: -0.01em;
}

.sidebar-heading i {
    color: var(--sz-accent);
    font-size: 1.1rem;
}

.related-video-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem;
    border-radius: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.related-video-item:hover {
    background: var(--sz-surface-alt);
    border-color: var(--sz-border);
    transform: translateX(3px);
}

.related-video-thumb {
    position: relative;
    flex-shrink: 0;
    width: 130px;
    height: 75px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.related-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-video-item:hover .related-video-thumb img {
    transform: scale(1.05);
}

.related-video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.related-video-item:hover .play-icon {
    opacity: 1;
}

.play-icon i {
    font-size: 0.8rem;
    color: var(--sz-accent);
    margin-left: 2px;
}

.related-video-info h6 {
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--sz-text);
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-video-info .rel-meta {
    font-size: 0.68rem;
    color: var(--sz-text-muted);
}

.browse-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--sz-border);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sz-text);
    text-decoration: none;
    transition: all 0.25s ease;
    background: transparent;
}

.browse-all-btn:hover {
    border-color: var(--sz-accent);
    color: var(--sz-accent);
    background: rgba(37, 138, 0, 0.04);
}

@media (max-width: 768px) {
    .video-title-section h1 {
        font-size: 1.3rem;
    }

    .related-video-thumb {
        width: 110px;
        height: 65px;
    }

    .player-container {
        border-radius: 0.5rem;
    }
}

.label-overline {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sz-accent);
    margin-bottom: 0.5rem;
    display: block;
}

.card-editorial {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    transition: all var(--sz-transition);
    position: relative;
}

.card-editorial:hover {
    box-shadow: var(--sz-shadow-lg);
    border-color: rgba(37, 138, 0, 0.12);
    transform: translateY(-3px);
}

.card-editorial .card-editorial-img {
    overflow: hidden;
}

.card-editorial .card-editorial-img img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-editorial:hover .card-editorial-img img {
    transform: scale(1.04);
}

.card-editorial .card-editorial-body {
    padding: 1.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sz-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--sz-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.editor-pick-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, var(--sz-gold), #b45309);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.hover-lift {
    transition: transform var(--sz-transition), box-shadow var(--sz-transition);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: var(--sz-shadow-lg);
}

.hover-lift-sm {
    transition: transform var(--sz-transition), box-shadow var(--sz-transition);
}

.hover-lift-sm:hover {
    transform: translateY(-2px);
    box-shadow: var(--sz-shadow-md);
}

.gradient-text {
    background: linear-gradient(135deg, var(--sz-accent) 0%, var(--sz-highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-highlight) 100%);
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--sz-accent) 0%, var(--sz-highlight) 100%);
}

.bg-gradient-subtle {
    background: linear-gradient(135deg, var(--sz-surface) 0%, var(--sz-surface-alt) 100%);
}

.border-accent {
    border-color: var(--sz-accent) !important;
}

.border-start-accent {
    border-left: 3px solid var(--sz-accent) !important;
}

.text-primary-dark {
    color: var(--sz-primary) !important;
}

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

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

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

.ls-tight {
    letter-spacing: -0.02em !important;
}

.ls-wide {
    letter-spacing: 0.05em !important;
}

.opacity-hover {
    transition: opacity var(--sz-transition);
}

.opacity-hover:hover {
    opacity: 0.8;
}

.skeleton {
    background: linear-gradient(90deg, var(--sz-surface-alt) 25%, var(--sz-border) 50%, var(--sz-surface-alt) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--sz-radius);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.fade-in {
    animation: fadeIn 0.4s ease-out;
}

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

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

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.btn-outline-accent {
    color: var(--sz-accent);
    border: 1.5px solid var(--sz-accent);
    background: transparent;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--sz-radius);
    transition: all var(--sz-transition);
}

.btn-outline-accent:hover {
    background: var(--sz-accent);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 138, 0, 0.25);
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--sz-text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: var(--sz-radius);
    transition: all var(--sz-transition);
    cursor: pointer;
}

.btn-ghost:hover {
    background: var(--sz-surface-alt);
    color: var(--sz-text);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-lg {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.breadcrumb-editorial {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.breadcrumb-editorial .breadcrumb-item a {
    color: var(--sz-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--sz-transition);
}

.breadcrumb-editorial .breadcrumb-item a:hover {
    color: var(--sz-accent);
}

.breadcrumb-editorial .breadcrumb-item.active {
    color: var(--sz-text-secondary);
    font-weight: 500;
}

.input-premium {
    border: 1.5px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    transition: border-color var(--sz-transition), box-shadow var(--sz-transition);
    background: var(--sz-white);
}

.input-premium:focus {
    outline: none;
    border-color: var(--sz-accent);
    box-shadow: 0 0 0 3px rgba(37, 138, 0, 0.1);
}

.badge-editorial {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.badge-editorial-primary {
    background: var(--sz-accent);
    color: white;
}

.badge-editorial-outline {
    background: transparent;
    color: var(--sz-accent);
    border: 1px solid var(--sz-accent);
}

.badge-editorial-muted {
    background: var(--sz-surface-alt);
    color: var(--sz-text-secondary);
}

.list-editorial li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sz-border);
    transition: padding-left var(--sz-transition);
}

.list-editorial li:last-child {
    border-bottom: none;
}

.list-editorial li:hover {
    padding-left: 4px;
}

.list-editorial li a {
    text-decoration: none;
    color: var(--sz-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--sz-transition);
}

.list-editorial li a:hover {
    color: var(--sz-accent);
}

.container-editorial {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container-editorial {
        padding: 0 1.5rem;
    }
}

.section-spacing {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section-spacing {
        padding: 4rem 0;
    }
}

.section-spacing-sm {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .section-spacing-sm {
        padding: 2.5rem 0;
    }
}

.img-aspect-16-9 {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.img-aspect-4-3 {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.img-aspect-1-1 {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.focus-ring:focus-visible {
    outline: 2px solid var(--sz-accent);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media print {
    .site-header,
    .footer-sport,
    .breaking-ticker,
    .sidebar-widget,
    .share-btn,
    .bookmark-btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .article-body {
        font-size: 11pt;
    }
}

.card-sport .card-body {
    padding: 1.25rem;
}

.card-sport .card-body h5,
.card-sport .card-body h6 {
    transition: color var(--sz-transition);
}

.card-sport:hover .card-body h5,
.card-sport:hover .card-body h6 {
    color: var(--sz-accent);
}

.card-editorial:hover .card-editorial-body h5,
.card-editorial:hover .card-editorial-body h6 {
    color: var(--sz-accent);
}

.card-premium:hover h5,
.card-premium:hover h6 {
    color: var(--sz-accent);
}

.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sz-border), transparent);
    margin: 2.5rem 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sz-accent);
    margin-bottom: 0.75rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--sz-accent);
    border-radius: 2px;
}

.text-gradient-accent {
    background: linear-gradient(135deg, var(--sz-accent), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--sz-gold), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-noise {
    position: relative;
}

.bg-noise::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.card-hover-border {
    border: 1px solid var(--sz-border);
    transition: border-color var(--sz-transition), box-shadow var(--sz-transition), transform var(--sz-transition);
}

.card-hover-border:hover {
    border-color: rgba(var(--sz-accent-rgb), 0.25);
    box-shadow: 0 0 0 1px rgba(var(--sz-accent-rgb), 0.05), var(--sz-shadow-md);
}

.img-zoom-container {
    overflow: hidden;
    border-radius: var(--sz-radius-lg);
}

.img-zoom-container img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom-container:hover img {
    transform: scale(1.05);
}

.badge-pill-sm {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 9999px;
    letter-spacing: 0.03em;
}

.badge-accent-soft {
    background: rgba(var(--sz-accent-rgb), 0.1);
    color: var(--sz-accent);
}

.badge-gold-soft {
    background: rgba(217, 119, 6, 0.1);
    color: var(--sz-gold);
}

.badge-danger-soft {
    background: rgba(220, 38, 38, 0.1);
    color: var(--sz-danger);
}

.badge-info-soft {
    background: rgba(2, 132, 199, 0.1);
    color: var(--sz-info);
}

.number-counter {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.link-hover-accent {
    transition: color var(--sz-transition);
}

.link-hover-accent:hover {
    color: var(--sz-accent) !important;
}

.link-underline-hover {
    position: relative;
    text-decoration: none;
}

.link-underline-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sz-accent);
    transition: width var(--sz-transition-slow);
    border-radius: 2px;
}

.link-underline-hover:hover::after {
    width: 100%;
}

.avatar-ring {
    border: 3px solid rgba(var(--sz-accent-rgb), 0.2);
    border-radius: 50%;
    padding: 2px;
}

.avatar-ring img {
    border-radius: 50%;
}

.card-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--sz-radius-lg);
}

.card-glass-dark {
    background: rgba(14, 46, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--sz-radius-lg);
    color: white;
}

.separator-dot::before {
    content: '\00b7';
    margin: 0 0.4rem;
    color: var(--sz-text-muted);
    font-weight: 700;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sz-border);
    background: var(--sz-white);
    color: var(--sz-text-secondary);
    transition: all var(--sz-transition);
    cursor: pointer;
    flex-shrink: 0;
}

.icon-btn:hover {
    border-color: var(--sz-accent);
    color: var(--sz-accent);
    background: rgba(var(--sz-accent-rgb), 0.05);
    transform: translateY(-1px);
    box-shadow: var(--sz-shadow-sm);
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.progress-bar-accent {
    height: 3px;
    background: var(--sz-border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-accent .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sz-accent), #34d399);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sz-accent);
    display: inline-block;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--sz-accent);
    animation: pulse-ring 1.5s infinite;
    opacity: 0;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.stagger-fade-in > * {
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
}

.stagger-fade-in > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-fade-in > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-fade-in > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-fade-in > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-fade-in > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-fade-in > *:nth-child(6) { animation-delay: 0.3s; }
.stagger-fade-in > *:nth-child(7) { animation-delay: 0.35s; }
.stagger-fade-in > *:nth-child(8) { animation-delay: 0.4s; }

.hover-scale {
    transition: transform var(--sz-transition);
}

.hover-scale:hover {
    transform: scale(1.02);
}

.hover-scale-sm {
    transition: transform var(--sz-transition);
}

.hover-scale-sm:hover {
    transform: scale(1.01);
}

.sidebar-widget-premium {
    background: white;
    border-radius: var(--sz-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--sz-shadow);
    border: 1px solid var(--sz-border);
    margin-bottom: 1.5rem;
    transition: box-shadow var(--sz-transition), border-color var(--sz-transition);
    position: relative;
    overflow: hidden;
}

.sidebar-widget-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sz-accent), var(--sz-highlight));
    opacity: 0;
    transition: opacity var(--sz-transition);
}

.sidebar-widget-premium:hover {
    box-shadow: var(--sz-shadow-md);
    border-color: var(--sz-border-hover);
}

.sidebar-widget-premium:hover::before {
    opacity: 1;
}

.trending-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--sz-border);
    line-height: 1;
    min-width: 2rem;
    font-variant-numeric: tabular-nums;
    transition: color var(--sz-transition);
}

.trending-item:hover .trending-number {
    color: var(--sz-accent);
}

.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sz-border-light);
    transition: padding-left var(--sz-transition);
}

.trending-item:last-child {
    border-bottom: none;
}

.trending-item:hover {
    padding-left: 4px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.775rem;
    font-weight: 500;
    border: 1px solid var(--sz-border);
    background: var(--sz-white);
    color: var(--sz-text-secondary);
    transition: all var(--sz-transition);
    text-decoration: none;
    cursor: pointer;
}

.chip:hover {
    border-color: var(--sz-accent);
    color: var(--sz-accent);
    background: rgba(var(--sz-accent-rgb), 0.04);
    transform: translateY(-1px);
}

.chip.active {
    background: var(--sz-accent);
    color: white;
    border-color: var(--sz-accent);
}

.overlay-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
}

.overlay-gradient-full {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.border-gradient {
    border: none;
    position: relative;
}

.border-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sz-accent), var(--sz-highlight), var(--sz-accent));
    border-radius: 0 0 var(--sz-radius-lg) var(--sz-radius-lg);
}

.meta-text {
    font-size: 0.775rem;
    color: var(--sz-text-muted);
    font-weight: 500;
}

.meta-text i {
    font-size: 0.85rem;
    color: var(--sz-accent);
    margin-right: 0.25rem;
}

.category-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sz-accent);
    padding: 0.2rem 0.6rem;
    background: rgba(var(--sz-accent-rgb), 0.08);
    border-radius: 4px;
    transition: all var(--sz-transition);
}

.category-label:hover {
    background: var(--sz-accent);
    color: white;
}

.card-featured-overlay {
    position: relative;
    border-radius: var(--sz-radius-xl);
    overflow: hidden;
    min-height: 400px;
}

.card-featured-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-featured-overlay:hover img {
    transform: scale(1.03);
}

.card-featured-overlay .featured-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
    color: white;
}

.card-featured-overlay .featured-content h3,
.card-featured-overlay .featured-content h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.divider-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.divider-icon::before,
.divider-icon::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sz-border);
}

.divider-icon i {
    color: var(--sz-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 767.98px) {
    .card-featured-overlay {
        min-height: 300px;
    }

    .card-featured-overlay .featured-content {
        min-height: 300px;
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .sticky-sidebar {
        position: sticky;
        top: 80px;
    }
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.paywall-features-grid {
    max-width: 400px;
}

.article-full-divider {
    border-top: 3px solid var(--sz-primary);
    opacity: 0.3;
}

.article-full-title {
    font-size: 2.2rem;
    line-height: 1.3;
    font-family: 'Merriweather', serif !important;
}

.comment-form-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.comment-form-initials {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
}

.article-full-featured-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.section-heading-primary {
    color: var(--sz-primary);
}

.comment-login-icon {
    color: var(--sz-accent);
}

.comment-avatar-sm {
    width: 28px;
    height: 28px;
    object-fit: cover;
}

.comment-avatar-lg {
    width: 36px;
    height: 36px;
    object-fit: cover;
}

.comment-initials-sm {
    font-size: 0.6rem;
}

.comment-initials-lg {
    font-size: 0.75rem;
}

.comment-timestamp {
    font-size: 0.7rem;
}

.read-also-chevron {
    flex-shrink: 0;
}

.read-also-category-badge {
    font-size: 0.65rem;
}

.article-card-date {
    font-size: 0.75rem;
}

.author-handle-small {
    font-size: 0.75rem;
}

.sidebar-article-author-name {
    font-size: 0.75rem;
}

.related-topic-category-badge {
    font-size: 0.6rem;
}

.related-topic-card-title {
    font-size: 0.85rem;
    line-height: 1.4;
}

.related-topic-meta {
    font-size: 0.7rem;
}

.breaking-dot {
    font-size: 0.4rem;
    vertical-align: middle;
}

.sub-hero-img-thumb {
    height: 160px;
    object-fit: cover;
}

.badge-category-sm {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
}

.title-card-md {
    font-size: 0.9rem;
    line-height: 1.45;
}

.title-card-sm {
    font-size: 0.85rem;
    line-height: 1.45;
}

.title-card-lg {
    font-size: 0.95rem;
    line-height: 1.5;
}

.title-card-base {
    font-size: 0.88rem;
    line-height: 1.45;
}

.text-meta-xs {
    font-size: 0.7rem;
}

.sidebar-newsletter-title {
    font-size: 0.95rem;
}

.sidebar-newsletter-desc {
    line-height: 1.6;
}

.badge-category-danger {
    font-size: 0.6rem;
}

.excerpt-sm {
    font-size: 0.8rem;
    line-height: 1.65;
}

.badge-live-sm {
    font-size: 0.6rem;
}

.live-team-logo-sm {
    width: 16px;
    height: 16px;
}

.card-img-fixed {
    height: 170px;
    object-fit: cover;
}

.video-section-title {
    font-size: 1.6rem;
    letter-spacing: -0.025em;
}

.match-league-logo {
    width: 20px;
    height: 20px;
}

.match-team-logo {
    width: 36px;
    height: 36px;
}

.match-time-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 8px;
}

.empty-state-icon {
    font-size: 2.5rem;
    opacity: 0.3;
}

.team-logo-featured {
    width: 64px;
    height: 64px;
}

.team-name-sm {
    font-size: 0.9rem;
}

.team-placeholder-featured {
    width: 64px;
    height: 64px;
    font-size: 1.2rem;
}

.newsletter-wrapper {
    z-index: 1;
}

.newsletter-badge {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    border-radius: 8px;
}

.newsletter-title {
    font-size: 2rem;
    letter-spacing: -0.025em;
}

.newsletter-description {
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
    font-size: 1.05rem;
}

.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-submit-btn {
    border-radius: 12px;
}

.header-user-email {
    font-size: 0.72rem;
}

.nav-bookmark-icon {
    font-size: 0.7rem;
}

.footer-brand-title {
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.footer-brand-accent {
    color: var(--sz-accent);
}

.featured-video-description {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.7;
}

.breadcrumb-title-truncate {
    max-width: 300px;
}

.hero-content-layer {
    z-index: 2;
}

.btn-facebook {
    background: #1877F2;
    color: white;
}

.btn-facebook:hover {
    background: #1565c0;
    color: white;
}

.text-sz-accent {
    color: var(--sz-accent);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--sz-accent);
}

.profile-initials {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sz-highlight), var(--sz-accent));
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.admin-thumb-col {
    width: 80px;
}

.admin-actions-col {
    width: 120px;
}

.admin-video-thumb {
    width: 70px;
    height: 40px;
    object-fit: cover;
}

.breadcrumb-light {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.5);
}

.standings-rank-col {
    width: 40px;
}

.ls-flag-icon {
    width: 20px;
    height: 14px;
}

.ls-league-logo-icon {
    width: 20px;
    height: 20px;
}

.ls-match-status-cell {
    width: 60px;
    flex-shrink: 0;
}

.ls-top-league-img {
    width: 40px;
    height: 40px;
}

.text-2xs {
    font-size: 0.7rem;
}

.fixture-league-logo {
    width: 24px;
    height: 24px;
}

.fixture-team-logo {
    width: 80px;
    height: 80px;
}

.fixture-event-time-col {
    width: 50px;
}

.fixture-event-icon {
    width: 16px;
    height: 16px;
}

.livescore-league-logo {
    width: 22px;
    height: 22px;
}

.livescore-status-cell {
    width: 55px;
    flex-shrink: 0;
}

.livescore-team-logo {
    width: 18px;
    height: 18px;
}

.team-placeholder-lg {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
}

.subscription-hero-title {
    font-size: 2.5rem;
}

.subscription-hero-desc {
    max-width: 600px;
    font-size: 1.1rem;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.success-check-icon {
    font-size: 2.5rem;
}

.team-logo-hero {
    width: 90px;
    height: 90px;
}

.team-placeholder-hero {
    width: 90px;
    height: 90px;
    font-size: 1.5rem;
}

.venue-cover-img {
    max-height: 300px;
    object-fit: cover;
}

.competition-logo {
    width: 28px;
    height: 28px;
}

.stat-color-primary {
    color: var(--sz-primary);
}

.stat-color-highlight {
    color: var(--sz-highlight);
}

.form-badge-w {
    width: 26px;
}

.match-date-col {
    width: 50px;
}

.match-date-col-wide {
    width: 70px;
}

.result-badge-w {
    width: 28px;
}

.team-logo-xs {
    width: 16px;
    height: 16px;
}

.team-logo-sm {
    width: 20px;
    height: 20px;
}

.standings-pos-col {
    width: 35px;
}

.standings-rank-badge-w {
    width: 24px;
}

.standings-form-badge {
    width: 18px;
    font-size: 0.6rem;
}

.player-photo {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.player-number-pos {
    top: 8px;
    right: 8px;
}

.match-card-league-logo {
    width: 16px;
    height: 16px;
}

.match-card-team-logo {
    width: 40px;
    height: 40px;
}

.home-featured-title {
    font-size: 1.8rem;
    line-height: 1.3;
}

.home-sidebar-stack {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.home-sidebar-badge {
    font-size: 0.65rem;
}

.home-sidebar-title {
    font-size: 0.9rem;
    line-height: 1.35;
}

.home-sidebar-meta {
    font-size: 0.7rem;
}

.home-grid-card-img {
    height: 140px;
    object-fit: cover;
}

.home-grid-badge {
    font-size: 0.6rem;
}

.home-grid-title {
    font-size: 0.85rem;
    line-height: 1.35;
}

.home-grid-meta {
    font-size: 0.7rem;
}

.profile-hero {
    background: linear-gradient(135deg, #0a0f1a 0%, #0e2e10 60%, #0a0f1a 100%);
    padding: 3.5rem 0 2.5rem;
    text-align: center;
}

.profile-hero-email {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.profile-avatar-wrap {
    cursor: pointer;
}

.profile-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.2);
}

.profile-avatar-initials {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent, #258a00);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255,255,255,0.2);
}

.profile-avatar-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.profile-avatar-overlay i {
    font-size: 1.4rem;
    margin-bottom: 0.15rem;
}

.profile-avatar-wrap:hover .profile-avatar-overlay {
    opacity: 1;
}

.profile-provider-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 600;
}

.profile-sub-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.profile-member-badge {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    font-weight: 500;
}

.profile-content {
    margin-top: -1.5rem;
    padding-top: 0;
    position: relative;
    z-index: 2;
}

.profile-tab-nav {
    background: var(--card-bg, #fff);
    border-radius: 0.75rem;
    padding: 0.35rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    border: 1px solid var(--border-color, #e5e7eb);
}

.profile-tab-nav .nav-link {
    color: var(--text-secondary, #6b7280);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.profile-tab-nav .nav-link:hover {
    color: var(--accent, #258a00);
    background: rgba(37,138,0,0.06);
}

.profile-tab-nav .nav-link.active {
    color: #fff;
    background: var(--accent, #258a00);
    box-shadow: 0 2px 8px rgba(37,138,0,0.3);
}

.profile-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: rgba(37,138,0,0.15);
    color: var(--accent, #258a00);
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 0.35rem;
    margin-left: 0.35rem;
}

.profile-tab-nav .nav-link.active .profile-tab-badge {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.profile-card {
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.profile-sub-card {
    border-left: 4px solid #f59e0b;
}

.profile-sub-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.profile-upgrade-card {
    border: 1px dashed var(--accent, #258a00);
    background: rgba(37,138,0,0.03);
}

.profile-upgrade-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37,138,0,0.1), rgba(37,138,0,0.05));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent, #258a00);
}

.profile-stats-card {
    margin-top: 1rem;
}

.profile-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary, #111);
    line-height: 1.2;
}

.profile-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted, #6b7280);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-danger-zone {
    border: 1px solid rgba(220,53,69,0.3);
    background: rgba(220,53,69,0.03);
}

.profile-bookmark-card {
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.profile-bookmark-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: transparent;
}

.profile-bookmark-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.profile-bookmark-body {
    padding: 1rem;
}

.profile-bookmark-badge {
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.profile-bookmark-title {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-primary, #111);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-bookmark-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    color: var(--text-muted, #6b7280);
}

.profile-activity-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-activity-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: all 0.25s ease;
}

.profile-activity-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.profile-activity-icon {
    width: 40px;
    height: 40px;
    background: rgba(37,138,0,0.08);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #258a00);
    font-size: 1rem;
    flex-shrink: 0;
}

.profile-activity-article {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary, #111);
    text-decoration: none;
    display: block;
    margin-bottom: 0.35rem;
}

.profile-activity-article:hover {
    color: var(--accent, #258a00);
}

.profile-activity-body {
    font-size: 0.8rem;
    color: var(--text-secondary, #4b5563);
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.profile-activity-date {
    font-size: 0.68rem;
    color: var(--text-muted, #9ca3af);
}

.profile-empty-state {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 0.75rem;
}

.profile-empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-muted, #f3f4f6), #e5e7eb);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 2rem;
    color: var(--text-muted, #9ca3af);
}

@media (max-width: 768px) {
    .profile-hero {
        padding: 2.5rem 0 2rem;
    }
    .profile-avatar-img,
    .profile-avatar-initials {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    .profile-tab-nav .nav-link {
        padding: 0.5rem 0.85rem;
        font-size: 0.75rem;
    }
    .profile-card {
        padding: 1.25rem;
    }
}

.video-hero {
    background: linear-gradient(135deg, #0a0f1a 0%, #111827 40%, #0e2e10 70%, #0a0f1a 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.video-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37,138,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
.video-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,138,0,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}
.video-hero .hero-inner {
    position: relative;
    z-index: 1;
}
.video-hero .hero-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37,138,0,0.2), rgba(37,138,0,0.05));
    border: 1px solid rgba(37,138,0,0.3);
    border-radius: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.video-hero .hero-icon-wrap i {
    font-size: 1.75rem;
    color: var(--sz-accent);
}
.video-hero .hero-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(37,138,0,0.9);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.video-hero .hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sz-accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.video-hero h1 {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 2.85rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.65rem;
}
.video-hero h1 span {
    background: linear-gradient(135deg, #34d058, var(--sz-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.video-hero p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
}
.video-hero .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.video-hero .hero-stat {
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.video-hero .hero-stat strong {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.featured-video-card {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 12px 60px rgba(0,0,0,0.2);
    background: #000;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    border: 1px solid rgba(255,255,255,0.06);
}
.featured-video-card:hover {
    box-shadow: 0 20px 70px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}
.featured-video-info {
    background: linear-gradient(160deg, #111827 0%, #1a2332 50%, #1f2937 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.featured-video-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--sz-accent), #34d058, transparent);
}
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--sz-accent-hover), var(--sz-accent));
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 16px rgba(37,138,0,0.35);
}
.featured-video-info h3 {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    letter-spacing: -0.02em;
}
.featured-video-info .meta-item {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.featured-video-info .btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--sz-accent-hover), var(--sz-accent));
    color: #fff;
    border: none;
    padding: 0.7rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,138,0,0.3);
}
.featured-video-info .btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,138,0,0.45);
    color: #fff;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}
.section-heading h4 {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-weight: 800;
    font-size: 1.35rem;
    margin: 0;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.section-heading .heading-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--border-color, #e5e7eb), transparent);
    border-radius: 1px;
}
.section-heading .heading-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sz-accent-hover), var(--sz-accent));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(37,138,0,0.25);
}

.video-card-premium {
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    background: var(--card-bg, #fff);
    height: 100%;
    position: relative;
}
.video-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
    border-color: transparent;
}
.video-card-premium .thumb-wrapper {
    position: relative;
    overflow: hidden;
}
.video-card-premium .thumb-wrapper img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.video-card-premium:hover .thumb-wrapper img {
    transform: scale(1.1);
}
.video-card-premium .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.video-card-premium:hover .play-overlay {
    opacity: 1;
}
.video-card-premium .play-btn {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.97);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    transform: scale(0.85);
}
.video-card-premium:hover .play-btn {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.video-card-premium .play-btn i {
    font-size: 1.5rem;
    color: var(--sz-accent);
    margin-left: 3px;
}
.video-card-premium .thumb-wrapper .duration-badge {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    background: rgba(0,0,0,0.88);
    color: #fff;
    padding: 0.2rem 0.55rem;
    border-radius: 0.35rem;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 2;
    backdrop-filter: blur(6px);
    letter-spacing: 0.02em;
}
.video-card-premium .card-content {
    padding: 1.25rem;
}
.video-card-premium .card-content h6 {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0.7rem;
    color: var(--text-primary, #111);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.video-card-premium:hover .card-content h6 {
    color: var(--sz-accent);
}
.video-card-premium .card-content .video-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.72rem;
    color: var(--text-muted, #6b7280);
}
.video-card-premium .card-content .video-meta i {
    margin-right: 0.2rem;
    font-size: 0.68rem;
}
.video-card-premium .card-content .video-meta span {
    display: inline-flex;
    align-items: center;
}

.empty-state {
    padding: 6rem 1rem;
    text-align: center;
}
.empty-state .empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bg-muted, #f3f4f6), #e5e7eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
}
.empty-state .empty-icon i {
    font-size: 2.5rem;
    color: var(--text-muted, #9ca3af);
}

.pagination {
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item .page-link {
    border-radius: var(--sz-radius);
    border: 1px solid var(--sz-border);
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sz-text-secondary);
    background: var(--sz-white);
    transition: all 0.2s ease;
    line-height: 1.3;
}

.page-item .page-link:hover {
    background: var(--sz-accent);
    border-color: var(--sz-accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(37, 138, 0, 0.25);
}

.page-item.active .page-link {
    background: var(--sz-accent);
    border-color: var(--sz-accent);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(37, 138, 0, 0.3);
}

.page-item.disabled .page-link {
    background: var(--sz-surface);
    border-color: var(--sz-border);
    color: var(--sz-text-muted);
    opacity: 0.6;
    pointer-events: none;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-size: 0.9rem;
}

@media (max-width: 575.98px) {
    .page-item .page-link {
        padding: 0.4rem 0.65rem;
        font-size: 0.8rem;
    }
}

.video-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.filter-chip {
    padding: 0.45rem 1.15rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--border-color, #e5e7eb);
    background: var(--card-bg, #fff);
    color: var(--text-secondary, #374151);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.filter-chip:hover, .filter-chip.active {
    background: var(--sz-accent);
    color: #fff;
    border-color: var(--sz-accent);
    box-shadow: 0 3px 12px rgba(37,138,0,0.2);
}

.video-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .video-hero h1 { font-size: 1.85rem; }
    .video-hero { padding: 3.5rem 0 2.5rem; }
    .featured-video-info { padding: 1.5rem; }
    .featured-video-info h3 { font-size: 1.2rem; }
    .video-card-premium .thumb-wrapper img { height: 150px; }
    .video-hero .hero-stats { gap: 1.75rem; }
    .video-hero .hero-icon-wrap { width: 52px; height: 52px; }
    .video-hero .hero-icon-wrap i { font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .video-hero h1 { font-size: 1.5rem; }
    .video-hero p { font-size: 0.92rem; }
    .video-card-premium .thumb-wrapper img { height: 130px; }
    .video-card-premium .play-btn { width: 46px; height: 46px; }
    .video-card-premium .play-btn i { font-size: 1.2rem; }
}

.cat-hero {
    background: linear-gradient(135deg, #0a0f1a 0%, #0e2e10 50%, #0a1f0c 100%);
    padding: 2.5rem 0 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cat-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(37, 138, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cat-hero-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sz-accent), #1a7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 138, 0, 0.3);
}

.cat-hero-icon-author {
    border-radius: 50%;
    overflow: hidden;
}

.cat-hero-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cat-hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.cat-hero-stats {
    display: flex;
    gap: 1rem;
}

.cat-hero-stat {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.cat-featured-wrap {
    margin-top: -1rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.cat-featured-card {
    display: flex;
    background: #fff;
    border-radius: var(--sz-radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform var(--sz-transition), box-shadow var(--sz-transition);
}

.cat-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cat-featured-media {
    width: 45%;
    flex-shrink: 0;
    overflow: hidden;
}

.cat-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    transition: transform 0.5s ease;
}

.cat-featured-card:hover .cat-featured-img {
    transform: scale(1.04);
}

.cat-featured-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.cat-featured-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sz-accent);
    margin-bottom: 0.75rem;
}

.cat-featured-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sz-primary);
    line-height: 1.3;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.cat-featured-excerpt {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-featured-meta {
    color: var(--sz-text-muted);
    font-size: 0.78rem;
}

.cat-filter-bar {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.cat-filter-bar::-webkit-scrollbar {
    display: none;
}

.cat-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--sz-border);
    background: #fff;
    color: var(--sz-text-secondary);
    text-decoration: none;
    transition: all 0.25s ease;
}

.cat-filter-pill:hover {
    border-color: var(--sz-accent);
    color: var(--sz-accent);
    background: rgba(37, 138, 0, 0.04);
}

.cat-filter-pill.active {
    background: var(--sz-accent);
    color: #fff;
    border-color: var(--sz-accent);
}

.cat-sidebar {
    position: sticky;
    top: 80px;
}

.cat-sidebar-cats {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cat-sidebar-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--sz-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cat-sidebar-cat-item:hover {
    background: rgba(37, 138, 0, 0.06);
    color: var(--sz-accent);
}

.cat-sidebar-cat-item.active {
    background: rgba(37, 138, 0, 0.1);
    color: var(--sz-accent);
    font-weight: 600;
}

.cat-sidebar-cat-count {
    font-size: 0.7rem;
    background: var(--sz-surface);
    color: var(--sz-text-muted);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.local-hero-card {
    position: relative;
    border-radius: var(--sz-radius-xl);
    overflow: hidden;
    min-height: 340px;
    background: var(--sz-secondary);
}

.local-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.local-hero-card:hover .local-hero-img {
    transform: scale(1.03);
}

.local-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.92));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.local-hero-content {
    width: 100%;
}

.local-hero-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.local-hero-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.local-hero-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}

.local-story-card {
    background: #fff;
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.local-story-card:hover {
    border-color: rgba(37, 138, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.local-story-thumb {
    width: 100px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.local-story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.local-story-card:hover .local-story-thumb img {
    transform: scale(1.06);
}

.local-story-cat {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sz-accent);
    margin-bottom: 0.3rem;
    display: block;
}

.local-story-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sz-primary);
    line-height: 1.35;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.local-story-meta {
    font-size: 0.72rem;
    color: var(--sz-text-muted);
}

@media (max-width: 767.98px) {
    .cat-hero-title {
        font-size: 1.4rem;
    }

    .cat-hero-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .cat-featured-card {
        flex-direction: column;
    }

    .cat-featured-media {
        width: 100%;
        height: 200px;
    }

    .cat-featured-img {
        min-height: 200px;
    }

    .cat-featured-body {
        padding: 1.25rem;
    }

    .cat-featured-title {
        font-size: 1.2rem;
    }

    .cat-featured-excerpt {
        -webkit-line-clamp: 2;
    }

    .cat-sidebar {
        position: static;
        margin-top: 1rem;
    }

    .local-hero-card {
        min-height: 260px;
    }

    .local-hero-title {
        font-size: 1.15rem;
    }

    .local-hero-overlay {
        padding: 1.25rem;
    }

    .local-story-thumb {
        width: 80px;
        height: 65px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .cat-sidebar {
        position: static;
        margin-top: 1rem;
    }

    .cat-featured-media {
        width: 40%;
    }
}
.line-2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-3{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgb(13 42 15) !important;
}
.ratio-16x9 {
   aspect-ratio: 16 / 9;
   object-fit: cover;
   object-position: top;
}

.league-card-premium {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    transition: transform var(--sz-transition), box-shadow var(--sz-transition), border-color var(--sz-transition);
    position: relative;
}

.league-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--sz-shadow-lg);
    border-color: rgba(37, 138, 0, 0.2);
}

.league-card-premium-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--sz-accent), var(--sz-highlight));
}

.league-card-premium-body {
    padding: 2rem 1.5rem 1.25rem;
    text-align: center;
}

.league-card-premium-logo-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sz-surface);
    border-radius: 50%;
    padding: 10px;
    box-shadow: var(--sz-shadow-sm);
}

.league-card-premium-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.league-card-premium-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sz-text);
    margin-bottom: 0.5rem;
}

.league-card-premium-country {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--sz-text-secondary);
}

.league-card-premium-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.league-card-premium-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.75rem;
    background: var(--sz-surface);
    border-top: 1px solid var(--sz-border-light);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sz-accent);
    transition: background var(--sz-transition);
}

.league-card-premium:hover .league-card-premium-footer {
    background: var(--sz-accent-light);
}

.league-hero-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--sz-radius);
    padding: 8px;
    flex-shrink: 0;
}

.league-hero-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 4px;
}

.league-standings-table td {
    vertical-align: middle;
    font-size: 0.875rem;
    padding: 0.6rem 0.5rem;
}

.league-standings-rank {
    position: relative;
}

.league-team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.league-zone-indicator {
    display: inline-block;
    width: 4px;
    height: 16px;
    border-radius: 2px;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.league-zone-cl {
    background: #1e40af;
}

.league-zone-el {
    background: #f59e0b;
}

.league-zone-ecl {
    background: #16a34a;
}

.league-zone-rel {
    background: #dc2626;
}

.league-form-badges {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.league-form-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.league-form-w {
    background: #16a34a;
}

.league-form-d {
    background: #9ca3af;
}

.league-form-l {
    background: #dc2626;
}

.league-status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.league-status-cl {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
}

.league-status-el {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
}

.league-status-rel {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.league-status-other {
    background: var(--sz-surface);
    color: var(--sz-text-secondary);
}

.video-slider-section {
    position: relative;
}

.video-slider-section .swiper {
    padding-bottom: 2.5rem;
}

.video-slider-nav {
    display: flex;
    gap: 0.4rem;
    margin-left: auto;
    flex-shrink: 0;
}

.video-slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color, #e5e7eb);
    background: var(--card-bg, #fff);
    color: var(--text-secondary, #374151);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    padding: 0;
}

.video-slider-btn:hover {
    background: var(--accent, #258a00);
    border-color: var(--accent, #258a00);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37,138,0,0.25);
}

.video-slider-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.video-slider-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--text-muted, #9ca3af);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.video-slider-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent, #258a00);
    width: 24px;
    border-radius: 4px;
}

.home-video-slider-wrap {
    position: relative;
    padding: 0 2.5rem;
}

.home-video-slider-wrap .swiper {
    padding-bottom: 2.5rem;
    overflow: hidden;
}

.home-video-nav-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    z-index: 10;
    backdrop-filter: blur(6px);
    padding: 0;
}

.home-video-nav-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.home-video-nav-btn.swiper-button-disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.home-video-prev {
    left: -0.25rem;
}

.home-video-next {
    right: -0.25rem;
}

.home-video-slider-wrap .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.home-video-slider-wrap .swiper-pagination-bullet-active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .home-video-slider-wrap {
        padding: 0 1rem;
    }
    .home-video-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    .video-slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    .video-slider-nav {
        gap: 0.3rem;
    }
}

.tts-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    border: 1px solid var(--sz-border);
    background: var(--sz-white);
    color: var(--sz-text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tts-btn:hover {
    border-color: var(--sz-accent);
    color: var(--sz-accent);
    background: var(--sz-accent-light);
}

.tts-btn.tts-active {
    border-color: var(--sz-accent);
    color: var(--sz-white);
    background: var(--sz-accent);
}

.tts-btn i {
    font-size: 0.9rem;
}

.tts-player-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--sz-primary);
    border-top: 2px solid var(--sz-accent);
    padding: 0.65rem 0;
    transition: bottom 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.tts-player-bar.tts-player-visible {
    bottom: 0;
}

.tts-player-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.tts-player-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    flex-shrink: 0;
}

.tts-player-wave {
    font-size: 1.3rem;
    color: var(--sz-accent);
    animation: ttsWave 1.5s ease-in-out infinite;
}

@keyframes ttsWave {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.tts-player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.tts-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    padding: 0;
}

.tts-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.tts-speed-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.tts-speed-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.tts-speed-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.tts-speed-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sz-accent);
    cursor: pointer;
    border: 2px solid var(--sz-white);
}

.tts-speed-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sz-accent);
    cursor: pointer;
    border: 2px solid var(--sz-white);
}

.tts-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    padding: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.tts-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 576px) {
    .tts-btn .tts-btn-label {
        display: none;
    }
    .tts-btn {
        padding: 0.35rem 0.55rem;
    }
    .tts-speed-control {
        display: none;
    }
    .tts-player-info .tts-player-status {
        display: none;
    }
}

.forum-cover {
    background: linear-gradient(135deg, var(--sz-primary) 0%, #122e14 40%, #0a1f0c 100%);
    position: relative;
    padding: 2.5rem 0 1.5rem;
    overflow: hidden;
}

.forum-cover-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23258a00' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.forum-cover-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.forum-cover-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sz-accent), #1a7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.2);
}

.forum-cover-info {
    flex: 1;
}

.forum-cover-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.forum-cover-tagline {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin: 0.25rem 0 0.75rem;
}

.forum-cover-stats {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.forum-cover-stats span {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

.forum-nav-bar {
    background: var(--sz-white);
    border-bottom: 1px solid var(--sz-border);
    position: sticky;
    top: 0;
    z-index: 90;
}

.forum-nav-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
}

.forum-nav-scroll::-webkit-scrollbar {
    display: none;
}

.forum-nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    color: var(--sz-text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color var(--sz-transition), border-color var(--sz-transition);
}

.forum-nav-tab:hover {
    color: var(--sz-accent);
}

.forum-nav-tab.active {
    color: var(--sz-accent);
    border-bottom-color: var(--sz-accent);
}

.forum-nav-count {
    background: var(--sz-surface-alt);
    color: var(--sz-text-muted);
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-weight: 700;
}

.forum-body {
    background: var(--sz-surface);
    padding: 1.5rem 0 3rem;
    min-height: 60vh;
}

.forum-composer {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--sz-shadow);
}

.forum-composer-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.forum-composer-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.forum-avatar-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sz-accent), var(--sz-highlight));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.forum-avatar-initials-lg {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
}

.forum-avatar-initials-sm {
    width: 32px;
    height: 32px;
    font-size: 0.65rem;
}

.forum-avatar-initials-xs {
    width: 28px;
    height: 28px;
    font-size: 0.55rem;
}

.forum-avatar-initials-xl {
    width: 56px;
    height: 56px;
    font-size: 1rem;
}

.forum-composer-placeholder {
    flex: 1;
    background: var(--sz-surface);
    border: 1px solid var(--sz-border);
    border-radius: 20px;
    padding: 0.55rem 1rem;
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--sz-transition);
}

.forum-composer-placeholder:hover {
    background: var(--sz-surface-alt);
    color: var(--sz-text-muted);
}

.forum-composer-form {
    padding-top: 0.5rem;
}

.forum-composer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.forum-composer-close {
    background: none;
    border: none;
    color: var(--sz-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--sz-transition);
}

.forum-composer-close:hover {
    background: var(--sz-surface);
}

.forum-composer-cat-select {
    background: none;
    border: none;
    color: var(--sz-text-muted);
    font-size: 0.75rem;
    padding: 0;
    cursor: pointer;
}

.forum-composer-cat-label {
    font-size: 0.75rem;
    color: var(--sz-text-muted);
}

.forum-composer-title {
    width: 100%;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sz-text);
    padding: 0.5rem 0;
    outline: none;
    background: transparent;
}

.forum-composer-title::placeholder {
    color: var(--sz-text-muted);
    font-weight: 400;
}

.forum-composer-body {
    width: 100%;
    border: none;
    font-size: 0.92rem;
    color: var(--sz-text-secondary);
    padding: 0.25rem 0;
    outline: none;
    resize: none;
    background: transparent;
    line-height: 1.6;
}

.forum-composer-body::placeholder {
    color: var(--sz-text-muted);
}

.forum-composer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--sz-border);
    margin-top: 0.5rem;
}

.forum-composer-actions {
    display: flex;
    gap: 0.25rem;
}

.forum-composer-action {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--sz-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--sz-transition), color var(--sz-transition);
}

.forum-composer-action:hover {
    background: var(--sz-surface);
    color: var(--sz-accent);
}

.forum-composer-submit {
    background: var(--sz-accent);
    color: #fff;
    border: none;
    border-radius: var(--sz-radius);
    padding: 0.45rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background var(--sz-transition);
}

.forum-composer-submit:hover {
    background: var(--sz-accent-hover);
}

.forum-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.forum-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    box-shadow: var(--sz-shadow);
    overflow: hidden;
}

.forum-card-pinned {
    border-color: rgba(245, 158, 11, 0.3);
}

.forum-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem 0;
}

.forum-card-author-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.forum-card-author-info {
    flex: 1;
    min-width: 0;
}

.forum-card-author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--sz-text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.forum-badge-pin {
    color: #f59e0b;
    font-size: 0.8rem;
}

.forum-card-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--sz-text-muted);
}

.forum-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--sz-text-muted);
}

.forum-card-group {
    color: var(--sz-accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.forum-card-group:hover {
    text-decoration: underline;
    color: var(--sz-accent-hover);
}

.forum-card-locked {
    color: var(--sz-text-muted);
    font-size: 0.85rem;
}

.forum-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sz-text);
    margin: 0.75rem 1.25rem 0.25rem;
    line-height: 1.35;
}

.forum-card-title:hover {
    color: var(--sz-accent);
}

.forum-card-body {
    font-size: 0.88rem;
    color: var(--sz-text-secondary);
    line-height: 1.6;
    padding: 0 1.25rem;
    margin-bottom: 0.75rem;
}

.forum-card-engagement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    padding-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--sz-text-muted);
}

.forum-card-reactions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.forum-reaction-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.forum-card-counts a {
    color: var(--sz-text-muted);
}

.forum-card-counts a:hover {
    text-decoration: underline;
    color: var(--sz-text-secondary);
}

.forum-card-actions {
    display: flex;
    border-top: 1px solid var(--sz-border);
}

.forum-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0;
    background: none;
    border: none;
    color: var(--sz-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--sz-transition), color var(--sz-transition);
}

.forum-action-btn:hover {
    background: var(--sz-surface);
    color: var(--sz-accent);
}

.forum-card-comments-preview {
    padding: 0.5rem 1.25rem 1rem;
    background: var(--sz-surface);
    border-top: 1px solid var(--sz-border);
}

.forum-mini-comment {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.forum-mini-avatar {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.forum-mini-content {
    background: var(--sz-white);
    border-radius: 18px;
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
    color: var(--sz-text-secondary);
    line-height: 1.45;
    flex: 1;
}

.forum-mini-name {
    font-weight: 600;
    color: var(--sz-text);
    margin-right: 0.35rem;
}

.forum-view-all-comments {
    display: block;
    padding-top: 0.5rem;
    color: var(--sz-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

.forum-view-all-comments:hover {
    color: var(--sz-accent);
}

.forum-empty-feed {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
}

.forum-empty-feed i {
    font-size: 3rem;
    color: var(--sz-text-muted);
    margin-bottom: 1rem;
    display: block;
}

.forum-empty-feed h5 {
    color: var(--sz-text);
    margin-bottom: 0.5rem;
}

.forum-empty-feed p {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
}

.forum-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 80px;
}

.forum-sidebar-widget {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    box-shadow: var(--sz-shadow);
    overflow: hidden;
}

.forum-widget-header {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--sz-border);
}

.forum-widget-header h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sz-text);
    display: flex;
    align-items: center;
}

.forum-widget-body {
    padding: 0.75rem 1rem;
}

.forum-about-text {
    font-size: 0.85rem;
    color: var(--sz-text-secondary);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.forum-about-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.forum-about-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--sz-text-secondary);
}

.forum-about-stat i {
    color: var(--sz-text-muted);
    width: 18px;
    text-align: center;
}

.forum-group-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.25rem;
    text-decoration: none;
    border-radius: var(--sz-radius);
    transition: background var(--sz-transition);
}

.forum-group-item:hover {
    background: var(--sz-surface);
}

.forum-group-item.active {
    background: rgba(37, 138, 0, 0.06);
}

.forum-group-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--sz-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.forum-group-info {
    flex: 1;
    min-width: 0;
}

.forum-group-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sz-text);
}

.forum-group-count {
    font-size: 0.72rem;
    color: var(--sz-text-muted);
}

.forum-trending-item {
    display: block;
    padding: 0.5rem 0.25rem;
    text-decoration: none;
    border-radius: var(--sz-radius);
    transition: background var(--sz-transition);
}

.forum-trending-item:hover {
    background: var(--sz-surface);
}

.forum-trending-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sz-text);
    line-height: 1.35;
    margin-bottom: 0.15rem;
}

.forum-trending-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--sz-text-muted);
}

.forum-trending-cat {
    background: var(--sz-surface);
    padding: 0.1rem 0.4rem;
    border-radius: var(--sz-radius-sm);
    font-weight: 500;
}

.forum-members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.forum-member-chip {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--sz-transition);
}

.forum-member-chip:hover {
    transform: scale(1.15);
}

.forum-detail-bar {
    background: var(--sz-white);
    border-bottom: 1px solid var(--sz-border);
    padding: 0.65rem 0;
}

.forum-back-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sz-text-secondary);
    text-decoration: none;
    transition: background var(--sz-transition);
}

.forum-back-link:hover {
    background: var(--sz-surface);
    color: var(--sz-accent);
}

.forum-breadcrumb .breadcrumb-item a {
    color: var(--sz-accent);
    font-weight: 500;
    font-size: 0.82rem;
}

.forum-breadcrumb .breadcrumb-item.active {
    font-size: 0.82rem;
    color: var(--sz-text-muted);
}

.forum-card-detail {
    margin-bottom: 1rem;
}

.forum-detail-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--sz-text);
    padding: 0.75rem 1.25rem 0.25rem;
    line-height: 1.3;
    margin: 0;
}

.forum-detail-body {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--sz-text-secondary);
    padding: 0.25rem 1.25rem 0.75rem;
}

.forum-comments-section {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    box-shadow: var(--sz-shadow);
    overflow: hidden;
}

.forum-comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--sz-border);
}

.forum-comments-header h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sz-text);
}

.forum-sort-active {
    font-size: 0.8rem;
    color: var(--sz-accent);
    font-weight: 600;
}

.forum-comment {
    display: flex;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
}

.forum-comment + .forum-comment {
    border-top: 1px solid var(--sz-border);
}

.forum-comment-avatar {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.forum-comment-content {
    flex: 1;
    min-width: 0;
}

.forum-comment-bubble {
    background: var(--sz-surface);
    border-radius: 18px;
    padding: 0.55rem 0.85rem;
}

.forum-comment-author {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--sz-text);
    margin-bottom: 0.15rem;
}

.forum-comment-text {
    font-size: 0.88rem;
    color: var(--sz-text-secondary);
    line-height: 1.55;
}

.forum-comment-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.5rem 0;
}

.forum-comment-action-btn {
    background: none;
    border: none;
    color: var(--sz-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color var(--sz-transition);
}

.forum-comment-action-btn:hover {
    color: var(--sz-accent);
}

.forum-comment-action-btn.active {
    color: #ef4444;
}

.forum-comment-delete:hover {
    color: var(--sz-danger);
}

.forum-comment-time {
    font-size: 0.72rem;
    color: var(--sz-text-muted);
}

.forum-like-count {
    font-weight: 700;
}

.forum-reply-composer {
    display: flex;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-top: 1px solid var(--sz-border);
    align-items: flex-start;
}

.forum-reply-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--sz-surface);
    border: 1px solid var(--sz-border);
    border-radius: 20px;
    padding: 0.1rem 0.3rem 0.1rem 0.85rem;
    transition: border-color var(--sz-transition);
}

.forum-reply-input-wrap:focus-within {
    border-color: var(--sz-accent);
}

.forum-reply-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.88rem;
    color: var(--sz-text);
    padding: 0.45rem 0;
    outline: none;
    resize: none;
    line-height: 1.4;
    max-height: 120px;
}

.forum-reply-input::placeholder {
    color: var(--sz-text-muted);
}

.forum-reply-send {
    background: none;
    border: none;
    color: var(--sz-accent);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--sz-transition), color var(--sz-transition);
}

.forum-reply-send:hover {
    background: rgba(37, 138, 0, 0.08);
}

.forum-reply-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.forum-locked-notice {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--sz-border);
    background: var(--sz-surface);
    color: var(--sz-text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.forum-login-prompt {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--sz-border);
    text-align: center;
    color: var(--sz-text-muted);
    font-size: 0.88rem;
}

.forum-login-prompt a {
    color: var(--sz-accent);
    font-weight: 600;
}

.forum-author-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.forum-author-avatar-lg {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.forum-author-name-lg {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--sz-text);
}

.forum-author-joined {
    font-size: 0.78rem;
    color: var(--sz-text-muted);
}

.forum-related-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.25rem;
    text-decoration: none;
    border-radius: var(--sz-radius);
    transition: background var(--sz-transition);
}

.forum-related-item:hover {
    background: var(--sz-surface);
}

.forum-related-avatar {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.forum-related-info {
    flex: 1;
    min-width: 0;
}

.forum-related-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sz-text);
    line-height: 1.3;
}

.forum-related-meta {
    font-size: 0.72rem;
    color: var(--sz-text-muted);
}

@media (max-width: 991.98px) {
    .forum-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .forum-cover {
        padding: 1.5rem 0 1rem;
    }
    .forum-cover-avatar {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    .forum-cover-title {
        font-size: 1.25rem;
    }
    .forum-cover-tagline {
        font-size: 0.8rem;
    }
    .forum-cover-stats {
        gap: 0.75rem;
    }
    .forum-card-title {
        font-size: 0.95rem;
    }
    .forum-detail-title {
        font-size: 1.1rem;
    }
    .forum-nav-tab {
        padding: 0.75rem 0.75rem;
        font-size: 0.8rem;
    }
}

.forum-scroll-loader {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.forum-scroll-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--sz-border);
    border-top-color: var(--sz-accent);
    border-radius: 50%;
    animation: forumSpin 0.7s linear infinite;
}

@keyframes forumSpin {
    to { transform: rotate(360deg); }
}

.forum-scroll-end {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--sz-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.fantasy-hero {
    background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-highlight) 50%, #0a1f0c 100%);
    color: #fff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.fantasy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(37, 138, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.fantasy-hero h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.fantasy-hero-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--sz-accent), #1a7a00);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.fantasy-hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.fantasy-budget-display {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--sz-radius-lg);
    padding: 0.75rem 1.25rem;
    display: inline-block;
}

.fantasy-budget-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.fantasy-budget-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sz-accent);
}

.fantasy-cta-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-xl);
    padding: 3rem;
    box-shadow: var(--sz-shadow-md);
}

.fantasy-cta-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--sz-accent), #1a7a00);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.fantasy-create-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-xl);
    padding: 2rem;
    box-shadow: var(--sz-shadow-md);
}

.fantasy-create-icon {
    width: 64px;
    height: 64px;
    background: var(--sz-accent-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sz-accent);
}

.fantasy-team-header {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--sz-shadow);
}

.fantasy-stat-pill {
    background: var(--sz-surface-alt);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sz-text-secondary);
}

.fantasy-pitch {
    background: linear-gradient(180deg, #2d8c3e 0%, #1e7a2f 25%, #2d8c3e 50%, #1e7a2f 75%, #2d8c3e 100%);
    border-radius: var(--sz-radius-xl);
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--sz-shadow-lg);
}

.fantasy-pitch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.fantasy-pitch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.fantasy-pitch-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.fantasy-pitch-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fantasy-pitch-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 70px;
}

.fantasy-pitch-shirt {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.fantasy-captain-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: #f59e0b;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2d8c3e;
}

.fantasy-vc-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2d8c3e;
}

.fantasy-pitch-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.fantasy-pitch-pts {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
}

.fantasy-bench-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.fantasy-bench-name {
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fantasy-bench-pts {
    font-size: 0.75rem;
    color: var(--sz-text-muted);
    white-space: nowrap;
}

.fantasy-bench-actions {
    display: flex;
    gap: 0.25rem;
}

.fantasy-bench-actions .btn {
    padding: 0.15rem 0.35rem;
    font-size: 0.7rem;
}

.fantasy-panel {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    box-shadow: var(--sz-shadow);
}

.fantasy-panel-header {
    background: var(--sz-surface-alt);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--sz-border);
}

.fantasy-filter-bar {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--sz-border-light);
    background: var(--sz-surface);
}

.fantasy-table {
    font-size: 0.85rem;
}

.fantasy-table th {
    background: var(--sz-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.6rem 0.75rem;
    border: none;
}

.fantasy-table td {
    padding: 0.6rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--sz-border-light);
}

.fantasy-table tbody tr:hover {
    background: var(--sz-accent-light);
}

.fantasy-leaderboard {
    padding: 0;
}

.fantasy-lb-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--sz-border-light);
    transition: background 0.15s ease;
}

.fantasy-lb-row:hover {
    background: var(--sz-surface-alt);
}

.fantasy-lb-row:last-child {
    border-bottom: none;
}

.fantasy-lb-top {
    background: var(--sz-accent-light);
}

.fantasy-lb-rank {
    width: 32px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--sz-text-muted);
    flex-shrink: 0;
    text-align: center;
}

.fantasy-lb-info {
    flex: 1;
    min-width: 0;
    margin-left: 0.75rem;
}

.fantasy-lb-team {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fantasy-lb-user {
    display: block;
    font-size: 0.75rem;
}

.fantasy-lb-points {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sz-accent);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.fantasy-captain-row {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--sz-border-light);
}

.fantasy-captain-row:last-child {
    border-bottom: none;
}

@media (max-width: 767.98px) {
    .fantasy-hero h1 {
        font-size: 1.5rem;
    }
    .fantasy-pitch {
        padding: 1.5rem 0.5rem;
    }
    .fantasy-pitch-player {
        min-width: 55px;
    }
    .fantasy-pitch-shirt {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .fantasy-bench-card {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
}

.podcast-hero {
    background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-highlight) 50%, #0a1f0c 100%);
    color: white;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.podcast-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(37, 138, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.podcast-hero h1 {
    color: #fff;
}

.podcast-show-hero {
    background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-highlight) 50%, #0a1f0c 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
}

.podcast-featured-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    box-shadow: var(--sz-shadow-md);
    transition: transform var(--sz-transition), box-shadow var(--sz-transition);
}

.podcast-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sz-shadow-lg);
}

.podcast-featured-cover {
    background: linear-gradient(135deg, var(--sz-primary), var(--sz-highlight));
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.podcast-cover-placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.podcast-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity var(--sz-transition);
}

.podcast-featured-card:hover .podcast-play-overlay,
.podcast-card:hover .podcast-play-overlay {
    opacity: 1;
}

.podcast-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sz-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 138, 0, 0.4);
    transition: transform var(--sz-transition);
}

.podcast-play-btn:hover {
    transform: scale(1.1);
}

.podcast-play-btn-sm {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sz-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(37, 138, 0, 0.4);
    transition: transform var(--sz-transition);
}

.podcast-play-btn-sm:hover {
    transform: scale(1.1);
}

.podcast-featured-info {
    padding: 2rem;
}

.podcast-category-badge {
    background: rgba(37, 138, 0, 0.1);
    color: var(--sz-accent);
    font-weight: 600;
    font-size: 0.75rem;
}

.podcast-meta-item {
    font-size: 0.85rem;
    color: var(--sz-text-secondary);
}

.podcast-category-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.podcast-category-pills::-webkit-scrollbar {
    display: none;
}

.podcast-pill {
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    color: var(--sz-text-secondary);
    background: var(--sz-surface-alt);
    border: 1px solid var(--sz-border);
    transition: all var(--sz-transition);
}

.podcast-pill:hover {
    color: var(--sz-accent);
    border-color: var(--sz-accent);
    background: var(--sz-accent-light);
}

.podcast-pill.active {
    background: var(--sz-accent);
    color: #fff;
    border-color: var(--sz-accent);
}

.podcast-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    box-shadow: var(--sz-shadow);
    transition: transform var(--sz-transition), box-shadow var(--sz-transition), border-color var(--sz-transition);
    display: flex;
    flex-direction: column;
}

.podcast-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sz-shadow-lg);
    border-color: rgba(37, 138, 0, 0.15);
}

.podcast-card-cover {
    background: linear-gradient(135deg, var(--sz-primary), var(--sz-highlight));
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.podcast-cover-sm {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
}

.podcast-episode-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.podcast-card-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.podcast-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--sz-text);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.podcast-card-meta {
    font-size: 0.78rem;
    color: var(--sz-text-muted);
}

.podcast-duration-badge {
    background: var(--sz-surface-alt);
    color: var(--sz-text-secondary);
    font-weight: 500;
    font-size: 0.72rem;
}

.podcast-player-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    box-shadow: var(--sz-shadow-md);
}

.podcast-player-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--sz-border-light);
}

.podcast-player-cover {
    width: 72px;
    height: 72px;
    border-radius: var(--sz-radius);
    background: linear-gradient(135deg, var(--sz-primary), var(--sz-highlight));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.podcast-audio-wrapper {
    padding: 1.25rem 1.5rem;
    background: var(--sz-surface);
}

.podcast-audio-wrapper audio {
    width: 100%;
}

.podcast-info-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--sz-shadow);
}

.podcast-description p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--sz-text-secondary);
}

.podcast-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.podcast-detail-label {
    font-size: 0.78rem;
    color: var(--sz-text-muted);
    font-weight: 500;
}

.podcast-detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sz-text);
}

.podcast-share-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 1.25rem;
    box-shadow: var(--sz-shadow);
}

.podcast-share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--sz-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--sz-surface-alt);
    color: var(--sz-text-secondary);
    border: 1px solid var(--sz-border);
    transition: all var(--sz-transition);
}

.podcast-share-btn:hover {
    background: var(--sz-accent);
    color: #fff;
    border-color: var(--sz-accent);
}

.podcast-sidebar-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--sz-shadow);
}

.podcast-related-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.podcast-related-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--sz-border-light);
    transition: background var(--sz-transition);
    color: var(--sz-text);
}

.podcast-related-item:last-child {
    border-bottom: none;
}

.podcast-related-item:hover {
    color: var(--sz-accent);
}

.podcast-related-item:hover .podcast-related-cover {
    background: var(--sz-accent);
}

.podcast-related-cover {
    width: 48px;
    height: 48px;
    border-radius: var(--sz-radius-sm);
    background: linear-gradient(135deg, var(--sz-primary), var(--sz-highlight));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background var(--sz-transition);
}

.podcast-related-info h6 {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
    color: inherit;
}

@media (max-width: 767.98px) {
    .podcast-featured-cover {
        min-height: 200px;
    }
    .podcast-featured-info {
        padding: 1.25rem;
    }
    .podcast-player-cover {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.podcast-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a1f0c 0%, var(--sz-primary) 100%);
    border-top: 2px solid var(--sz-accent);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.podcast-sticky-bar.active {
    transform: translateY(0);
}

.podcast-sticky-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 1rem;
    max-width: 1320px;
    margin: 0 auto;
}

.podcast-sticky-cover {
    width: 48px;
    height: 48px;
    border-radius: var(--sz-radius-sm);
    background: linear-gradient(135deg, var(--sz-accent), #1a7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.podcast-sticky-info {
    flex: 0 1 200px;
    min-width: 0;
}

.podcast-sticky-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.podcast-sticky-host {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.podcast-sticky-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.podcast-sticky-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--sz-transition);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.podcast-sticky-btn:hover {
    color: #fff;
}

.podcast-sticky-btn-play {
    width: 44px;
    height: 44px;
    background: var(--sz-accent);
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 2px 12px rgba(37, 138, 0, 0.4);
}

.podcast-sticky-btn-play:hover {
    background: var(--sz-accent-hover);
    color: #fff;
    transform: scale(1.05);
}

.podcast-sticky-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}

.podcast-sticky-time {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    min-width: 36px;
    text-align: center;
}

.podcast-sticky-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    min-width: 60px;
}

.podcast-sticky-track:hover {
    height: 7px;
}

.podcast-sticky-fill {
    height: 100%;
    background: var(--sz-accent);
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width 0.1s linear;
}

.podcast-sticky-fill::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    transition: transform var(--sz-transition);
}

.podcast-sticky-track:hover .podcast-sticky-fill::after {
    transform: translateY(-50%) scale(1);
}

.podcast-sticky-volume {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.podcast-sticky-volume-slider {
    width: 70px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
}

.podcast-sticky-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.podcast-sticky-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
}

.podcast-sticky-speed {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 0.2rem 0.45rem;
    cursor: pointer;
    transition: all var(--sz-transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.podcast-sticky-speed:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.podcast-sticky-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--sz-transition);
    flex-shrink: 0;
}

.podcast-sticky-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.podcast-sticky-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    text-decoration: none;
    transition: color var(--sz-transition);
    flex-shrink: 0;
}

.podcast-sticky-link:hover {
    color: var(--sz-accent);
}

@media (max-width: 991.98px) {
    .podcast-sticky-volume {
        display: none;
    }
    .podcast-sticky-info {
        flex: 0 1 150px;
    }
}

@media (max-width: 767.98px) {
    .podcast-sticky-inner {
        gap: 0.6rem;
        padding: 0.5rem 0.75rem;
    }
    .podcast-sticky-cover {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .podcast-sticky-info {
        flex: 0 1 120px;
    }
    .podcast-sticky-progress {
        display: none;
    }
    .podcast-sticky-speed {
        display: none;
    }
    .podcast-sticky-btn-play {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

.cmty-hero {
    background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-highlight) 50%, #0a1f0c 100%);
    color: white;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.cmty-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(37, 138, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cmty-hero h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0;
}

.cmty-hero-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--sz-accent), #1a7a00);
    border-radius: var(--sz-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.cmty-match-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 1.25rem;
    transition: transform var(--sz-transition), box-shadow var(--sz-transition), border-color var(--sz-transition);
    height: 100%;
}

.cmty-match-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sz-shadow-lg);
    border-color: rgba(37, 138, 0, 0.15);
}

.cmty-match-live {
    border-left: 3px solid #dc3545;
}

.cmty-match-upcoming {
    border-left: 3px solid var(--sz-warning);
}

.cmty-match-finished {
    border-left: 3px solid var(--sz-success);
}

.cmty-match-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cmty-live-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dc3545;
    animation: cmtyPulse 1.5s ease-in-out infinite;
}

.cmty-live-indicator-sm {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: cmtyPulse 1.5s ease-in-out infinite;
    margin-right: 4px;
}

@keyframes cmtyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.cmty-match-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sz-text);
    margin-bottom: 0.25rem;
}

.cmty-match-info {
    font-size: 0.875rem;
    color: var(--sz-text-secondary);
    margin-bottom: 0;
}

.cmty-badge-competition {
    background: var(--sz-highlight);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.cmty-badge-upcoming {
    background: var(--sz-warning);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cmty-badge-finished {
    background: var(--sz-success);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cmty-match-date {
    font-size: 0.8rem;
    color: var(--sz-text-muted);
}

.cmty-header-card {
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 2rem;
    box-shadow: var(--sz-shadow);
}

.cmty-header-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--sz-text);
    margin-bottom: 0.5rem;
}

.cmty-header-match-info {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sz-primary);
    margin-bottom: 0.5rem;
}

.cmty-header-meta {
    font-size: 0.875rem;
    color: var(--sz-text-muted);
}

.cmty-share-buttons .btn {
    font-size: 0.8rem;
}

.cmty-timeline {
    position: relative;
    padding: 1rem 0;
}

.cmty-timeline-item {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    position: relative;
}

.cmty-timeline-minute {
    width: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 0.75rem;
    padding-top: 1rem;
}

.cmty-minute-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--sz-text-muted);
    padding: 0 0.5rem;
}

.cmty-minute-goal {
    background: var(--sz-success);
}

.cmty-minute-card {
    background: var(--sz-warning);
}

.cmty-minute-substitution {
    background: var(--sz-info);
}

.cmty-minute-whistle {
    background: var(--sz-primary);
}

.cmty-minute-comment {
    background: var(--sz-text-muted);
}

.cmty-timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32px;
    flex-shrink: 0;
}

.cmty-timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 0.85rem;
    z-index: 1;
    background: var(--sz-text-muted);
}

.cmty-dot-goal {
    background: var(--sz-success);
}

.cmty-dot-card {
    background: var(--sz-warning);
}

.cmty-dot-substitution {
    background: var(--sz-info);
}

.cmty-dot-whistle {
    background: var(--sz-primary);
}

.cmty-dot-comment {
    background: #94a3b8;
}

.cmty-timeline-line {
    width: 2px;
    flex: 1;
    background: var(--sz-border);
    min-height: 20px;
}

.cmty-timeline-item:last-child .cmty-timeline-line {
    display: none;
}

.cmty-timeline-content {
    flex: 1;
    background: var(--sz-white);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 0.85rem 1rem;
    margin: 0.5rem 0 0.5rem 0.75rem;
    transition: box-shadow var(--sz-transition);
}

.cmty-timeline-content:hover {
    box-shadow: var(--sz-shadow-md);
}

.cmty-content-goal {
    border-left: 3px solid var(--sz-success);
    background: #f0fdf4;
}

.cmty-content-card {
    border-left: 3px solid var(--sz-warning);
    background: #fffbeb;
}

.cmty-content-substitution {
    border-left: 3px solid var(--sz-info);
    background: #f0f9ff;
}

.cmty-content-whistle {
    border-left: 3px solid var(--sz-primary);
    background: var(--sz-surface-alt);
}

.cmty-content-comment {
    border-left: 3px solid var(--sz-border);
}

.cmty-key-moment .cmty-timeline-content {
    box-shadow: var(--sz-shadow-md);
}

.cmty-player-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--sz-text);
    margin-bottom: 0.25rem;
}

.cmty-team-name {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--sz-text-muted);
}

.cmty-entry-text {
    font-size: 0.875rem;
    color: var(--sz-text-secondary);
    line-height: 1.5;
}

@media (max-width: 575.98px) {
    .cmty-hero h1 {
        font-size: 1.5rem;
    }
    .cmty-timeline-minute {
        width: 50px;
    }
    .cmty-minute-badge {
        min-width: 36px;
        height: 24px;
        font-size: 0.65rem;
    }
    .cmty-timeline-dot {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }
    .cmty-timeline-content {
        padding: 0.65rem 0.75rem;
    }
    .cmty-header-card {
        padding: 1.25rem;
    }
    .cmty-header-title {
        font-size: 1.25rem;
    }
    .cmty-header-match-info {
        font-size: 1rem;
    }
}
.badge{
    width: fit-content;
}
.card-sport img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-search-toggle:hover {
    background: var(--sz-accent);
    border-color: var(--sz-accent);
    color: var(--sz-white);
}

.livesearch-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.livesearch-overlay.livesearch-active {
    opacity: 1;
    visibility: visible;
}

.livesearch-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.livesearch-panel {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: var(--sz-white);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(-12px) scale(0.97);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 1rem;
}

.livesearch-active .livesearch-panel {
    transform: translateY(0) scale(1);
}

.livesearch-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid var(--sz-border);
}

.livesearch-icon {
    font-size: 1.1rem;
    color: var(--sz-text-secondary);
    flex-shrink: 0;
}

.livesearch-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--sz-text);
    font-family: inherit;
}

.livesearch-input::placeholder {
    color: var(--sz-text-secondary);
    font-weight: 400;
}

.livesearch-kbd {
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    background: var(--sz-surface);
    border: 1px solid var(--sz-border);
    color: var(--sz-text-secondary);
    font-size: 0.7rem;
    font-family: inherit;
    line-height: 1.4;
    flex-shrink: 0;
}

.livesearch-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: none;
    background: var(--sz-surface);
    color: var(--sz-text-secondary);
    cursor: pointer;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.livesearch-close:hover {
    background: var(--sz-border);
    color: var(--sz-text);
}

.livesearch-results {
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.livesearch-results::-webkit-scrollbar {
    width: 5px;
}

.livesearch-results::-webkit-scrollbar-thumb {
    background: var(--sz-border);
    border-radius: 3px;
}

.livesearch-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: var(--sz-text-secondary);
    gap: 0.6rem;
}

.livesearch-empty i {
    font-size: 1.8rem;
    opacity: 0.4;
}

.livesearch-empty p {
    margin: 0;
    font-size: 0.88rem;
}

.livesearch-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.livesearch-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--sz-border);
    border-top-color: var(--sz-accent);
    border-radius: 50%;
    animation: lspin 0.6s linear infinite;
}

@keyframes lspin {
    to { transform: rotate(360deg); }
}

.livesearch-group {
    padding: 0.4rem 0;
}

.livesearch-group + .livesearch-group {
    border-top: 1px solid var(--sz-border);
}

.livesearch-group-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.2rem 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sz-text-secondary);
}

.livesearch-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    color: var(--sz-text);
    transition: background 0.12s ease;
}

.livesearch-item:hover {
    background: var(--sz-surface);
    color: var(--sz-text);
}

.livesearch-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--sz-surface);
    flex-shrink: 0;
}

.livesearch-thumb-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--sz-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sz-accent);
    font-size: 1.1rem;
}

.livesearch-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.livesearch-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.livesearch-item-title mark {
    background: rgba(37, 138, 0, 0.15);
    color: var(--sz-accent);
    padding: 0 1px;
    border-radius: 2px;
}

.livesearch-item-sub {
    font-size: 0.75rem;
    color: var(--sz-text-secondary);
}

.livesearch-arrow {
    font-size: 0.75rem;
    color: var(--sz-text-secondary);
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.livesearch-item:hover .livesearch-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.article-full-title { 
    font-family: 'Merriweather', serif !important;
}
.article-headline {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-pills .nav-link{
    color: #268a01 !important;
}.sidebar-article-img {
    width: 100%;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}.article-body
figcaption {
    font-size: 0.75rem;
    color: var(--sz-text-secondary);
    text-align: center; 
    background: #25d3661a;
}.article-body
figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0;
}
@media (max-width: 575.98px) {
    .livesearch-overlay {
        padding-top: 0;
    }

    .livesearch-panel {
        max-width: 100%;
        border-radius: 0;
        height: 100vh;
        margin: 0;
    }

    .livesearch-results {
        max-height: calc(100vh - 60px);
    }

    .livesearch-thumb {
        width: 38px;
        height: 38px;
    }
}
