/* Global Styles & Variables */
:root {
    --primary-color: #df002a;  /* Prime League red */
    --primary-hover: #c5002c; /* Darker red for hover states */
    --secondary-color: #212529; /* Dark gray/black */
    --text-color: #ffffff;
    --text-secondary: #a1a5a9;
    --bg-dark: #14171a;
    --bg-darker: #0a0c0e;
    --bg-card: #1c2024;
    --bg-hover: #2a2e34;
    --accent-color: #06dc94; /* Mint green for accents/highlights */
    --font-main: 'Inter', sans-serif;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

button {
    cursor: pointer;
    font-family: var(--font-main);
    border: none;
    outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

section {
    padding: 3rem 0;
}

/* Header and Navigation Styles */
.site-header {
    width: 100%;
    z-index: 1000;
    position: relative;
}

.top-bar {
    background-color: var(--bg-darker);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    vertical-align: middle;
}

/* Primary Navigation */
.primary-nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav ul li {
    position: relative;
    margin: 0 0.6rem;
}

.primary-nav ul li a {
    display: block;
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.primary-nav ul li a.active,
.primary-nav ul li a:hover {
    color: var(--primary-color);
}

/* Dropdown menus */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-darker);
    min-width: 220px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--bg-card);
    color: var(--primary-color);
}

/* User Navigation */
.user-nav {
    display: flex;
    align-items: center;
}

.user-actions {
    display: flex;
    gap: 0.8rem;
}

.login-btn, .register-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.login-btn {
    color: var(--text-color);
    border: 1px solid var(--border-color);
    background-color: transparent;
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-color);
}

.register-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 1px solid var(--primary-color);
}

.register-btn:hover {
    background-color: var(--primary-hover);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle .hamburger {
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before {
    top: -8px;
}

.mobile-menu-toggle .hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    background-color: var(--bg-darker);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 70px; /* Adjust based on your header height */
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > .container > ul > li > a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.mobile-nav > .container > ul > li > a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

.mobile-nav .submenu {
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
}

.mobile-nav .submenu a {
    display: block;
    padding: 12px 30px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.mobile-nav .submenu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    padding-left: 35px;
}

.mobile-nav .dropdown.active .submenu {
    display: block;
}

.mobile-nav .auth-links {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Responsive navigation */
@media (max-width: 992px) {
    .primary-nav-container {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    color: var(--text-color);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.countdown-container {
    width: 100%;
}

.countdown-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.countdown {
    display: flex;
    gap: 0.8rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    min-width: 60px;
    padding: 0.6rem 0.5rem;
    text-align: center;
}

.time-unit .number {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.time-unit .label {
    font-size: 0.7rem;
    margin-top: 0.3rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--text-color);
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: var(--text-color);
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-slide {
        height: 400px;
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

/* Matches Section */
.matches-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
}

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

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    margin: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.view-all {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.view-all i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-color);
}

.view-all:hover i {
    transform: translateX(3px);
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.match-card {
    background-color: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
}

.match-league {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.85rem;
}

.league-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.match-format {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
}

.team {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 40%;
}

.team-left {
    text-align: left;
}

.team-right {
    text-align: right;
    flex-direction: row-reverse;
}

.team-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.team-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-info {
    flex: 1;
}

.team-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.team-fullname {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.match-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    padding: 0 0.5rem;
}

.match-date, .match-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.vs-indicator {
    margin: 0.5rem 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.match-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background-color: rgba(0, 0, 0, 0.1);
}

.match-details-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.match-details-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.match-social {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-secondary);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

@media (max-width: 992px) {
    .matches-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .match-teams {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team {
        width: 100%;
    }
    
    .match-status {
        width: 100%;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .match-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .match-details-btn {
        width: 100%;
    }
    
    .match-social {
        justify-content: center;
    }
}

/* Challenges & Tournaments Section */
.challenges-section {
    padding: 4rem 0;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tournament-card {
    background-color: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tournament-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.tournament-info h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tournament-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.tournament-dates {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.date {
    display: flex;
    flex-direction: column;
}

.date .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.date .value {
    font-weight: 500;
}

.tournament-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 0.8rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.tournament-button:hover {
    background-color: #c10023;
}

.challenges-grid {
    display: grid;
    gap: 1rem;
}

.challenge-card {
    background-color: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
    box-shadow: var(--shadow);
}

.challenge-status {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.challenge-card.completed .challenge-status {
    background-color: var(--accent-color);
    color: var(--bg-darker);
}

.challenge-card.live .challenge-status {
    background-color: var(--primary-color);
}

.challenge-card h3 {
    margin: 1rem 0;
}

.challenge-details {
    margin-top: 1rem;
}

.detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail .label {
    color: var(--text-secondary);
}

/* Livestreams Section */
.livestreams-section {
    background-color: var(--bg-darker);
    padding: 4rem 0;
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.stream-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.stream-card-link:hover {
    transform: translateY(-5px);
}

.stream-card-link:active {
    transform: translateY(0);
}

.stream-card {
    background-color: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stream-card:hover {
    transform: translateY(-5px);
}

.stream-thumbnail {
    position: relative;
    height: 180px;
    background-color: #1e2a4a; /* Dark blue background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-thumbnail img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain; /* Maintain aspect ratio */
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
}

.stream-info {
    padding: 1rem;
}

.streamer {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.streamer img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 0.8rem;
}

.stream-info h3 {
    font-size: 1rem;
    line-height: 1.4;
}

/* News Section */
.news-section {
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background-color: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 180px;
}

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

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    font-size: 0.8rem;
}

.news-meta .date {
    color: var(--text-secondary);
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Partners Section */
.partners-section {
    background-color: var(--bg-darker);
    padding: 4rem 0;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner {
    background-color: var(--bg-card);
    border-radius: 6px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner img {
    max-width: 80%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--text-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-nav .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .matches-grid,
    .streams-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top,
    .footer-middle {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.6rem;
    }
    
    .match-teams {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vs {
        margin: 0.5rem 0;
    }
    
    .tournament-dates {
        flex-direction: column;
        gap: 0.5rem;
    }
}
