:root {
    --blue-900: #0b233c;
    --blue-600: #1b63a8;
    --gold: #f2c230;
    --gold-light: #ffd95a;
    --gold-dark: #e0a615;
    --card: #ffffff;
    --muted: #64748b;
    --shadow-soft: 0 8px 24px rgba(11, 35, 60, 0.08);
    --shadow-subtle: 0 2px 8px rgba(11, 35, 60, 0.06);
    --shadow-gold: 0 8px 24px rgba(242, 194, 48, 0.3);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3 {
    text-shadow: 0 2px 4px rgba(11, 35, 60, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #fffbf0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 6px;
    border: 3px solid #fffbf0;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--blue-600);
    }

/* Custom Selection */
::selection {
    background: rgba(242, 194, 48, 0.3);
    color: var(--blue-900);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--blue-900);
    background: linear-gradient(180deg, #fffbf0, #fff9e6, #ffffff);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fade in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Header */
.site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(242, 194, 48, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.5s var(--ease);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--blue-900);
    font-size: 20px;
    transition: transform 0.3s var(--ease);
    animation: slideInLeft 0.6s var(--ease);
}

    .brand:hover {
        transform: scale(1.05);
    }

.brand__logo {
    height: 48px;
    width: auto;
    transition: transform 0.3s var(--ease);
}

.brand:hover .brand__logo {
    transform: rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(242, 194, 48, 0.6));
}

.nav__list {
    display: flex;
    gap: 24px;
    list-style: none;
}

    .nav__list li {
        animation: fadeInDown 0.6s var(--ease) both;
    }

        .nav__list li:nth-child(1) {
            animation-delay: 0.1s;
        }

        .nav__list li:nth-child(2) {
            animation-delay: 0.2s;
        }

        .nav__list li:nth-child(3) {
            animation-delay: 0.3s;
        }

        .nav__list li:nth-child(4) {
            animation-delay: 0.4s;
        }

        .nav__list li:nth-child(5) {
            animation-delay: 0.5s;
        }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav__link {
    text-decoration: none;
    color: var(--blue-900);
    font-weight: 600;
    transition: all 0.3s var(--ease);
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .nav__link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transition: all 0.3s var(--ease);
        transform: translateX(-50%);
    }

    .nav__link:hover::before {
        width: 80%;
    }

    .nav__link:hover,
    .nav__link.active {
        color: var(--blue-600);
        background: linear-gradient(135deg, rgba(242, 194, 48, 0.1), rgba(255, 217, 90, 0.15));
        box-shadow: 0 4px 12px rgba(242, 194, 48, 0.15);
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.6s var(--ease);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

    .burger span {
        width: 24px;
        height: 3px;
        background: var(--blue-900);
        border-radius: 2px;
        transition: all 0.3s var(--ease);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s var(--ease);
    border: 2px solid transparent;
    background: var(--blue-600);
    color: white;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: none;
        z-index: -1;
    }

    .btn:hover::after {
        animation: shine 1.5s ease-in-out infinite;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
        z-index: -1;
    }

    .btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 24px rgba(27, 99, 168, 0.3);
    }

.btn--accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-900);
    box-shadow: 0 4px 15px rgba(242, 194, 48, 0.3);
    animation: pulse 2s infinite;
}

    .btn--accent:hover {
        background: linear-gradient(135deg, var(--gold-dark), var(--gold));
        box-shadow: var(--shadow-gold);
        transform: translateY(-3px) scale(1.05);
    }

.btn--ghost {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--blue-900);
}

    .btn--ghost:hover {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--blue-900);
        border-color: var(--gold-light);
    }

/* Hero */
.hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: -10%;
        width: 40%;
        height: 100%;
        background: radial-gradient(circle, rgba(242, 194, 48, 0.1), transparent);
        animation: float 6s ease-in-out infinite;
    }

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--blue-600);
    margin-bottom: 12px;
    animation: slideInLeft 0.8s var(--ease);
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600), var(--gold), var(--blue-900));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s var(--ease) 0.2s both, gradientShift 8s ease infinite;
}

.lead {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 24px;
    animation: fadeInUp 1s var(--ease) 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease) 0.6s both;
}

.stats-row {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    animation: fadeInUp 1s var(--ease) 0.8s both;
}

.stat {
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 251, 240, 0.9));
    border-radius: 12px;
    border: 2px solid rgba(242, 194, 48, 0.2);
    transition: all 0.3s var(--ease);
}

    .stat:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
        box-shadow: var(--shadow-gold);
    }

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-900), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
}

.hero-card {
    position: relative;
    animation: slideInRight 1s var(--ease) 0.4s both, subtleFloat 6s ease-in-out 1.5s infinite;
}

.hero-right .hero-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(242, 194, 48, 0.3);
    transition: transform 0.5s var(--ease);
}

.hero-card:hover .hero-img {
    transform: scale(1.02) rotate(1deg);
}

.hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(242, 194, 48, 0.95), rgba(255, 217, 90, 0.95));
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    color: var(--blue-900);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    animation: slideInUp 1s var(--ease) 1s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panels */
.panel {
    padding: 60px 0;
    animation: fadeIn 0.8s var(--ease);
}

    .panel h1 {
        margin-bottom: 32px;
        font-size: 36px;
        animation: fadeInUp 0.8s var(--ease);
        position: relative;
        display: inline-block;
    }

        .panel h1::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            border-radius: 2px;
        }

    .panel h2 {
        margin: 32px 0 16px;
        font-size: 24px;
        animation: fadeInUp 0.6s var(--ease);
    }

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Cards */
.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 240, 0.8));
    padding: 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-subtle);
    border: 2px solid rgba(242, 194, 48, 0.1);
    transition: all 0.4s var(--ease);
    animation: fadeInUp 0.8s var(--ease) both;
}

    .card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .card:nth-child(3) {
        animation-delay: 0.3s;
    }

.card--link {
    text-decoration: none;
    color: inherit;
}

    .card--link:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-gold);
        border-color: var(--gold);
        background: linear-gradient(135deg, rgba(255, 251, 240, 1), rgba(255, 247, 230, 1));
    }

.card-icon {
    font-size: 36px;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

.card h3 {
    margin-bottom: 8px;
    color: var(--blue-900);
}

/* Teams */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.9));
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-subtle);
    border: 2px solid rgba(242, 194, 48, 0.1);
    transition: all 0.3s var(--ease);
    animation: fadeInUp 0.6s var(--ease) both;
}

    .team-card:nth-child(odd) {
        animation-delay: 0.1s;
    }

    .team-card:nth-child(even) {
        animation-delay: 0.2s;
    }

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-gold);
        border-color: var(--gold);
    }

.team-thumb {
    width: 90px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s var(--ease);
}

.team-card:hover .team-thumb {
    transform: scale(1.1) rotate(2deg);
}

.team-meta h4 {
    margin: 0 0 4px 0;
    font-size: 17px;
}

.team-meta p {
    margin: 0;
    font-size: 14px;
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.9));
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(242, 194, 48, 0.1);
    transition: all 0.4s var(--ease);
    animation: fadeInUp 0.8s var(--ease) both;
}

    .news-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .news-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .news-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .news-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .news-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .news-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-gold);
        border-color: var(--gold);
    }

    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.5s var(--ease);
    }

    .news-card:hover img {
        transform: scale(1.1);
    }

.news-body {
    padding: 18px;
}

    .news-body h4 {
        margin-bottom: 8px;
        font-size: 18px;
    }

.muted {
    color: var(--muted);
    font-size: 14px;
}

/* Sponsors */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.sponsor-grid--gold {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sponsor-grid--small {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.sponsor-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.9));
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-subtle);
    border: 2px solid rgba(242, 194, 48, 0.15);
    min-height: 100px;
    transition: all 0.3s var(--ease);
    animation: fadeIn 0.8s var(--ease) both;
}

    .sponsor-card:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: var(--shadow-gold);
        border-color: var(--gold);
    }

    .sponsor-card img {
        max-height: 60px;
        max-width: 100%;
        object-fit: contain;
        transition: transform 0.3s var(--ease);
    }

    .sponsor-card:hover img {
        transform: scale(1.1);
    }

/* Tables */
.table-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.9));
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-subtle);
    border: 2px solid rgba(242, 194, 48, 0.15);
    overflow-x: auto;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s var(--ease);
}

.match-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
}

    .match-table thead th {
        background: linear-gradient(90deg, rgba(242, 194, 48, 0.2), rgba(255, 217, 90, 0.15));
        padding: 14px;
        text-align: left;
        font-weight: 700;
        color: var(--blue-900);
        border-bottom: 2px solid var(--gold);
    }

    .match-table tbody tr {
        border-bottom: 1px solid rgba(242, 194, 48, 0.15);
        transition: all 0.3s var(--ease);
    }

    .match-table td {
        padding: 14px;
        vertical-align: middle;
    }

.match-date {
    background: linear-gradient(90deg, rgba(242, 194, 48, 0.25), rgba(255, 217, 90, 0.2));
    font-weight: 700;
    padding: 12px 14px;
    color: var(--blue-900);
    border-left: 4px solid var(--gold);
}

.score-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-900);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(242, 194, 48, 0.3);
    transition: all 0.3s var(--ease);
}

.match-table tbody tr:hover .score-pill {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.team-home {
    font-weight: 700;
    color: var(--blue-900);
}

.team-away {
    color: var(--muted);
}

.match-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(242, 194, 48, 0.08), transparent);
    transform: scale(1.01);
}

/* Forms */
.join-form {
    display: grid;
    gap: 16px;
    max-width: 600px;
    margin-top: 24px;
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

    .join-form label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--blue-900);
    }

    .join-form input,
    .join-form textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid rgba(242, 194, 48, 0.3);
        border-radius: 8px;
        font-size: 15px;
        font-family: inherit;
        background: rgba(255, 255, 255, 0.8);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .join-form input:focus,
        .join-form textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: white;
            box-shadow: 0 0 0 4px rgba(242, 194, 48, 0.15);
            transform: translateY(-2px) scale(1.01);
        }

    .join-form textarea {
        resize: vertical;
        min-height: 100px;
    }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--blue-900), #0a2440);
    color: var(--card);
    padding: 40px 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
        background-size: 200% 100%;
        animation: gradientShift 6s linear infinite;
    }

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 0.8s var(--ease);
}

    .footer-inner a {
        color: var(--gold-light);
        transition: color 0.3s var(--ease);
    }

        .footer-inner a:hover {
            color: var(--gold);
        }

/* Success Message */
.success-message {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-900);
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    animation: slideInUp 0.5s var(--ease);
}

/* Mobile Navigation */
@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 240, 0.98));
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-soft);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease);
    }

        .nav.active {
            max-height: 400px;
            border-bottom: 3px solid var(--gold);
        }

    .nav__list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 12px;
    }

    .burger {
        display: flex;
    }

    .header-actions .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .stats-row {
        gap: 16px;
    }

    .stat-value {
        font-size: 24px;
    }

    .teams-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .match-table thead {
        display: none;
    }

    .match-table tbody tr {
        display: block;
        margin-bottom: 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.9));
        padding: 16px;
        border-radius: 12px;
        border: 2px solid rgba(242, 194, 48, 0.2);
    }

    .match-table td {
        display: block;
        padding: 8px 0;
        border: none;
    }

        .match-table td:before {
            content: attr(data-label);
            font-weight: 700;
            display: block;
            margin-bottom: 4px;
            color: var(--muted);
            font-size: 12px;
            text-transform: uppercase;
        }

    .match-date {
        border-radius: 8px;
        margin-bottom: 12px;
    }
}
/* Sponsor Banner */
.sponsor-banner-section {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid rgba(242, 194, 48, 0.2);
    margin-top: auto;
}

.sponsor-banner-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.sponsor-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

    .sponsor-track:hover {
        animation-play-state: paused;
    }

.sponsor-logo-item {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

    .sponsor-logo-item:hover {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.1);
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
