/* FootballDaily.live - Main Stylesheet */

/* CSS Variables for Color Palette - Fresh & Modern */
:root {
    --primary-bg: #F1F5F9;      /* Light Blue-Gray - Main background */
    --primary-text: #0F172A;     /* Dark Blue - Primary text */
    --primary-text-alt: #64748B; /* Slate Gray - Secondary text */
    --surface-bg: #F1F5F9;       /* Light Blue-Gray surfaces */
    --accent-primary: #1E40AF;   /* Blue - Primary accent */
    --accent-primary-hover: #7C3AED; /* Purple - Hover state */
    --accent-secondary: #7C3AED; /* Purple - Secondary accent */
    --accent-black: #0F172A;     /* Dark Blue for dark elements */
    --highlight-gold: #10B981;   /* Emerald - Highlight color */
    --highlight-red: #EF4444;    /* Red - Alert/breaking news */
    --neutral-light: #E2E8F0;   /* Light Gray - Subtle backgrounds */
    --neutral-gray: #CBD5E1;     /* Medium Gray - Dividers and borders */
    --border-color: #CBD5E1;    /* Medium Gray borders */
    --disabled-color: #94A3B8;   /* Light Gray for disabled elements */
    --border-radius: 0;
    --box-shadow: 0 2px 10px rgba(30, 64, 175, 0.08);
    --box-shadow-hover: 0 6px 24px rgba(30, 64, 175, 0.12);
    --transition: all 0.3s ease;
}

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

/* Hide scrollbars for all browsers */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    background-color: var(--primary-bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--primary-text-alt);
    line-height: 1.6;
}

a { 
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
}

/* Header */
.header {
    background-color: var(--surface-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
    padding: 1.2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-height: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
    margin-right: auto !important;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 0;
}

.logo h1 {
    color: var(--primary-text);
    font-size: 1.8rem;
    margin: 0;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: var(--neutral-light);
    border: 2px solid var(--border-color);
    border-radius: 0;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.mobile-menu-toggle:hover .hamburger-line {
    background-color: white;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-text);
    border-radius: 0;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

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

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* Navigation */
.nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end !important;
    flex: 1;
    transition: var(--transition);
    align-items: center;
    margin-left: 2rem;
}

.nav a {
    color: var(--primary-text);
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 0;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.9rem;
    text-align: center;
    min-width: fit-content;
    position: relative;
    text-decoration: none;
    border: 2px solid transparent;
}

.nav a:hover {
    background-color: var(--neutral-light);
    color: var(--accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 66, 66, 0.3);
    border-color: var(--accent-primary);
}

.nav a:first-child {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(66, 66, 66, 0.4);
}

.nav a:first-child:hover {
    background-color: var(--accent-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(66, 66, 66, 0.5);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

/* Main Content Area */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* League Header */
.league-header {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 2rem;
}

.league-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
}

.league-description {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Blog Cards */
.blog-card {
    display: flex;
    background-color: var(--surface-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 66, 66, 0.1) 0%, rgba(66, 66, 66, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-primary);
}

.blog-card:hover::before {
    opacity: 1;
}

.article-image {
    flex: 0 0 200px;
    height: 150px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .article-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.article-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.article-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-tag {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(66, 66, 66, 0.3);
    cursor: pointer;
}

.category-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(66, 66, 66, 0.4);
    background: linear-gradient(135deg, var(--accent-primary-hover) 0%, var(--accent-primary) 100%);
}

.article-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-text);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    cursor: pointer;
}

.article-title:hover {
    color: var(--accent-primary-hover);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--primary-text-alt);
}

.author {
    font-weight: 500;
    color: var(--accent-primary);
    transition: color 0.3s ease;
}

.author:hover {
    color: var(--accent-primary-hover);
}

.date {
    color: var(--primary-text-alt);
    font-size: 0.85rem;
}

.article-excerpt {
    color: var(--primary-text-alt);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.blog-card:hover .article-excerpt {
    color: var(--primary-text);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: var(--surface-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 66, 66, 0.05) 0%, rgba(66, 66, 66, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.sidebar-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-primary);
}

.sidebar-widget:hover::before {
    opacity: 1;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-text);
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
    position: relative;
    z-index: 2;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: var(--neutral-light);
    color: var(--primary-text);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(66, 66, 66, 0.2);
    background-color: var(--surface-bg);
    transform: scale(1.02);
}

.search-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(66, 66, 66, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(66, 66, 66, 0.4);
    background: linear-gradient(135deg, var(--accent-primary-hover) 0%, var(--accent-primary) 100%);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.social-link.facebook { 
    background: linear-gradient(135deg, #1877F2 0%, #166FE5 100%);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}
.social-link.twitter { 
    background: linear-gradient(135deg, #1DA1F2 0%, #1A91DA 100%);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}
.social-link.pinterest { 
    background: linear-gradient(135deg, #E60023 0%, #D5001F 100%);
    box-shadow: 0 4px 15px rgba(230, 0, 35, 0.4);
}
.social-link.linkedin { 
    background: linear-gradient(135deg, #0077B5 0%, #006BA1 100%);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}
.social-link.instagram { 
    background: linear-gradient(135deg, #E4405F 0%, #D6336C 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.4);
}
.social-link.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.social-link:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover::after {
    width: 100px;
    height: 100px;
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.category-link {
    color: var(--primary-text-alt);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
    border: 1px solid transparent;
}

.category-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    transition: width 0.3s ease;
    border-radius: 0;
}

.category-link:hover {
    color: var(--accent-primary-hover);
    background-color: rgba(30, 64, 175, 0.1);
    border-color: var(--accent-primary);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.category-link:hover::before {
    width: 4px;
}

/* Breaking News Banner */
.breaking-news {
    background-color: var(--highlight-red);
    color: white;
    padding: 0.5rem 0;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--primary-bg) 100%);
    padding: 3rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.hero p {
    font-size: 1.2rem;
    color: var(--primary-text-alt);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* News Hero Section */
.news-hero {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.news-hero::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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.news-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--primary-text-alt);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background-color: var(--accent-primary);
    color: white;
}

/* Live Badge */
.live-badge {
    background-color: var(--highlight-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

/* Cards */
.card {
    background-color: var(--surface-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background-color: var(--neutral-light);
    border-top: 1px solid var(--border-color);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-item {
    background-color: var(--surface-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

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

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--primary-text-alt);
}

.news-category {
    background-color: var(--accent-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--primary-text-alt);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Live Scores */
.live-scores {
    background-color: var(--neutral-light);
    padding: 2rem 0;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--surface-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
}

.team {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-name {
    font-weight: 600;
    color: var(--primary-text);
}

.score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--highlight-gold);
}

.match-time {
    color: var(--primary-text-alt);
    font-size: 0.9rem;
}

/* Featured Section */
.featured-section {
    padding: 3rem 0;
    background-color: var(--neutral-light);
}

.featured-news {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.main-featured {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.main-featured img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.side-featured {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--surface-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.side-item:hover {
    transform: translateX(5px);
}

.side-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.side-content {
    flex: 1;
}

.side-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Footer */
.footer {
    background-color: var(--accent-black);
    color: 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 {
    color: white;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
}

.footer-section h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section a {
    color: #e0e0e0;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-primary);
    padding-left: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #e0e0e0;
}

.footer-bottom p {
    color: #e0e0e0;
    margin: 0;
}

/* Enhanced Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .blog-layout {
        gap: 3rem;
    }
    
    .container {
        max-width: 1200px;
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .blog-layout {
        gap: 2.5rem;
    }
    
    .container {
        max-width: 960px;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        order: -1;
    }
    
    .container {
        max-width: 720px;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sidebar {
        order: -1;
    }
    
    .container {
        max-width: 540px;
    }
}

/* Mobile Landscape (480px to 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sidebar {
        order: -1;
    }
    
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Mobile Portrait (320px to 479px) */
@media (max-width: 479px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .sidebar {
        order: -1;
    }
    
    .container {
        padding: 0 8px;
    }
}

/* Legacy Responsive Design */
@media (max-width: 1024px) {
    .nav {
        gap: 0.4rem;
    }
    
    .nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .blog-layout {
        gap: 2rem;
    }
    
    .article-image {
        flex: 0 0 180px;
        height: 140px;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        justify-content: flex-start !important;
        align-items: center;
        padding: 1rem 0;
        min-height: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 0.5rem;
        z-index: 1000;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav.nav-open {
        left: 0;
    }
    
    .nav a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
        text-align: center;
        border-radius: 0;
        margin: 0.2rem 0;
        min-width: auto;
        border: 2px solid var(--border-color);
        background-color: var(--neutral-light);
        display: block;
    }
    
    .nav a:first-child {
        background-color: var(--accent-primary);
        color: white;
        border-color: var(--accent-primary);
        box-shadow: 0 2px 8px rgba(66, 66, 66, 0.4);
    }
    
    .nav a:hover {
        background-color: var(--accent-primary);
        color: white;
        border-color: var(--accent-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(66, 66, 66, 0.4);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .news-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .news-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 200px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .featured-news {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .score-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .nav a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 90%;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .blog-card {
        flex-direction: column;
        margin-bottom: 1rem;
        border-radius: 0;
    }
    
    .article-image {
        flex: none;
        height: 200px;
        width: 100%;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .article-categories {
        margin-bottom: 0.6rem;
        gap: 0.3rem;
    }
    
    .category-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .article-meta {
        margin-bottom: 0.6rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .sidebar {
        order: -1;
        gap: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 0;
    }
    
    .search-form {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .search-input {
        border-radius: 0;
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .search-btn {
        border-radius: 0;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .category-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .league-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .league-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .league-description {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 0.8rem 0;
        gap: 0.8rem;
        min-height: 50px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .mobile-menu-toggle {
        width: 30px;
        height: 30px;
        padding: 4px;
    }
    
    .nav {
        padding-top: 70px;
    }
    
    .nav a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        width: 95%;
        max-width: 280px;
    }
    
    .blog-layout {
        gap: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .article-content {
        padding: 0.8rem;
    }
    
    .article-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .article-image {
        height: 180px;
    }
    
    .category-tag {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
    }
    
    .sidebar-widget {
        padding: 0.8rem;
    }
    
    .category-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .league-header {
        padding: 1rem 0.8rem;
    }
    
    .league-header h1 {
        font-size: 1.5rem;
    }
    
    .league-description {
        font-size: 0.9rem;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--neutral-light);
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination-link {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(66, 66, 66, 0.3);
}

.pagination-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 66, 66, 0.4);
    background: linear-gradient(135deg, var(--accent-primary-hover) 0%, var(--accent-primary) 100%);
}

.pagination-info {
    font-weight: 600;
    color: var(--primary-text);
    padding: 0.8rem 1.2rem;
    background-color: var(--surface-bg);
    border-radius: 0;
    border: 2px solid var(--border-color);
}

/* No Articles Message */
.no-articles {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--neutral-light);
    border-radius: 0;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.no-articles h3 {
    color: var(--primary-text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-articles p {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Article Title Links */
.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--accent-primary-hover);
}

/* Mobile Pagination */
@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .pagination-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .pagination-info {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .no-articles {
        padding: 2rem 1rem;
    }
    
    .no-articles h3 {
        font-size: 1.3rem;
    }
    
    .no-articles p {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Hide scrollbars utility class */
.hide-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* No Image Placeholder */
.no-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-gray) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    color: var(--primary-text-alt);
    font-size: 1.2rem;
}

.no-image-placeholder span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.no-image-placeholder p {
    margin: 0;
    font-weight: 500;
}

/* Blog Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: var(--surface-bg);
    margin: 2% auto;
    padding: 0;
    border-radius: 0;
    width: 90%;
    max-width: 800px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.5);
    animation: slideIn 0.3s ease-out;
    position: relative;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
    padding-right: 2rem;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.2);
}

.close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-meta span {
    background-color: var(--neutral-light);
    color: var(--primary-text);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-excerpt {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-primary);
}

.modal-excerpt p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-text);
    font-style: italic;
}

.modal-content-text {
    line-height: 1.8;
    color: var(--primary-text);
}

.modal-content-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-content-text p:last-child {
    margin-bottom: 0;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
        overflow-y: auto;
        /* Hide scrollbar for mobile */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer 10+ */
    }
    
    .modal-content::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
        padding-right: 1.5rem;
    }
    
    .close {
        right: 1rem;
        top: 1rem;
        font-size: 1.5rem;
        width: 25px;
        height: 25px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-meta {
        gap: 0.5rem;
    }
    
    .modal-meta span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .modal-excerpt {
        padding: 1rem;
    }
    
    .modal-excerpt p {
        font-size: 1rem;
    }
}

/* Search Functionality Enhancements - Preserves original design */
/* Original search styles are maintained above, these are just enhancements */

/* Enhanced hover effects for search button */
.search-btn:hover {
    transform: translateY(-1px);
}

.search-btn:active {
    transform: translateY(0);
}

.search-results-indicator {
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--neutral-light);
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.9rem;
    color: var(--primary-text-alt);
    animation: fadeInUp 0.5s ease-out;
}

.search-results-indicator button {
    margin-left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.search-results-indicator button:hover {
    background: var(--accent-primary-hover);
}

/* Search highlighting */
.search-highlight {
    background: var(--highlight-gold);
    padding: 0.1rem 0.2rem;
    border-radius: 0;
    font-weight: 600;
}

/* No results styling */
.no-articles {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--neutral-light);
    border: 1px solid var(--border-color);
    border-radius: 0;
    margin: 2rem 0;
}

.no-articles h3 {
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-articles p {
    color: var(--primary-text-alt);
    margin-bottom: 0.5rem;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-bg);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.3);
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.search-suggestions::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.suggestion-item {
    padding: 0.5rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
    font-size: 0.9rem;
    color: var(--primary-text);
}

.suggestion-item:hover {
    background: var(--neutral-light);
}

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

/* Search form positioning - handled above */

/* Enhanced search input focus - handled above */

/* Search results animation */
@keyframes searchFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results-indicator {
    animation: searchFadeIn 0.3s ease-out;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    left: 20px;
    top: 120px;
    transform: none;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.fab {
    position: relative;
    width: 140px;
    height: 50px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}

.fab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.fab:hover::before {
    opacity: 1;
}

.fab-icon {
    display: none;
}

.fab-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fab:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.fab:hover .fab-text {
    transform: translateY(0) scale(1.05);
}

.fab-preview {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.fab-preview:hover {
    background: linear-gradient(135deg, var(--accent-primary-hover) 0%, var(--accent-primary) 100%);
}

.fab-transfer {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.fab-transfer:hover {
    background: linear-gradient(135deg, var(--accent-primary-hover) 0%, var(--accent-primary) 100%);
}

/* Floating buttons animation */
@keyframes float {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        left: 15px;
        top: 110px;
        gap: 12px;
    }
    
    .fab {
        width: 120px;
        height: 45px;
        font-size: 0.8rem;
    }
    
    .fab-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        left: 10px;
        top: 100px;
        gap: 10px;
    }
    
    .fab {
        width: 100px;
        height: 40px;
        font-size: 0.75rem;
    }
    
    .fab-text {
        font-size: 0.75rem;
    }
}

/* Social Sharing Styles */
.social-share-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-gray);
}

.social-share-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-text);
    font-size: 1.2rem;
    font-weight: 600;
}

.social-share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn, .social-btn {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.share-btn::before, .social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.share-btn:hover, .social-btn:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-3px) scale(1.05);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.share-btn:hover::before, .social-btn:hover::before {
    left: 100%;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0D8BD9 100%);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.social-btn.twitter:hover {
    background: linear-gradient(135deg, #0D8BD9 0%, #1DA1F2 100%);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
    box-shadow: 0 4px 15px rgba(66, 103, 178, 0.3);
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, #365899 0%, #4267B2 100%);
    box-shadow: 0 8px 25px rgba(66, 103, 178, 0.4);
}

.share-btn:active, .social-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Match Previews Page Styling */
.preview-page {
    min-height: 80vh;
}

.preview-header {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.preview-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.preview-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* League Preview Section */
.league-preview-section {
    margin-bottom: 4rem;
}

.league-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--accent-primary);
    margin-bottom: 2rem;
}

.league-title {
    font-size: 2rem;
    color: var(--primary-text);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-count {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.match-previews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.match-preview-card {
    background: var(--surface-bg);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.match-preview-card:hover::before {
    transform: scaleX(1);
}

.match-header {
    margin-bottom: 1rem;
}

.match-header h3 {
    font-size: 1.5rem;
    color: var(--primary-text);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.match-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.match-date {
    background: var(--neutral-light);
    color: var(--primary-text);
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.match-venue {
    color: var(--primary-text-alt);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.match-venue strong {
    color: var(--primary-text);
    font-weight: 600;
}

.match-intro {
    margin-bottom: 1.5rem;
}

.match-intro p {
    color: var(--primary-text-alt);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.match-prediction {
    padding: 1rem;
    background: linear-gradient(135deg, var(--highlight-gold) 0%, #059669 100%);
    border-radius: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.match-prediction strong {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prediction-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.no-content {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--neutral-light);
    border-radius: 0;
    margin: 2rem 0;
}

.no-content h2 {
    color: var(--primary-text);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-content p {
    color: var(--primary-text-alt);
    font-size: 1.1rem;
}

/* Responsive for Match Previews */
@media (max-width: 768px) {
    .preview-header h1 {
        font-size: 2rem;
    }

    .league-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .league-title {
        font-size: 1.5rem;
    }

    .match-previews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .match-preview-card {
        padding: 1.5rem;
    }

    .match-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .preview-header {
        padding: 2rem 0;
    }

    .preview-header h1 {
        font-size: 1.8rem;
    }

    .preview-header p {
        font-size: 1rem;
    }

    .league-title {
        font-size: 1.3rem;
    }

    .match-count {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .match-preview-card {
        padding: 1.2rem;
    }

    .match-prediction {
        flex-direction: column;
        align-items: flex-start;
    }

    .prediction-text {
        font-size: 1rem;
    }
}

/* Transfer News Page Styling */
.transfer-news-page {
    min-height: 80vh;
}

.transfer-header {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.transfer-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.transfer-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* League Transfers Section */
.league-transfers-section {
    margin-bottom: 4rem;
}

.transfer-count {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.transfer-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.transfer-news-card {
    background: var(--surface-bg);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.transfer-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.transfer-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-primary);
}

.transfer-news-card:hover::before {
    transform: scaleX(1);
}

.transfer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.transfer-card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-text);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.transfer-fee {
    background: linear-gradient(135deg, var(--highlight-gold) 0%, #059669 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.transfer-teams {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--primary-bg) 100%);
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.team-from {
    color: var(--primary-text);
    font-weight: 700;
    font-size: 1.1rem;
    flex: 1;
    text-align: right;
}

.transfer-arrow {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.team-to {
    color: var(--primary-text);
    font-weight: 700;
    font-size: 1.1rem;
    flex: 1;
    text-align: left;
}

.transfer-intro {
    margin-bottom: 1.5rem;
}

.transfer-intro p {
    color: var(--primary-text-alt);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.transfer-verdict {
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    border-radius: 0;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.transfer-verdict strong {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transfer-verdict span {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive for Transfer News */
@media (max-width: 768px) {
    .transfer-header h1 {
        font-size: 2rem;
    }

    .league-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .league-title {
        font-size: 1.5rem;
    }

    .transfer-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transfer-news-card {
        padding: 1.5rem;
    }

    .transfer-card-header h3 {
        font-size: 1.3rem;
    }

    .transfer-fee {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .transfer-header {
        padding: 2rem 0;
    }

    .transfer-header h1 {
        font-size: 1.8rem;
    }

    .transfer-header p {
        font-size: 1rem;
    }

    .league-title {
        font-size: 1.3rem;
    }

    .transfer-count {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .transfer-news-card {
        padding: 1.2rem;
    }

    .transfer-teams {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .team-from,
    .team-to {
        text-align: center;
        font-size: 1rem;
    }

    .transfer-arrow {
        transform: rotate(90deg);
    }

    .transfer-fee {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .transfer-verdict {
        flex-direction: column;
    }

    .transfer-verdict span {
        font-size: 0.9rem;
    }
}


