* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e31e24;
    --primary-dark: #b91c22;
    --secondary-color: #1a1a1a;
    --dark-bg: #0d0d0d;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #999999;
    --gray-dark: #666666;
    --accent-color: #ff4757;
    --success-color: #2ed573;
    --warning-color: #ffa502;
    --gradient-primary: linear-gradient(135deg, #e31e24 0%, #ff4757 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --font-primary: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.accent {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--secondary-color);
    box-shadow: var(--shadow-light);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav__logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__burger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Matches Section */
.hero-matches {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-matches__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: -2;
}

.hero-matches__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-matches__content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-matches__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero-matches__subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-matches__stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* Upcoming Matches Section */
.upcoming-matches {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.matches__filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--gray-light);
    border: 2px solid var(--gray-dark);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.matches__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.match-card {
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-color);
}

.match-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.match-card__competition {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.match-card__date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.match-card__teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.team img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.team__name {
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.match-card__vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 2rem;
}

.vs-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.match-card__time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.match-card__venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-medium);
}

.venue-icon {
    font-size: 1.2rem;
}

.match-card__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.match-card__actions .btn {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

/* Recent Results Section */
.recent-results {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.result-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gray-dark);
    transition: var(--transition);
}

.result-card--win::before {
    background: var(--success-color);
}

.result-card--draw::before {
    background: var(--warning-color);
}

.result-card--loss::before {
    background: var(--primary-color);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.result-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.result-card__competition {
    background: rgba(227, 30, 36, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.result-card__date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.result-card__teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.result-card__teams .team {
    flex-direction: row;
    gap: 1rem;
}

.result-card__teams .team img {
    width: 50px;
    height: 50px;
}

.result-card__score {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.result-card__status {
    text-align: center;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge--win {
    background: var(--success-color);
    color: var(--white);
}

.status-badge--draw {
    background: var(--warning-color);
    color: var(--white);
}

.status-badge--loss {
    background: var(--primary-color);
    color: var(--white);
}

/* Events Calendar Section */
.events-calendar {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.calendar__filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.calendar-filter {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--gray-light);
    border: 2px solid var(--gray-dark);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.calendar-filter:hover,
.calendar-filter.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    min-width: 80px;
    text-align: center;
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-card__info {
    flex: 1;
}

.event-card__type {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.event-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.event-card__details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.detail-item {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.event-card__action .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

/* Live Updates Section */
.live-updates {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.updates__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.live-match-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid var(--success-color);
}

.live-match-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-weight: 700;
    text-transform: uppercase;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.match-time {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}

.live-match-card__teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.live-score {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
}

.score-separator {
    color: var(--gray-medium);
}

.live-match-card__stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-label {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-dark);
    border-radius: 4px;
    margin: 0 1rem;
    overflow: hidden;
}

.stat-bar__fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.stat-value {
    color: var(--white);
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

.stat-numbers {
    display: flex;
    gap: 1rem;
}

.stat-home,
.stat-away {
    color: var(--white);
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.updates__sidebar {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.match-events h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-event {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gray-dark);
}

.timeline-event--goal {
    border-left-color: var(--success-color);
}

.timeline-event--card {
    border-left-color: var(--warning-color);
}

.event-time {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 40px;
}

.event-icon {
    font-size: 1.2rem;
    min-width: 30px;
    text-align: center;
}

.event-text {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Ticket Information Section */
.ticket-info {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.ticket-info__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ticket-info__text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ticket-info__text p {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ticket-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: var(--border-radius);
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.feature-info h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
}

.feature-info p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

.ticket-prices {
    margin-bottom: 2rem;
}

.ticket-prices h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: var(--dark-bg);
    border-radius: var(--border-radius);
}

.price-category {
    color: var(--gray-light);
}

.price-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.ticket-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.ticket-info__visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stadium-map {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.stadium-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.stadium-capacity {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.capacity-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.capacity-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.ticket-benefits {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.ticket-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ticket-benefits ul {
    list-style: none;
}

.ticket-benefits li {
    color: var(--gray-light);
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer__description {
    color: var(--gray-light);
    line-height: 1.6;
}

.footer__section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 0.5rem;
}

.footer__section ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer__section ul li a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-medium);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal__content {
    position: relative;
    background: var(--secondary-color);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease;
}

.modal__content--large {
    max-width: 800px;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-dark);
}

.modal__header h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.modal__close {
    color: var(--gray-medium);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal__close:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .matches__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .updates__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ticket-info__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-matches__stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: start;
        padding: 2rem;
        transition: var(--transition);
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__burger {
        display: flex;
    }
    
    .nav__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-matches__title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-matches__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .matches__filter,
    .calendar__filters {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .filter-btn,
    .calendar-filter {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .matches__grid {
        grid-template-columns: 1fr;
    }
    
    .match-card {
        padding: 1.5rem;
    }
    
    .match-card__teams {
        flex-direction: column;
        gap: 1rem;
    }
    
    .match-card__vs {
        margin: 0;
        order: 2;
    }
    
    .match-card__actions {
        flex-direction: column;
    }
    
    .results__grid,
    .events__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-card__date {
        align-self: center;
        min-width: 100px;
    }
    
    .live-match-card__teams {
        flex-direction: column;
        gap: 1rem;
    }
    
    .live-score {
        font-size: 2rem;
    }
    
    .ticket-features {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 2rem;
    }
    
    .hero-matches {
        min-height: 60vh;
    }
    
    .upcoming-matches,
    .recent-results,
    .events-calendar,
    .live-updates,
    .ticket-info {
        padding: 4rem 0;
    }
    
    .match-card,
    .result-card,
    .event-card {
        padding: 1rem;
    }
    
    .live-match-card,
    .updates__sidebar {
        padding: 1.5rem;
    }
    
    .modal__content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .team img {
        width: 50px;
        height: 50px;
    }
    
    .result-card__teams .team img {
        width: 40px;
        height: 40px;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav__link:focus,
.filter-btn:focus,
.calendar-filter:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ff0000;
        --secondary-color: #000000;
        --white: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    transition: color 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
  }
  
  a:hover {
    color: #ff0000;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: black;
}