﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Theme */
:root {
    --primary-green: #00ff88;
    --dark-green: #008055;
    --black: #0a0a0a;
    --gray-dark: #1a1a1a;
    --gray: #333333;
    --gray-light: #666666;
    --white: #ffffff;
}

/* Top Navbar */
.top-navbar {
    background-color: var(--black);
    border-bottom: 1px solid var(--dark-green);
    padding: 8px 0;
    font-size: 12px;
}

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

.latest-news-label {
    color: var(--primary-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-ticker {
    flex: 1;
    margin: 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    height: 20px;
    position: relative;
}

.ticker-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.ticker-item.active {
    opacity: 1;
    transform: translateY(0);
}

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

.ticker-item a:hover {
    color: var(--primary-green);
}

.ticker-controls button {
    background: none;
    border: none;
    color: var(--gray-light);
    cursor: pointer;
    font-size: 12px;
    transition: color 0.3s ease;
}

.ticker-controls button:hover {
    color: var(--primary-green);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Main Navbar */
.main-navbar {
    background-color: var(--gray-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--gray-dark);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* BPJS Banner */
.bpjs-banner {
    background-color: var(--black);
    padding: 15px 0;
}

.bpjs-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.bpjs-banner img:hover {
    transform: scale(1.01);
}

/* HORIZONTAL SCROLL FOR MATCH CARDS */
.match-cards-container {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
}

.match-cards-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    margin: 0 -5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.match-cards-scroll::-webkit-scrollbar {
    display: none;
}

.match-card-wrapper {
    flex: 0 0 auto;
    width: 280px;
}

.scroll-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none;
    color: var(--black);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Match Cards */
.match-card {
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    border: 1px solid var(--dark-green);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
    border-color: var(--primary-green);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
}

.match-date {
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 600;
}

.match-status {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex: 1;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team-logo-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--dark-green);
    padding: 3px;
    background-color: var(--black);
}

.team-name {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 100px;
    word-wrap: break-word;
}

.vs {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 700;
    padding: 0 10px;
}

.match-score {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin: 15px 0;
    color: var(--white);
}

.match-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray-light);
    padding-top: 15px;
    border-top: 1px solid var(--gray);
    margin-top: auto;
}

.match-venue {
    display: flex;
    align-items: center;
    gap: 5px;
}

.match-details i {
    color: var(--primary-green);
}

.btn-details {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none;
    color: var(--black);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.3);
}

/* ==============================
   IMPROVED MATCH SECTION STYLES
   ============================== */

.match-section {
    margin-top: 40px;
}

.match-table-container {
    margin: 20px 0 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--dark-green);
    background-color: var(--gray-dark);
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.match-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.match-table th {
    background-color: var(--black);
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 2px solid var(--primary-green);
    white-space: nowrap;
}

.match-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 14px;
    vertical-align: middle;
    transition: background-color 0.2s ease;
}

.match-table tr:last-child td {
    border-bottom: none;
}

.match-table tr:hover {
    background-color: rgba(0, 255, 136, 0.05);
}

.match-table tr:hover td {
    background-color: rgba(0, 255, 136, 0.03);
}

/* Column Widths */
.col-no {
    width: 60px;
    text-align: center;
}

.col-match {
    width: 300px;
    min-width: 250px;
}

.col-score {
    width: 120px;
    text-align: center;
}

.col-datetime {
    width: 140px;
}

.col-venue {
    width: 200px;
}

.col-event {
    width: 200px;
}

.col-action {
    width: 100px;
    text-align: center;
}

/* Team Cell */
.match-teams-cell {
    padding: 12px !important;
}

.match-teams-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.team-logo-wrapper {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-sm {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--dark-green);
    padding: 2px;
    background-color: var(--black);
    transition: transform 0.3s ease;
}

.match-row:hover .team-logo-sm {
    transform: scale(1.1);
    border-color: var(--primary-green);
}

.team-name-sm {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    color: var(--white);
}

.vs-sm {
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    padding: 0 8px;
    flex-shrink: 0;
}

/* Score Cell */
.match-score-cell {
    text-align: center;
}

.score-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--white);
}

.score-team {
    min-width: 30px;
    text-align: center;
}

.score-separator {
    color: var(--primary-green);
    font-weight: bold;
}

.match-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-status-badge.completed {
    background-color: var(--dark-green);
    color: var(--white);
}

.match-status-badge.scheduled {
    background-color: #f39c12;
    color: var(--black);
}

/* Date Time Cell */
.match-datetime-cell {
    padding: 16px 12px !important;
}

.datetime-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-info {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.time-info {
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
}

/* Venue Cell */
.match-venue-cell {
    padding: 16px 12px !important;
}

.venue-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.venue-info i {
    color: var(--primary-green);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.venue-text {
    color: var(--gray-light);
    word-wrap: break-word;
    max-width: 180px;
}

/* Event Cell */
.match-event-cell {
    padding: 16px 12px !important;
}

.event-badge {
    display: inline-block;
    background-color: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.round-info {
    color: var(--gray-light);
    font-size: 12px;
    line-height: 1.3;
    max-width: 180px;
}

/* Actions Cell */
.match-actions-cell {
    text-align: center;
    padding: 16px 12px !important;
}

.btn-view {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none;
    color: var(--black);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.btn-view i {
    font-size: 12px;
}

/* See More Section */
.see-more-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--black);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 255, 136, 0.3);
    gap: 12px;
}

/* Section Headers */
.section-container {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
}

.section-tabs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tab-button {
    background: none;
    border: 1px solid var(--gray);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--black);
    transform: translateY(-1px);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

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

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin: 20px 0;
    border: 2px dashed var(--gray);
}

.empty-state i {
    font-size: 48px;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.empty-state h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-state p {
    color: var(--gray-light);
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto;
}

/* ==============================
   NEWS STYLES
   ============================== */

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.news-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item-large {
    background-color: var(--gray-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.news-item-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-green);
}

.news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: var(--black);
}

.news-image-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.news-image-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--primary-green);
    font-size: 48px;
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--gray-light);
}

.news-date {
    color: var(--primary-green);
    font-weight: 600;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-views i {
    color: var(--primary-green);
}

.news-popular-badge {
    background-color: #ff6b6b;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.news-popular-badge i {
    font-size: 9px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
}

.news-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.news-title a:hover {
    color: var(--primary-green);
}

.news-excerpt {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.news-author {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: auto;
}

/* Sidebar News Styles */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item-small {
    background-color: var(--gray-dark);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-left: 3px solid transparent;
}

.news-item-small:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--primary-green);
    background-color: rgba(0, 255, 136, 0.05);
}

.news-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--black);
}

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

.news-item-small:hover .news-thumb {
    transform: scale(1.1);
}

.news-content-small {
    flex: 1;
    min-width: 0;
}

.news-content-small .news-meta {
    margin-bottom: 5px;
    font-size: 11px;
}

.news-content-small .news-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content-small .news-title a {
    color: var(--white);
    text-decoration: none;
}

.news-content-small .news-title a:hover {
    color: var(--primary-green);
}

.news-content-small .news-author {
    font-size: 11px;
    color: var(--gray-light);
    margin-top: 5px;
}

/* News Info */
.news-info {
    background-color: rgba(0, 255, 136, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: var(--primary-green);
    font-size: 14px;
    border-left: 3px solid var(--primary-green);
}

.news-info i {
    margin-right: 8px;
}

/* Sorting Info */
.sorting-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: var(--gray-light);
    font-size: 13px;
    border-left: 3px solid var(--gray);
}

.sorting-info i {
    margin-right: 8px;
    color: var(--primary-green);
}

/* ==============================
   PLAYER SECTION STYLES
   ============================== */

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.player-card {
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    border: 1px solid var(--dark-green);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
    border-color: var(--primary-green);
}

.player-photo-container {
    margin-bottom: 15px;
}

.player-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
    background-color: var(--black);
}

.player-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.player-team {
    font-size: 12px;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.player-info {
    font-size: 11px;
    color: var(--gray-light);
    line-height: 1.4;
}

/* ==============================
   TRANSFER SECTION STYLES - PREMIUM
   ============================== */

.transfers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.transfer-card {
    background: linear-gradient(145deg, #131313, #0a0a0a);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.transfer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0.5;
}

.transfer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    border-color: var(--primary-green);
}

.transfer-card:hover .transfer-player-photo {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.transfer-header {
    display: flex;
    gap: 18px;
    align-items: center;
}

.transfer-player-photo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    /* Square with rounded corners for a modern look */
    overflow: hidden;
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex: 0 0 70px;
    transition: all 0.4s ease;
}

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

.transfer-player-details {
    flex: 1;
}

.transfer-player-name {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.transfer-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 6px;
    color: var(--primary-green);
    font-size: 11px;
    font-weight: 700;
}

.transfer-flow {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 15px;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.transfer-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 0;
}

.transfer-team-label {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--gray-light);
    letter-spacing: 1px;
    margin-bottom: -4px;
}

.transfer-team-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 4px;
    transition: all 0.3s ease;
}

.transfer-card:hover .transfer-team-logo {
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.transfer-team-name {
    font-size: 12px;
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.transfer-arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-green);
}

.transfer-arrow-container i {
    font-size: 20px;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(5px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.5;
    }
}

.transfer-footer {
    display: flex;
    justify-content: center;
}

.transfer-status {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    background: var(--primary-green);
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: 1px;
}

/* ==============================
   TEAM SECTION STYLES
   ============================== */

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.team-card {
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    border: 1px solid var(--dark-green);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
    border-color: var(--primary-green);
}

.team-logo-container {
    margin-bottom: 20px;
}

.team-logo-lg {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    padding: 5px;
    background-color: var(--black);
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.team-achievement,
.team-label {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

/* Match Detail Modal */
.match-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2001;
    overflow-y: auto;
    padding: 20px;
}

.match-modal-content {
    background-color: var(--gray-dark);
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

.match-modal-header {
    background-color: var(--dark-green);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-modal-header h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.match-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.match-modal-close:hover {
    color: var(--primary-green);
    background-color: rgba(255, 255, 255, 0.1);
}

.match-modal-body {
    padding: 20px;
}

/* Match Tabs */
.match-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray);
    padding-bottom: 10px;
}

.match-tab {
    background: none;
    border: none;
    color: var(--gray-light);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.match-tab:hover {
    color: var(--primary-green);
}

.match-tab.active {
    color: var(--primary-green);
    background-color: rgba(0, 255, 136, 0.1);
    border-bottom: 2px solid var(--primary-green);
}

.match-tab-content {
    display: none;
}

.match-tab-content.active {
    display: block;
}

/* Match Header in Modal */
.match-detail-header {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.match-teams-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.team-large {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-logo-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    padding: 5px;
    background-color: var(--black);
}

.team-large h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.vs-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.vs-text-large {
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.score-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    background-color: var(--black);
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
}

.match-info {
    color: var(--gray-light);
    font-size: 14px;
}

.match-info p {
    margin: 5px 0;
}

/* Goals Content */
.goals-list {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.goal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--gray);
}

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

.goal-player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.goal-player-name {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.goal-player-number {
    background-color: var(--primary-green);
    color: var(--black);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.goal-time {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
}

/* Timeline Content */
.timeline-filter {
    margin-bottom: 20px;
}

.timeline-filter select {
    background-color: var(--black);
    border: 1px solid var(--gray);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    width: 200px;
    font-family: 'Montserrat', sans-serif;
}

.timeline-list {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.timeline-half {
    margin-bottom: 20px;
}

.timeline-half-title {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gray);
}

.timeline-event {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-event:last-child {
    border-bottom: none;
}

.timeline-time {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.timeline-player {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.timeline-player-name {
    color: var(--white);
    font-size: 14px;
}

.timeline-player-number {
    background-color: var(--primary-green);
    color: var(--black);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.timeline-event-type {
    font-size: 12px;
    color: var(--gray-light);
    padding: 2px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Lineups Content */
.lineups-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.team-lineup {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.team-lineup h5 {
    color: var(--primary-green);
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.player-lineup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.player-lineup-item:hover {
    background-color: rgba(0, 255, 136, 0.1);
}

.player-photo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dark-green);
    background-color: var(--black);
}

.player-info-lineup {
    flex: 1;
}

.player-name-lineup {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.player-number-lineup {
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 600;
}

.player-search {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.player-search input {
    flex: 1;
    padding: 10px;
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.player-search button {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none;
    color: var(--black);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.player-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.3);
}

/* Site Footer */
.site-footer {
    position: relative;
    padding: 0;
    margin-top: 36px;
}

.main-content-dashboard > .site-footer {
    margin-top: auto;
}

.dashboard-wrapper + .site-footer {
    margin-left: 240px;
}

.site-footer .container {
    position: relative;
    max-width: none;
    padding: 0;
}

.site-footer__shell {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.18), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(59, 130, 246, 0.16), transparent 28%),
        linear-gradient(145deg, var(--navy-dark, #0a1628) 0%, var(--navy, #0f2744) 56%, #091120 100%);
    border-top: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 0;
    box-shadow: none;
}

.site-footer__shell::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    pointer-events: none;
}

.site-footer__graphic {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.65;
}

.site-footer__wire {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.22), transparent);
    transform-origin: center;
}

.site-footer__wire--one {
    width: 58%;
    top: 18%;
    right: -8%;
    transform: rotate(-61deg);
}

.site-footer__wire--two {
    width: 72%;
    top: 54%;
    right: -10%;
    transform: rotate(-27deg);
}

.site-footer__wire--three {
    width: 46%;
    top: 67%;
    right: 16%;
    transform: rotate(-31deg);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 34px;
    padding: 34px 32px 24px 52px;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 390px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-footer__logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.22));
    flex-shrink: 0;
}

.site-footer__description {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
    max-width: 38ch;
}

.site-footer__contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.site-footer__contact-pill:hover {
    color: var(--gold-light, #fbbf24);
    border-color: rgba(245, 158, 11, 0.48);
    background: rgba(30, 91, 184, 0.18);
    transform: translateY(-2px);
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__social {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-footer__social:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.52);
    box-shadow: 0 10px 24px rgba(10, 22, 40, 0.28);
}

.site-footer__social--youtube:hover {
    background: linear-gradient(135deg, #9f1239 0%, #dc2626 100%);
}

.site-footer__social--instagram:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #f59e0b 100%);
}

.site-footer__social--mail:hover {
    background: linear-gradient(135deg, var(--navy-light, #1a3a5c) 0%, var(--blue-accent, #3b82f6) 100%);
}

.site-footer__social--whatsapp:hover {
    background: linear-gradient(135deg, var(--navy, #0f2744) 0%, var(--gold, #f59e0b) 100%);
}

.site-footer__top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.site-footer__top:hover {
    color: var(--gold-light, #fbbf24);
    border-color: var(--gold, #f59e0b);
    background: rgba(245, 158, 11, 0.1);
}

.site-footer__nav {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.site-footer__group h3 {
    margin-bottom: 14px;
    color: var(--gold-light, #fbbf24);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-footer__links {
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer__links a::before {
    content: '';
    width: 10px;
    height: 1px;
    background: rgba(245, 158, 11, 0.58);
    transition: width 0.3s ease, background 0.3s ease;
}

.site-footer__links a:hover {
    color: var(--gold-light, #fbbf24);
    transform: translateX(4px);
}

.site-footer__links a:hover::before {
    width: 18px;
    background: var(--gold-light, #fbbf24);
}

.site-footer__bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 18px 11px;
    background: linear-gradient(90deg, var(--gold, #f59e0b) 0%, var(--gold-light, #fbbf24) 100%);
    color: var(--navy-dark, #0a1628);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

/* Chat Modal */
.chat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.chat-modal-header {
    background-color: var(--dark-green);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-modal-header h3 {
    color: var(--white);
    font-size: 18px;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.chat-close:hover {
    color: var(--primary-green);
}

.chat-modal-body {
    background-color: var(--gray-dark);
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    max-height: 80vh;
    overflow-y: auto;
}

/* Additional Styles */
.no-data {
    text-align: center;
    padding: 20px;
    color: var(--gray-light);
    font-style: italic;
}

/* Schedule Modal */
.schedule-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2002;
    overflow-y: auto;
    padding: 20px;
}

.schedule-modal-content {
    background-color: var(--gray-dark);
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    animation: modalSlideIn 0.3s ease;
}

.schedule-modal-header {
    background-color: var(--dark-green);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-modal-header h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.schedule-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.schedule-modal-close:hover {
    color: var(--primary-green);
    background-color: rgba(255, 255, 255, 0.1);
}

.schedule-modal-body {
    padding: 25px;
}

.schedule-detail-content {
    text-align: center;
}

.schedule-event-title {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.schedule-round {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.schedule-date-venue {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.schedule-date-venue p {
    color: var(--white);
    font-size: 14px;
    margin: 5px 0;
}

.schedule-teams-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.schedule-team-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.team-logo-large-modal {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    padding: 5px;
    background-color: var(--black);
}

.schedule-team-large h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.schedule-vs-large {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 700;
    padding: 0 20px;
}

.jersey-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.jersey-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jersey-input label {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.jersey-input span {
    color: var(--primary-green);
    font-size: 14px;
}

.schedule-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
}

.schedule-share h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.share-btn-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn-modal.whatsapp {
    background: #25D366;
    color: white;
}

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

.share-btn-modal.telegram {
    background: #0088cc;
    color: white;
}

.share-btn-modal.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn-modal:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .match-table {
        min-width: 900px;
    }
}

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

    .players-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .teams-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {

    /* Top Navbar */
    .top-navbar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .news-ticker {
        margin: 10px 0;
        order: 3;
        width: 100%;
    }

    /* Main Navbar */
    .nav-menu {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: var(--gray-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Match Cards */
    .match-card-wrapper {
        width: 260px;
    }

    /* Section Headers */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-tabs {
        align-self: stretch;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

    .section-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-button {
        flex-shrink: 0;
    }

    /* Match Table */
    .match-table-container {
        margin: 15px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .match-table th,
    .match-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .team-logo-wrapper {
        width: 30px;
        height: 30px;
    }

    .team-name-sm {
        font-size: 13px;
        max-width: 100px;
    }

    .score-info {
        font-size: 18px;
    }

    .event-badge,
    .round-info {
        max-width: 140px;
    }

    /* Players Grid */
    .players-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .player-card {
        padding: 15px;
    }

    .player-photo {
        width: 80px;
        height: 80px;
    }

    /* Teams Grid */
    .teams-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .team-card {
        padding: 20px;
    }
    /* Site Footer */
    .dashboard-wrapper + .site-footer {
        margin-left: 0;
    }

    .site-footer {
        padding-top: 0;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
        text-align: center;
    }

    .site-footer__brand {
        max-width: none;
        align-items: center;
    }

    .site-footer__logo {
        justify-content: center;
    }

    .site-footer__description {
        max-width: 45ch;
        margin: 0 auto;
    }

    .site-footer__contact-list {
        justify-content: center;
    }

    .site-footer__socials {
        justify-content: center;
    }

    .site-footer__nav {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .site-footer__bar {
        padding: 12px 20px;
        justify-content: center;
        text-align: center;
    }

    /* Scroll Controls */
    .scroll-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .match-card-wrapper {
        width: 240px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 15px;
    }

    .news-title {
        font-size: 16px;
    }

    .match-table th,
    .match-table td {
        padding: 10px 6px;
        font-size: 12px;
    }

    .team-name-sm {
        max-width: 80px;
        font-size: 12px;
    }

    .vs-sm {
        font-size: 11px;
        padding: 0 5px;
    }

    .score-info {
        font-size: 16px;
        gap: 8px;
    }

    .date-info {
        font-size: 12px;
    }

    .time-info {
        font-size: 11px;
    }

    .btn-view {
        padding: 6px 12px;
        font-size: 11px;
    }

    .players-grid {
        grid-template-columns: 1fr 1fr;
    }

    .teams-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }

    .tab-button {
        padding: 6px 12px;
        font-size: 12px;
    }

    .share-buttons-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        padding: 34px 20px 24px;
        gap: 36px;
    }

    .site-footer__logo {
        font-size: 22px;
        gap: 12px;
    }

    .site-footer__logo img {
        width: 54px;
        height: 54px;
    }

    .site-footer__description {
        font-size: 13px;
        line-height: 1.6;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .site-footer__group h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .site-footer__links a {
        font-size: 13px;
    }

    .site-footer__contact-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .site-footer__contact-pill {
        width: auto;
        min-width: 240px;
        justify-content: center;
    }

    .site-footer__socials {
        gap: 12px;
        justify-content: center;
    }

    .site-footer__social {
        width: 36px;
        height: 36px;
    }

    .site-footer__top {
        width: auto;
        margin-top: 8px;
        padding: 10px 20px;
        font-size: 11px;
    }

    .site-footer__bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 20px;
        font-size: 10px;
        gap: 8px;
    }
}

/* Print Styles */
@media print {

    .chat-button,
    .scroll-controls,
    .section-tabs,
    .btn-view,
    .btn-see-more {
        display: none !important;
    }

    .match-table {
        border: 1px solid #000;
    }

    .match-table th {
        background-color: #f0f0f0 !important;
        color: #000 !important;
    }
}

/* =========================================
   PRO GOAL DISPLAY STYLES
   ========================================= */
.pro-goals-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.pro-goals-container::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
    z-index: 1;
}

.goal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.goal-side {
    flex: 1;
    display: flex;
    align-items: center;
    opacity: 0.3;
    /* Faded for non-scoring side */
    transition: all 0.3s ease;
}

.goal-side.active {
    opacity: 1;
    transform: scale(1.02);
}

.team-1-side {
    justify-content: flex-end;
    padding-right: 25px;
    text-align: right;
}

.team-2-side {
    justify-content: flex-start;
    padding-left: 25px;
    text-align: left;
}

.goal-time-pill {
    background: #fff;
    color: #0A2463;
    /* Primary Color */
    font-weight: 800;
    font-size: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #f5f7fa;
}

.goal-details {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.team-1-side .goal-details {
    flex-direction: row;
}

.team-2-side .goal-details {
    flex-direction: row-reverse;
}

.goal-player-name {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
}

.goal-player-number {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.goal-icon {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.no-data {
    text-align: center;
    padding: 20px;
    color: #888;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 12px;
}

/* ==============================
   RECENT WINNERS PREMIUM STYLES
   ============================== */

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.winner-premium-card {
    position: relative;
    background: linear-gradient(145deg, #131313, #0a0a0a);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 40px 25px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.winner-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.winner-premium-card:hover .winner-bg-glow {
    opacity: 1;
}

.winner-premium-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-green);
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.15);
}

.winner-trophy-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #ffd700;
    /* Gold */
    opacity: 0.2;
    transform: rotate(15deg);
    transition: all 0.5s ease;
}

.winner-premium-card:hover .winner-trophy-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.winner-premium-card .team-logo-container {
    width: 130px;
    height: 130px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    padding: 5px;
}

.team-logo-premium {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: #000;
    border: 3px solid #1a1a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.winner-premium-card:hover .team-logo-premium {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
}

.winner-info {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.winner-info .team-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.05);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(0, 255, 136, 0.15);
    transition: all 0.4s ease;
}

.winner-premium-card:hover .achievement-badge {
    background: var(--primary-green);
    color: #000;
    border-color: var(--primary-green);
}

.winner-footer {
    margin-top: auto;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.winner-premium-card:hover .winner-footer {
    opacity: 1;
}

.view-profile {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.view-profile i {
    transition: transform 0.3s ease;
}

.winner-premium-card:hover .view-profile i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .winners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
