/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #000000;
    border-bottom: 3px solid #FFD700;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo h1 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #FFD700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('images/stadium.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 4px solid #FFD700;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
}

/* Hero Matches Slider */
.hero-matches-slider {
    position: relative;
    width: 100%;
    padding: 0 60px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.hero-match-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.match-label {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.match-label.upcoming {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
}

.match-label.result.win {
    background: linear-gradient(135deg, #00C853, #00E676);
    color: #000000;
}

.match-label.result.loss {
    background: linear-gradient(135deg, #D32F2F, #F44336);
    color: #ffffff;
}

.match-tournament {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Horizontal Match Layout */
.match-teams-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 25px 0;
}

.team-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 100px;
}

.team-logo-big {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.opponent-logo {
    border-radius: 50%;
}

.team-name-big {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}

.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    min-width: 120px;
}

.match-vs-big {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.match-score-big {
    color: #FFD700;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    white-space: nowrap;
}

.match-time-display {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
}

.match-date-small {
    color: #999999;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
}

.match-venue-small {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 10px 0;
    font-style: italic;
    text-align: center;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 25px 0;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.team-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.match-score-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 100px;
}

.match-vs {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
}

.match-score {
    color: #FFD700;
    font-size: 2rem;
    font-weight: bold;
}

.match-score.large {
    font-size: 2.5rem;
}

.match-time {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: bold;
}

.match-date {
    color: #999999;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.match-venue {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 15px 0;
    font-style: italic;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    color: #000000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-btn:hover {
    background: #FFD700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.btn-primary.small,
.btn-outline.small {
    padding: 10px 25px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.hero h2 {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    letter-spacing: 3px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background-color: transparent;
    color: #FFD700;
    padding: 15px 40px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Quick Stats */
.quick-stats {
    background-color: #000000;
    padding: 3rem 0;
    border-bottom: 2px solid #1a1a1a;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 10px;
    border: 2px solid #FFD700;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #cccccc;
    font-size: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: #FFD700;
    color: #000000;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffc500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #FFD700;
    padding: 10px 25px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

/* News Section */
.news {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #333;
}

.news-card.featured {
    grid-column: span 1;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image::before {
    content: '📰';
    font-size: 4rem;
    opacity: 0.3;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.news-date {
    color: #999999;
    font-size: 0.9rem;
}

.news-card h3 {
    color: #ffffff;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.4rem;
    line-height: 1.3;
}

.news-card p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #ffc500;
}

.news-more {
    text-align: center;
    margin-top: 2rem;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background-color: #000000;
}

.team-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #333;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.filter-btn.active {
    background-color: #FFD700;
    color: #000000;
    border-color: #FFD700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.player-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.player-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #333;
    position: relative;
}

.player-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    cursor: pointer;
}

.player-number-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFD700;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.player-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #ffc500 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFD700;
}

.player-photo::before {
    content: '👤';
    font-size: 3rem;
    opacity: 0.5;
}

.player-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.player-position {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.player-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.player-stats span {
    color: #999999;
    font-size: 0.9rem;
}

.player-flag {
    height: 20px;
    width: auto;
    border-radius: 3px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.player-positions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.position-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
    border: 1px solid #FFD700;
    transition: all 0.3s ease;
}

.position-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.5);
}

.player-number {
    color: #999999;
    font-size: 1.1rem;
}

/* Matches Section */
.matches {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.matches-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #333;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.tab-btn.active {
    background-color: #FFD700;
    color: #000000;
    border-color: #FFD700;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.match-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.match-card:hover {
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.match-card.result-match {
    opacity: 0.9;
}

.match-card.result-match .match-tournament {
    background-color: #333;
}

.match-tournament {
    background-color: #FFD700;
    color: #000000;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-content {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.match-date {
    background: linear-gradient(135deg, #FFD700 0%, #ffc500 100%);
    color: #000000;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    min-width: 90px;
}

.result-match .match-date {
    background: linear-gradient(135deg, #555 0%, #444 100%);
    color: #ffffff;
}

.match-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.match-date .month {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 5px;
}

.match-date .year {
    display: block;
    font-size: 0.75rem;
    margin-top: 3px;
    opacity: 0.8;
}

.match-info {
    flex-grow: 1;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.team {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.team-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.team-name {
    color: #ffffff;
}

.vs {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1rem;
}

.result-match .vs {
    color: #ffffff;
    font-size: 1.5rem;
    background-color: #333;
    padding: 5px 15px;
    border-radius: 5px;
}

.match-details {
    color: #999999;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.8;
}

.contact-form h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background-color: #1a1a1a;
    border: 2px solid #333;
    color: #ffffff;
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 3px solid #FFD700;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-btn {
    background-color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 5px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-btn:hover {
    background-color: #FFD700;
    color: #000000 !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999999;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: #999999;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #FFD700;
}

/* Tournament Table Section */
.tournament-table {
    padding: 4rem 0;
    background-color: #000000;
}

.table-wrapper {
    overflow-x: auto;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 2px solid #333;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table thead {
    background-color: #FFD700;
    color: #000000;
}

.standings-table th {
    padding: 1rem;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.standings-table tbody tr {
    border-bottom: 1px solid #333;
    transition: background-color 0.3s ease;
}

.standings-table tbody tr:hover {
    background-color: #222;
}

.standings-table tbody tr.highlight {
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.standings-table td {
    padding: 1rem;
    color: #cccccc;
}

.standings-table td:first-child {
    color: #FFD700;
    font-weight: bold;
}

.team-name {
    color: #ffffff;
    font-weight: 500;
}

.team-logo-table {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 5px;
}

.table-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.table-legend span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.legend-box.champion {
    background-color: #FFD700;
}

.legend-box.europa {
    background-color: #3498db;
}

.legend-box.relegation {
    background-color: #e74c3c;
}

/* Tickets Section */
.tickets-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ticket-card {
    background-color: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.ticket-card.premium {
    border-color: #FFD700;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.ticket-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFD700;
    color: #000000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.ticket-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ticket-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ticket-price {
    color: #FFD700;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.ticket-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.ticket-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.ticket-features li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.ticket-features li::before {
    position: absolute;
    left: 0;
}

/* Shop Section */
.shop-section {
    padding: 4rem 0;
    background-color: #000000;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background-color: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFD700;
    color: #000000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image::before {
    content: '👕';
    font-size: 5rem;
    opacity: 0.3;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-price {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.shop-more {
    text-align: center;
    margin-top: 3rem;
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background-color: #0a0a0a;
    border-top: 2px solid #1a1a1a;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.partner-logo {
    background-color: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-weight: bold;
    transition: all 0.3s ease;
    min-height: 100px;
}

.partner-logo:hover {
    border-color: #FFD700;
    background-color: #222;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 3px solid #FFD700;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-btn {
    background-color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 5px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-btn:hover {
    background-color: #FFD700;
    color: #000000 !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999999;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: #999999;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-match-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .hero-matches-slider {
        padding: 0 50px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-matches-slider {
        padding: 0 40px;
    }

    .hero-match-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .match-teams-horizontal {
        gap: 10px;
    }

    .team-side {
        min-width: 70px;
    }

    .team-name-big {
        font-size: 0.85rem;
    }

    .team-logo-big {
        width: 35px;
        height: 35px;
    }

    .match-vs-big {
        font-size: 1.3rem;
    }

    .match-score-big {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .match-time-display {
        font-size: 1.1rem;
    }

    .match-center {
        padding: 0 8px;
        min-width: 90px;
    }

    .match-teams {
        flex-direction: column;
        gap: 20px;
    }

    .team-name {
        font-size: 0.9rem;
    }

    .team-logo {
        width: 30px;
        height: 30px;
    }

    .match-score.large {
        font-size: 2rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .quick-stats {
        padding: 2rem 0;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .match-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .teams {
        flex-direction: column;
        gap: 1rem;
    }

    .table-wrapper {
        font-size: 0.85rem;
    }

    .standings-table th,
    .standings-table td {
        padding: 0.5rem 0.3rem;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .team-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
