/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #4CAF50;
    --dark-green: #388E3C;
    --light-green: #81C784;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #212121;
    --text-light: #757575;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.logo-number {
    background: var(--dark-gray);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

/* Content Wrapper for Home Page */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sidebar-column {
    position: sticky;
    top: 2rem;
}

/* Home Page Specific Styles */
.matches-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.match-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.match-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.match-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #424242 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.league-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.match-time .live-indicator {
    background: #ff4444;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.match-time .match-clock {
    font-weight: 600;
    font-size: 0.9rem;
}

.match-content {
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.team.away-team {
    align-items: center;
}

.team-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.team-logo.default-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    transition: var(--transition);
}

.team-logo.default-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.live-match-content .team-logo.default-logo {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.league-logo.default-logo {
    width: 30px;
    height: 30px;
    font-size: 1rem;
}

/* Fix for real team logos - more specific */
.match-card .team-logo img,
.team.home .team-logo img,
.team.away .team-logo img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    background: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

.live-match-content .team-logo img {
    width: 60px !important;
    height: 60px !important;
}

.league-header .league-logo img,
.league-info .league-logo img {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    background: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Ensure team-logo container doesn't hide images */
.team-logo {
    position: relative;
    display: inline-block;
    overflow: visible !important;
}

.team-logo img {
    max-width: none !important;
    max-height: none !important;
    min-width: auto !important;
    min-height: auto !important;
}

.team-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.match-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.score-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.score-separator {
    color: var(--text-light);
    font-size: 1.5rem;
}

.vs-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.match-result,
.match-status,
.match-minute {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.match-minute {
    color: #ff4444;
    font-weight: 600;
}

.match-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.match-details-btn,
.watch-live-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.match-details-btn {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.match-details-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.watch-live-btn {
    background: #ff4444;
    color: var(--white);
    border: 1px solid #ff4444;
}

.watch-live-btn:hover {
    background: #cc0000;
    border-color: #cc0000;
}

/* Live Streams Grid */
.live-streams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stream-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stream-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.stream-thumbnail {
    position: relative;
    overflow: hidden;
}

.stream-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.stream-card:hover .stream-thumbnail img {
    transform: scale(1.05);
}

.live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff4444;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.quality-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stream-info {
    padding: 1.5rem;
}

.stream-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.viewers-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.watch-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.watch-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.news-card.featured .news-image img {
    height: 100%;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.news-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.news-content h3 a:hover {
    color: var(--primary-green);
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.video-card:hover .play-button {
    background: var(--primary-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.video-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.video-info h3 a:hover {
    color: var(--primary-green);
}

.video-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.views,
.upload-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.video-category {
    margin-top: auto;
}

.category-tag {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff9800;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-videos {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin: 0 auto;
}

.load-more-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.video-card {
    cursor: pointer;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card .video-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card .video-info h3 {
    margin-bottom: 0.75rem;
}

/* Date Navigation */
.date-navigation {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.date-navigation .container {
    padding: 1.5rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.date-tabs {
    display: flex;
    gap: 1rem;
}

.date-tab {
    background: var(--light-gray);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.date-tab:hover,
.date-tab.active {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.current-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 600;
}

.section-header h2 i {
    color: var(--primary-green);
}

.view-all {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--dark-green);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* Matches Section */
.matches-section {
    margin-bottom: 3rem;
}

.league-group {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.league-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #424242 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.league-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.league-header h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
}

.league-country {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.matches-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.match-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--white);
    width: 100%;
    min-height: 80px;
}

.match-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.match-card:last-child {
    margin-bottom: 0;
}

.match-time {
    text-align: center;
    min-width: 80px;
}

.match-time .time {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.status.live {
    background: #ff4444;
    color: var(--white);
    animation: pulse 2s infinite;
}

.status.upcoming {
    background: var(--primary-green);
    color: var(--white);
}

.status.finished {
    background: var(--text-light);
    color: var(--white);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    flex: 1;
}

.team {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team.away {
    flex-direction: row-reverse;
    text-align: left;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.team-name {
    font-weight: 600;
    color: var(--text-dark);
}

.match-score {
    text-align: center;
    min-width: 80px;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.vs {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.minute {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.match-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.action-btn {
    background: var(--light-gray);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.action-btn:hover {
    transform: translateY(-2px);
}

.live-btn:hover {
    background: #ff4444;
    color: var(--white);
}

.stats-btn:hover,
.preview-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.highlights-btn:hover {
    background: var(--dark-green);
    color: var(--white);
}

.notify-btn:hover {
    background: #ff9800;
    color: var(--white);
}

/* Live Streaming Section */
.live-section {
    margin-bottom: 3rem;
}

.live-streams {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.live-streams .live-match-card.featured {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 1rem;
}

.live-streams-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Live Match Card - New Design */
.live-match-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.live-match-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.live-match-card.featured {
    grid-column: 1 / -1;
    max-width: none;
    width: 100%;
    margin: 0;
}

/* Live Match Header */
.live-match-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #424242 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-match-header .league-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-match-header .league-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.live-match-header .league-details h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.live-match-header .league-details span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-indicator {
    background: #ff4444;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.live-indicator i {
    font-size: 0.8rem;
}

.viewers-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Live Match Content */
.live-match-content {
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.live-match-content .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.live-match-content .team.away-team {
    align-items: center;
}

.live-match-content .team-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.live-match-content .team-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 120px;
}

.live-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.home-score,
.away-score {
    min-width: 50px;
    text-align: center;
}

.score-separator {
    color: var(--text-light);
    font-size: 2rem;
}

.match-time {
    background: #ff4444;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

/* Live Match Footer */
.live-match-footer {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.match-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stadium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.stadium i {
    color: var(--primary-green);
}

.quality {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quality-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.language {
    color: var(--text-light);
    font-size: 0.9rem;
}

.watch-live-btn {
    background: #ff4444;
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.watch-live-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.watch-live-btn i {
    font-size: 0.8rem;
}

/* Old Stream Card Styles (for upcoming matches) */
.stream-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stream-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.stream-card.featured {
    grid-column: 1 / -1;
}

.stream-thumbnail {
    position: relative;
    overflow: hidden;
}

.stream-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.stream-card:hover .stream-thumbnail img {
    transform: scale(1.05);
}

.live-indicator.upcoming {
    background: var(--primary-green);
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stream-info {
    padding: 1.5rem;
}

.stream-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.stream-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stream-quality {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stream-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 0.5rem;
}

.stream-time .score {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.no-content {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
    background: var(--light-gray);
    border-radius: var(--border-radius);
    grid-column: 1 / -1;
}

.no-content i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.no-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.no-content small {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* News Section */
.news-section {
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.news-card.featured .news-image img {
    height: 100%;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Featured Video Section */
.featured-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.featured-video-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.featured-video-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #66BB6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 15px;
}

.featured-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.featured-video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.featured-video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    background: #000;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(76, 175, 80, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(76, 175, 80, 0.4));
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.play-button-large::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.play-overlay:hover .play-button-large {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
}

.video-duration-large {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.video-embed {
    aspect-ratio: 16/9;
}

.video-embed iframe,
.video-embed video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.featured-video-info {
    padding: 20px 0;
}

.video-category-large {
    margin-bottom: 20px;
}

.category-tag-large {
    background: linear-gradient(135deg, var(--primary-color), #66BB6A);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-video-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
}

.featured-video-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.featured-video-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
    font-size: 14px;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.featured-video-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), #66BB6A);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.action-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.action-btn.secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.featured-video-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.featured-video-tags i {
    color: var(--primary-color);
}

.video-tag {
    background: rgba(76, 175, 80, 0.2);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Videos Section */
.videos-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.videos-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.video-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.video-card.featured .video-thumbnail img {
    height: 100%;
}

.video-card.featured .video-info {
    padding: 2rem;
}

.video-card.featured .video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-card.featured .video-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.video-card.featured .video-meta {
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-card.featured .video-meta span {
    font-size: 0.95rem;
}

.video-card.featured .video-category {
    margin-top: 0;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
}

.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: #888;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-category {
    display: flex;
    justify-content: flex-start;
}

.category-tag {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.load-more-videos {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-content i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-content p {
    font-size: 18px;
    margin-bottom: 10px;
}

.no-content small {
    color: #999;
}

/* Responsive Design for Featured Video */
@media (max-width: 1024px) {
    .featured-video-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-video-section .section-header h2 {
        font-size: 2rem;
    }
    
    .featured-video-title {
        font-size: 1.8rem;
    }
    
    .featured-video-meta {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .featured-video-section {
        padding: 40px 0;
    }
    
    .featured-video-section .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .featured-video-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .featured-video-title {
        font-size: 1.5rem;
    }
    
    .play-button-large {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .featured-video-actions {
        justify-content: center;
    }
    
    .action-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #424242 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo .logo-number {
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.contact-info i {
    color: var(--primary-green);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding: 1.5rem 0;
    text-align: center;
    color: #ccc;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-logo .logo-number {
        font-size: 1.2rem;
        padding: 3px 8px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        right: 0;
        width: 100%;
        background: var(--primary-green);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .date-navigation .container {
        flex-direction: column;
        text-align: center;
    }
    
    .date-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .filter-buttons,
    .video-categories {
        width: 100%;
        justify-content: center;
    }
    
    .match-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .match-teams {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team.away {
        flex-direction: row;
    }
    
    .match-actions {
        justify-content: center;
    }
    
    .news-card.featured {
        grid-template-columns: 1fr;
    }
    
    .live-streams {
        grid-template-columns: 1fr;
    }
    
    .stream-card.featured {
        grid-column: 1;
    }
    
    /* Live Match Card Responsive */
    .live-match-card.featured {
        grid-column: 1;
        max-width: none;
    }
    
    .live-match-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .live-status {
        justify-content: center;
    }
    
    .live-match-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .match-center {
        order: -1;
    }
    
    .live-score {
        font-size: 2rem;
    }
    
    .live-match-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .match-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .watch-live-btn {
        width: 100%;
        justify-content: center;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-number {
        font-size: 1.2rem;
        padding: 3px 8px;
    }
    
    .date-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .match-card {
        padding: 0.75rem;
    }
    
    .team-name {
        font-size: 0.9rem;
    }
    
    .action-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .news-content,
    .video-info,
    .stream-info {
        padding: 1rem;
    }
    
    .footer-content {
        padding: 2rem 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-green);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* Match Details Specific Styles */

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--dark-green);
}

.breadcrumb-nav i {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb-nav span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Match Header */
.match-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 4rem 0;
    margin-bottom: 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.match-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-hover);
    width: 100%;
    margin: 0 auto;
    transform: translateY(-20px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.league-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.league-details h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.league-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.match-main-info {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    min-height: 200px;
}

.team-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-result {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.form-result.win {
    background: var(--primary-green);
}

.form-result.draw {
    background: #ff9800;
}

.form-result.loss {
    background: #f44336;
}

.match-score-info {
    text-align: center;
    min-width: 200px;
}

.match-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff4444;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.score-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1;
}

.score-separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.stadium-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Match Tabs */
.match-tabs {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background: var(--light-gray);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--white);
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

/* Tab Content */
.tab-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tab-panel {
    display: none;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Overview Tab */
.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.commentary-section h3,
.quick-stats h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.commentary-section h3 i,
.quick-stats h3 i {
    color: var(--primary-green);
}

.commentary-feed {
    max-height: 500px;
    overflow-y: auto;
    padding-left: 1rem;
}

.commentary-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-right: 4px solid var(--border-color);
}

.commentary-item.goal {
    border-right-color: var(--primary-green);
    background: rgba(76, 175, 80, 0.1);
}

.commentary-time {
    min-width: 40px;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.commentary-text {
    flex: 1;
    line-height: 1.5;
}

.commentary-text strong {
    color: var(--text-dark);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.stat-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.home-value {
    color: var(--primary-green);
}

.away-value {
    color: var(--dark-green);
}

.stat-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    display: flex;
}

.stat-fill {
    height: 100%;
    transition: var(--transition);
}

.stat-fill.home {
    background: var(--primary-green);
}

.stat-fill.away {
    background: var(--dark-green);
}

.stat-label {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Lineup Tab */
.formation-display h3 {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.formations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-formation h4 {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pitch {
    background: linear-gradient(90deg, #4CAF50 0%, #66BB6A 100%);
    border-radius: var(--border-radius);
    padding: 2rem 1rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.pitch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
}

.formation-line {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.player {
    background: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: var(--transition);
    cursor: pointer;
}

.player:hover {
    transform: scale(1.1);
}

.player.goalkeeper {
    background: #ff9800;
    color: var(--white);
}

.player-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.player.goalkeeper .player-number {
    color: var(--white);
}

.player-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-top: 0.25rem;
}

.player.goalkeeper .player-name {
    color: var(--white);
}

.substitutes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.subs-section h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
}

.sub-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.sub-number {
    background: var(--primary-green);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.sub-name {
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.sub-position {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Stats Tab */
.detailed-stats h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stats-category {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.stats-category h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.stat-row {
    margin-bottom: 1.5rem;
}

.stat-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-comparison {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.home-stat,
.away-stat {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 40px;
    text-align: center;
}

.home-stat {
    color: var(--primary-green);
}

.away-stat {
    color: var(--dark-green);
}

.stat-bar-container {
    height: 20px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stat-bar-bg {
    height: 100%;
    display: flex;
}

.stat-bar-fill {
    height: 100%;
    transition: var(--transition);
}

/* Timeline Tab */
.match-timeline h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-event {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    position: relative;
}

.timeline-event::before {
    content: '';
    position: absolute;
    right: 70px;
    top: 0;
    bottom: -2rem;
    width: 2px;
    background: var(--border-color);
}

.timeline-event:last-child::before {
    display: none;
}

.event-time {
    min-width: 50px;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    text-align: center;
}

.event-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.event-icon.goal {
    background: var(--primary-green);
}

.event-icon.substitution {
    background: #2196F3;
}

.event-icon.yellow-card {
    background: #ff9800;
}

.event-icon.red-card {
    background: #f44336;
}

.event-details {
    flex: 1;
}

.event-details strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.event-details p {
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Head to Head Tab */
.h2h-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.h2h-summary {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.h2h-team {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.h2h-team img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.h2h-record {
    display: flex;
    gap: 2rem;
}

.record-item {
    text-align: center;
}

.record-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.record-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.recent-matches h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.recent-match {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.match-date {
    font-size: 0.9rem;
    color: var(--text-light);
    min-width: 120px;
}

.match-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.match-result .team {
    font-weight: 600;
    color: var(--text-dark);
}

.match-result .score {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.match-venue {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: left;
    min-width: 120px;
}

/* Animation for live updates */
@keyframes liveUpdate {
    0% { background-color: rgba(76, 175, 80, 0.1); }
    50% { background-color: rgba(76, 175, 80, 0.3); }
    100% { background-color: rgba(76, 175, 80, 0.1); }
}

.live-update {
    animation: liveUpdate 2s ease-in-out;
}

/* Goal animation */
@keyframes goalPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.goal-animation {
    animation: goalPulse 2s ease-in-out;
    color: #ff4444 !important;
}

/* Additional responsive styles for match details */
@media (max-width: 768px) {
    .match-main-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .match-actions {
        flex-direction: column;
        align-items: center;
    }

    .match-actions .action-btn {
        width: 100%;
        max-width: 300px;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        border-bottom: none;
        border-right: 3px solid transparent;
    }

    .tab-btn:hover,
    .tab-btn.active {
        border-right-color: var(--primary-green);
        border-bottom-color: transparent;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .formations {
        grid-template-columns: 1fr;
    }

    .pitch {
        min-height: 300px;
        padding: 1rem 0.5rem;
    }

    .player {
        width: 50px;
        height: 50px;
    }

    .player-name {
        font-size: 0.6rem;
    }

    .substitutes {
        grid-template-columns: 1fr;
    }

    .stats-categories {
        grid-template-columns: 1fr;
    }

    .h2h-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .h2h-team {
        justify-content: center;
    }

    .recent-match {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .match-result {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .match-info-card {
        padding: 1rem;
    }

    .score-display {
        font-size: 2rem;
    }

    .tab-panel {
        padding: 1rem;
    }

    .commentary-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .commentary-time {
        min-width: auto;
    }

    .timeline-event {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .timeline-event::before {
        display: none;
    }

    .event-time {
        min-width: auto;
    }
}

/* Article Page Styles */

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.article-main {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Article Header */
.article-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.article-category {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-badge.secondary {
    background: var(--dark-green);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-date,
.article-time,
.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-actions {
    display: flex;
    gap: 1rem;
}

.article-actions .action-btn {
    background: var(--light-gray);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.article-actions .action-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Featured Image */
.article-featured-image {
    margin-bottom: 2rem;
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.image-caption {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.image-caption p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.image-credit {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Article Summary */
.article-summary {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-right: 4px solid var(--primary-green);
}

.article-summary h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-summary p {
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

/* Article Content */
.article-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-content h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-quote {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-right: 4px solid var(--primary-green);
    margin: 2rem 0;
    font-style: italic;
}

.article-quote p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.article-quote cite {
    color: var(--primary-green);
    font-weight: 600;
    font-style: normal;
}

.article-highlight {
    background: rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-green);
    margin: 2rem 0;
}

.article-highlight h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-highlight ul {
    list-style: none;
    padding: 0;
}

.article-highlight li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    display: flex;
    justify-content: space-between;
}

.article-highlight li:last-child {
    border-bottom: none;
}

/* Article Gallery */
.article-gallery {
    margin: 2rem 0;
}

.article-gallery h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 1rem;
    font-size: 0.9rem;
}

/* Article Tags */
.article-tags {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.article-tags h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.tag:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Article Footer */
.article-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.article-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--primary-green);
}

.social-share h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons .share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--white);
}

.share-buttons .share-btn:hover {
    transform: translateY(-2px);
}

.share-buttons .share-btn.facebook {
    background: #1877F2;
}

.share-buttons .share-btn.twitter {
    background: #1DA1F2;
}

.share-buttons .share-btn.whatsapp {
    background: #25D366;
}

.share-buttons .share-btn.linkedin {
    background: #0A66C2;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.comments-section h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.comment-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.comment-form h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.comment-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group textarea,
.form-group input {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.submit-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
}

.comment-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-action {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.comment-action:hover {
    color: var(--primary-green);
}

.load-more-comments {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.load-more-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.widget-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-article {
    display: flex;
    gap: 1rem;
}

.related-image {
    flex-shrink: 0;
}

.related-image img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.related-content h4 {
    margin-bottom: 0.5rem;
}

.related-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: var(--transition);
}

.related-content h4 a:hover {
    color: var(--primary-green);
}

.related-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Popular Articles */
.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-article {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.popular-rank {
    background: var(--primary-green);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: var(--transition);
}

.popular-content h4 a:hover {
    color: var(--primary-green);
}

.popular-stats {
    margin-top: 0.5rem;
}

.popular-stats span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popular-stats i {
    color: var(--primary-green);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--white);
    color: var(--primary-green);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Ad Widget */
.ad-widget {
    background: var(--light-gray);
    border: 2px dashed var(--border-color);
}

.ad-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.ad-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ad-placeholder span {
    font-size: 0.9rem;
}

/* Responsive Design for Article Page */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-main {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-actions {
        flex-direction: column;
    }

    .article-actions .action-btn {
        width: 100%;
        justify-content: center;
    }

    .article-featured-image img {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-buttons .share-btn {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comment-item {
        flex-direction: column;
        gap: 1rem;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .related-article {
        flex-direction: column;
    }

    .related-image img {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .article-main {
        padding: 1rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .sidebar-widget {
        padding: 1rem;
    }
}

/* Video Page Styles */
.video-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.video-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Video Player */
.video-player-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-player {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(76, 175, 80, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay-large:hover {
    background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(76, 175, 80, 0.4));
}

.play-button-xl {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.play-button-xl::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.play-overlay-large:hover .play-button-xl {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
}

.video-duration-xl {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.video-embed {
    width: 100%;
    height: 100%;
}

.video-embed iframe,
.video-embed video {
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Info Section */
.video-info-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.video-category-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-badge-large {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.featured-badge-large {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.video-meta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.video-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.video-stats .stat-item i {
    color: var(--primary-green);
}

.video-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-actions .action-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-actions .action-btn.primary {
    background: var(--primary-green);
    color: white;
}

.video-actions .action-btn.primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.video-actions .action-btn.secondary {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.video-actions .action-btn.secondary:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.video-actions .action-btn.liked {
    background: var(--primary-green);
    color: white;
}

.video-actions .action-btn.saved {
    background: #ff9800;
    color: white;
}

.video-description-section,
.video-tags-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.video-description-section:last-child,
.video-tags-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.video-description-section h3,
.video-tags-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.video-description {
    color: var(--text-dark);
    line-height: 1.6;
}

.video-tags-section .tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.video-tag {
    background: var(--primary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.video-tag:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Video Comments Section */
.video-comments-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.video-comments-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.comment-form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.video-comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-form-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.comment-form-header textarea {
    flex: 1;
    min-height: 80px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: var(--transition);
}

.comment-form-header textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.cancel-btn,
.submit-comment-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.cancel-btn {
    background: var(--light-gray);
    color: var(--text-dark);
}

.cancel-btn:hover {
    background: var(--border-color);
}

.submit-comment-btn {
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-comment-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
}

.comment-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-action {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.comment-action:hover {
    color: var(--primary-green);
}

/* Related Videos */
.related-videos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-video-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.related-video-item:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.related-video-thumbnail {
    position: relative;
    width: 160px;
    height: 90px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.related-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.video-duration-small {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.related-video-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-video-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.related-video-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-video-info h4 a:hover {
    color: var(--primary-green);
}

.related-video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.related-video-meta .views,
.related-video-meta .date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Popular Videos */
.popular-videos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-video-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.popular-video-item:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.popular-rank {
    background: var(--primary-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-video-thumbnail {
    position: relative;
    width: 120px;
    height: 68px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.popular-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-video-info {
    flex: 1;
}

.popular-video-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.popular-video-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.popular-video-info h4 a:hover {
    color: var(--primary-green);
}

.popular-video-stats {
    font-size: 0.8rem;
    color: var(--text-light);
}

.popular-video-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Video Page Responsive */
@media (max-width: 1024px) {
    .video-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-sidebar {
        order: 2;
    }
    
    .video-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-meta-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .video-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .video-actions {
        width: 100%;
        justify-content: center;
    }
    
    .video-actions .action-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
    
    .play-button-xl {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .comment-form-header {
        flex-direction: column;
    }
    
    .related-video-item {
        flex-direction: column;
    }
    
    .related-video-thumbnail {
        width: 100%;
        height: 150px;
    }
    
    .popular-video-item {
        flex-direction: column;
        text-align: center;
    }
    
    .popular-video-thumbnail {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .video-info-section,
    .video-comments-section {
        padding: 1rem;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    .video-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .video-actions {
        flex-direction: column;
    }
    
    .play-button-xl {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .video-duration-xl {
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* Single Match Page Styles */
.match-header-section {
    padding: 2rem 0;
    background: var(--light-gray);
}

.single-match-card {
    max-width: 800px;
    margin: 0 auto;
}

.single-match-card .match-content {
    padding: 2.5rem 2rem;
}

.single-match-card .team-logo {
    width: 60px;
    height: 60px;
}

.single-match-card .team-logo.default-logo {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.single-match-card .team-logo img {
    width: 60px !important;
    height: 60px !important;
}

.single-match-card .team-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.single-match-card .score-display {
    font-size: 2.5rem;
}

/* Enhanced Home Page Layout */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-column {
    min-height: 100vh;
}

.sidebar-column {
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

/* Enhanced Date Navigation */
.date-navigation {
    margin-bottom: 3rem;
    padding: 0;
}

.date-navigation .date-tabs {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    box-shadow: var(--shadow);
}

.date-navigation .current-date {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

/* Enhanced Section Spacing */
.matches-section,
.live-section,
.news-section,
.videos-section {
    margin-bottom: 4rem;
}

/* Enhanced Match Cards */
.matches-container {
    gap: 2rem;
}

.match-card {
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.match-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
}

/* Enhanced Live Streams */
.live-streams {
    gap: 2.5rem;
}

.stream-card {
    border: 1px solid var(--border-color);
}

.stream-card:hover {
    border-color: var(--primary-green);
}

/* Enhanced News Grid */
.news-grid {
    gap: 2.5rem;
}

.news-card.featured {
    margin-bottom: 1rem;
}

/* Enhanced Videos Grid */
.videos-grid {
    gap: 2.5rem;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar-column {
        position: static;
        max-height: none;
        order: 2;
    }
    
    .main-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 15px;
    }
    
    .matches-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .live-streams,
    .news-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card.featured {
        grid-template-columns: 1fr;
    }
    
    .date-navigation .date-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .date-tab {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .matches-section,
    .live-section,
    .news-section,
    .videos-section {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .match-content {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .team-logo img {
        width: 50px;
        height: 50px;
    }
    
    .team-name {
        font-size: 0.9rem;
    }
    
    .score-display {
        font-size: 1.5rem;
    }
    
    .match-actions {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .match-details-btn,
    .watch-live-btn {
        width: 100%;
        justify-content: center;
    }
}
