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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background-color: #1a365d;
    color: white;
}

/* Mobile-only elements - hidden by default */
.mobile-only {
    display: none;
}

/* Desktop-only elements - shown by default */
.desktop-only {
    display: block;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #0b2246;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #2d5a8b;
}

.mobile-menu-btn,
.mobile-search-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    padding: 8px;
    cursor: pointer;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo-icon svg path {
    stroke: white;
    stroke-width: 2;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.mobile-logo-main {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.mobile-logo-sub {
    font-size: 12px;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: 1px;
    margin-top: -1px;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #2d5a8b;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-icon svg {
    z-index: 1;
    position: relative;
}

.logo-icon svg path {
    stroke: white;
    stroke-width: 2.5;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.logo-sub {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9ff3 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-top: -2px;
    text-shadow: 0 2px 4px rgba(255, 159, 243, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 0 8px;
    border-right: 1px solid #2d5a8b;
}

.social-icons a:last-child {
    border-right: none;
}

.social-icons a:hover {
    color: #60a5fa;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
}

.language-selector i {
    font-size: 12px;
}

.language-selector {
    position: relative;
}
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    display: none;
    min-width: 160px;
    z-index: 60;
}
.language-dropdown a {
    display: block;
    padding: 6px 8px;
    color: #1f2937;
    text-decoration: none;
}
.language-dropdown a:hover {
    background: #f3f4f6;
    border-radius: 6px;
}

.header-bottom {
    padding: 15px 0;
    background-color: #1a365d;
}

.header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
    z-index: 50;
}

.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.main-nav .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: #1f2937;
}

.main-nav .dropdown-menu a:hover {
    background: #f3f4f6;
    border-radius: 6px;
}

.main-nav .dropdown .menu-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    color: #60a5fa;
}

.main-nav i {
    font-size: 10px;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: none;
    border-radius: 25px;
    background-color: #f3f4f6;
    color: #374151;
    font-size: 14px;
}

.search-bar input::placeholder {
    color: #9ca3af;
}

.search-bar i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

/* Main Content Styles */
.main-content {
    background-color: white;
    padding: 30px 0;
}

/* Ensure players page content clears the header */
body.players-page .main-content {
    padding-top: 60px;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Mobile Tabs */
.mobile-tabs {
    display: flex;
    gap: 0;
    margin: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.mobile-tab.active {
    background: #0b2246;
    color: #ffffff;
    border-bottom-color: #60a5fa;
}

/* Mobile Content */
.mobile-content {
    display: none;
    background: #ffffff;
    min-height: 100vh;
}

/* Mobile Hero Section */
.mobile-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.mobile-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.mobile-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.mobile-hero-content {
    color: white;
    width: 100%;
}

.mobile-news-tag {
    background: #60a5fa;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.mobile-hero-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
    color: white;
}

.mobile-hero-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Mobile Trending Section */
.mobile-trending {
    padding: 20px 15px;
}

.mobile-section-title {
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.mobile-trending-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.mobile-trending-item {
    min-width: 200px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-trending-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.mobile-trending-content {
    padding: 12px;
}

.mobile-trending-tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mobile-trending-tag.exclusive {
    background: #ef4444;
    color: white;
}

.mobile-trending-tag.news {
    background: #3b82f6;
    color: white;
}

.mobile-trending-tag.analysis {
    background: #8b5cf6;
    color: white;
}

.mobile-trending-content h3 {
    font-size: 13px;
    font-weight: 600;
    color: #1e40af;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-trending-time {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

/* Mobile Transfer Tabs */
.mobile-transfer-tabs {
    display: flex;
    background: #0b2246;
    padding: 0 15px;
}

.mobile-transfer-tab {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-transfer-tab.active {
    background: #60a5fa;
    border-bottom-color: #60a5fa;
}

/* Mobile Transfer Cards */
.mobile-transfers {
    background: #0b2246;
    padding: 20px 15px;
}

.mobile-transfer-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.mobile-transfer-card {
    min-width: 120px;
    background: #2d5a8b;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.mobile-transfer-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.mobile-transfer-card h4 {
    font-size: 12px;
    margin-bottom: 10px;
    color: white;
}

.mobile-transfer-clubs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.mobile-transfer-clubs img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0;
}

.mobile-transfer-clubs span {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.mobile-transfer-fee {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Mobile Live Banner */
.mobile-live-banner {
    background: #dc2626;
    color: white;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 14px;
}

.mobile-live-tag {
    background: white;
    color: #dc2626;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.mobile-live-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Mobile Filter Tabs */
.mobile-filter-tabs {
    display: flex;
    background: #f8f9fa;
    padding: 0 15px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-filter-tab {
    flex: 1;
    padding: 10px 12px;
    text-align: center;
    color: #6b7280;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.mobile-filter-tab.active {
    background: #ffffff;
    color: #111827;
    border-bottom-color: #0b2246;
}

/* Mobile Latest News */
.mobile-latest-news {
    padding: 20px 15px;
}

.mobile-news-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-news-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.mobile-news-content {
    flex: 1;
}

.mobile-news-tag {
    background: #60a5fa;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.mobile-news-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 8px;
}

.mobile-news-time {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-news-time::before {
    content: "🕐";
    font-size: 10px;
}

.hero-left h1 {
    color: #1a365d;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.news-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.news-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.news-tag.transfers {
    background-color: #dc2626;
}

.news-tag.news {
    background-color: #2563eb;
}

.news-card h3 {
    padding: 15px;
    font-size: 16px;
    color: #1f2937;
    line-height: 1.4;
}

/* Trending Section */
.trending-section h2 {
    color: #10b981;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trending-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trending-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trending-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.trending-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trending-content {
    padding: 15px;
}

.trending-category {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.trending-category.analysis {
    background: #3b82f6;
}

.trending-category.exclusive {
    background: #dc2626;
}

.trending-category.news {
    background: #ef4444;
}

.trending-headline {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-time {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Trending */
@media (max-width: 1024px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trending-item img {
        height: 150px;
    }
}

/* Hero Right - Most Valuable Players */
.hero-right {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-right h2 {
    color: #1a365d;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.player-tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    width: fit-content;
}

.player-tabs .tab {
    padding: 10px 20px;
    border: none;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.player-tabs .tab.active {
    background: #1a365d;
    color: white;
}

.player-list {
    margin-bottom: 20px;
}

.player-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.player-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
    min-width: 50px;
}

.rating {
    font-size: 14px;
    font-weight: bold;
    color: #1f2937;
}

.trend {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 2px;
}

.trend.down {
    color: #dc2626;
}

.trend.up {
    color: #059669;
}

.player-info {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.player-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.player-details h4 {
    font-size: 14px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 4px;
}

.club-nationality {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.club-nationality img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.team-logo-small {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

.position {
    font-size: 12px;
    color: #6b7280;
}

.player-value {
    font-size: 14px;
    font-weight: bold;
    color: #60a5fa;
    margin-left: 15px;
}

.all-players-btn {
    width: 100%;
    padding: 12px;
    background: #60a5fa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.all-players-btn:hover {
    background: #3b82f6;
}

/* Contract Extensions */
.contract-extensions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contract-extensions h2 {
    color: #1a365d;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contract-extensions .player-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contract-extensions .player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.contract-extensions .player-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.contract-extensions .player-details h4 {
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 4px;
}

.contract-extensions .player-details p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Small Transfers Section */
.small-transfers-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.small-transfers-section .section-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
    width: fit-content;
}

.small-transfers-section .tab {
    padding: 6px 12px;
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.small-transfers-section .tab.active {
    background: #60a5fa;
    color: white;
}

.small-transfers-section .tab:hover {
    background: #3b82f6;
    color: white;
}

.small-transfer-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.small-transfer-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.small-transfer-card img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.small-transfer-info {
    flex: 1;
}

.small-transfer-info h4 {
    font-size: 13px;
    color: #1f2937;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.small-transfer-clubs {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 2px;
}

.small-transfer-clubs span {
    font-weight: 500;
}

.small-transfer-fee {
    font-size: 11px;
    color: #60a5fa;
    font-weight: 600;
}

.no-transfers {
    text-align: center;
    padding: 20px;
    color: #6b7280;
    font-size: 12px;
}

/* Transfers Section */
.transfers-section {
    background: #1a365d;
    padding: 30px;
    border-radius: 8px;
}

/* Latest News Section */
.latest-news-section {
    margin-bottom: 30px;
}

.latest-news-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3b82f6;
}

.section-tabs {
    display: flex;
    margin-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
    background: #2d5a8b;
    width: fit-content;
}

.section-tabs .tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
}

.section-tabs .tab.active {
    background: #60a5fa;
}

.transfer-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding-bottom: 10px;
}

.transfers-section .transfer-card {
    background: #2d5a8b;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
}

.transfers-section .transfer-card .player-photo {
    margin-bottom: 10px;
}

.transfers-section .transfer-card .player-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #60a5fa;
}

.transfers-section .transfer-card h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}

.transfers-section .transfer-clubs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.transfers-section .transfer-clubs .team-logo {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid #ffffff;
    background: white;
    padding: 2px;
}

.transfers-section .transfer-clubs .team-logo-placeholder {
    width: 30px;
    height: 30px;
    background: #60a5fa;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
    border: 1px solid #ffffff;
}

.transfers-section .transfer-clubs span {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.transfers-section .transfer-fee {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.no-transfers {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-style: italic;
    width: 100%;
}

.no-transfers p {
    margin: 0;
    font-size: 16px;
}


/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background: white;
    border-radius: 8px;
    margin-bottom: 30px;
    border-top: 2px solid #60a5fa;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.nav-links a:hover {
    color: #60a5fa;
}

.separator {
    color: #d1d5db;
}

/* Bottom Content */
.bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-left h2,
.bottom-right h2 {
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.bottom-section.narrow {
    max-width: 350px;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-label {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    color: white;
    background: #374151;
    margin-bottom: 8px;
}

.news-label.analysis {
    background: #059669;
}

.news-content h4 {
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.4;
}

.news-time {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-time::before {
    content: "🕐";
    font-size: 10px;
}

/* Contract Extensions */
.contract-tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    width: fit-content;
}

.contract-tabs .tab {
    padding: 10px 20px;
    border: none;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.contract-tabs .tab.active {
    background: #1a365d;
    color: white;
}

.contract-items {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contract-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.contract-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.contract-content h4 {
    font-size: 14px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 5px;
}

.contract-content p {
    font-size: 12px;
    color: #6b7280;
}

/* Contract Extensions Player Items */
.bottom-right .player-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.bottom-right .player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.bottom-right .player-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.bottom-right .player-details h4 {
    font-size: 14px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 5px;
}

.bottom-right .player-details p {
    font-size: 12px;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h3 {
    color: #374151;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.players-teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.players-list p,
.teams-list p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.popular-lists {
    list-style: none;
}

.popular-lists li {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-lists i {
    color: #9ca3af;
    font-size: 12px;
}

.footer-column p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: #374151;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .news-cards {
        grid-template-columns: 1fr;
    }
    
    .transfer-cards {
        gap: 15px;
    }
    
    .bottom-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Show mobile elements, hide desktop elements */
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }

    /* Mobile content styling */
    .mobile-content {
        display: block;
    }

    /* Hide desktop main content on mobile */
    .main-content.desktop-only {
        display: none;
    }

    /* Mobile-specific adjustments */
    .container {
        padding: 0;
    }

    .footer {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-item img {
        width: 100%;
        height: 150px;
    }
    
    .player-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .player-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .transfer-cards {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        overflow-x: auto;
    }
    
    .transfers-section .transfer-card {
        min-width: 80px;
        padding: 10px;
    }
    
    .transfers-section .transfer-card img {
        width: 50px;
        height: 50px;
    }
    
    .transfers-section .transfer-card h4 {
        font-size: 11px;
    }
    
    .transfers-section .transfer-fee {
        font-size: 12px;
    }
}

/* Article Page Styles */
.article-content {
    max-width: 800px;
}

/* Most Valuable Players - enhanced pills/icons */
.player-value .value-amount {
    display: inline-block;
    background: #e6f9f0;
    color: #059669;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 12px;
}

.team-logo-small {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

/* Enhanced Article Header */
.article-header {
    margin-bottom: 30px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b2246;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0b2246;
    font-size: 1rem;
}

.verified-icon {
    color: #3b82f6;
    font-size: 0.9rem;
}

.article-date {
    color: #6b7280;
    font-size: 0.9rem;
}

.article-comments {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.9rem;
}

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

.social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

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

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

.social-share-btn.linkedin {
    background: #0A66C2;
    color: white;
}

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

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-excerpt {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.article-header {
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6b7280;
}

.category-tag {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.article-date {
    color: #6b7280;
}

.article-views {
    color: #6b7280;
}

.article-views i {
    margin-right: 5px;
}

.article-title {
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-image {
    margin-bottom: 30px;
    text-align: center;
}

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

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 40px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.article-author {
    margin-bottom: 15px;
    color: #6b7280;
    font-size: 14px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.related-articles {
    margin-top: 40px;
}

.related-articles h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-item h3 {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.related-date {
    padding: 0 15px 15px;
    font-size: 12px;
    color: #6b7280;
}

/* Make news cards clickable */
.news-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.news-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
}

.news-item:hover {
    background-color: #f9fafb;
    text-decoration: none;
    color: inherit;
}

/* Responsive Article Styles */
@media (max-width: 768px) {
    .article-content {
        padding: 20px;
        margin: 0 15px 40px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-excerpt {
        font-size: 16px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Category Page Styles */
.category-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a8b 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 8px;
}

.category-info {
    text-align: center;
}

.category-info h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.category-info p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.article-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.articles-grid {
    margin-bottom: 40px;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-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;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Default card image styles */
.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Override in full article view to show full image without cropping */
.article-content .article-image {
    height: auto;
    overflow: visible;
}

.article-content .article-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.article-content {
    padding: 20px;
}

.article-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-content p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
}

.article-views i {
    margin-right: 5px;
}

.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.no-articles h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #374151;
}

.no-articles p {
    font-size: 16px;
    margin-bottom: 25px;
}

/* Articles List Layout */
.articles-list {
    margin-bottom: 40px;
}

.articles-list .articles-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-list-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.article-list-item .article-link {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.article-list-item .article-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.article-list-item .article-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block;
}

.article-list-item:hover .article-image img {
    transform: scale(1.05);
}

.article-list-item .article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.article-list-item .category-tag {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 10px;
}

.article-list-item .article-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
    line-height: 1.4;
}

.article-list-item .article-content p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.article-list-item .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
}

/* Responsive Category Styles */
@media (max-width: 768px) {
    .category-info h1 {
        font-size: 28px;
    }
    
    .category-info p {
        font-size: 16px;
    }
    
    .articles-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-content h2 {
        font-size: 16px;
    }
}

/* Comments Section Styles */
.comments-section {
    margin-top: 40px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.comments-section h3 {
    color: #1a365d;
    margin-bottom: 25px;
    font-size: 24px;
}

.comment-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

.comment-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.comment-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.comment-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.comment-form .btn {
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.comment-form .btn:hover {
    background: #2563eb;
}

.comments-list {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.no-comments {
    padding: 30px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

.comment {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-header strong {
    color: #1a365d;
    font-size: 16px;
}

.comment-date {
    color: #6b7280;
    font-size: 14px;
}

.comment-content {
    color: #374151;
    line-height: 1.6;
}

/* Error Page Styles */
.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-icon {
    font-size: 80px;
    color: #dc2626;
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.error-actions .btn-primary {
    background: #2563eb;
    color: white;
}

.error-actions .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.error-actions .btn-secondary {
    background: #6b7280;
    color: white;
}

.error-actions .btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* Responsive Error Page */
@media (max-width: 768px) {
    .error-icon {
        font-size: 60px;
    }
    
    .error-content h1 {
        font-size: 28px;
    }
    
    .error-content p {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 200px;
    }
}

/* Article Page Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 30px;
}

.main-article {
    min-width: 0; /* Prevents grid overflow */
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3b82f6;
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.popular-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.post-number {
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.post-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h4 a:hover {
    color: #3b82f6;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #6b7280;
}

.post-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-views i {
    font-size: 10px;
}

/* Valuable Players */
.valuable-players {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.valuable-players .player-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.valuable-players .player-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.player-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.player-info {
    flex: 1;
    min-width: 0;
}

.player-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-value {
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Advertisement */
.advertisement h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    text-align: center;
}

.ad-content {
    display: flex;
    justify-content: center;
}

.ad-placeholder {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #6b7280;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

.ad-placeholder i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #9ca3af;
}

.ad-placeholder p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.ad-placeholder small {
    font-size: 12px;
    color: #9ca3af;
}

/* Homepage Advertisement */
.homepage-advertisement {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.homepage-advertisement .ad-content {
    display: flex;
    justify-content: center;
}

.homepage-advertisement .ad-placeholder {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #64748b;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 728px;
}

.homepage-advertisement .ad-placeholder i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #94a3b8;
}

.homepage-advertisement .ad-placeholder p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.homepage-advertisement .ad-placeholder small {
    font-size: 12px;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .article-author-info {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-sidebar {
        order: -1;
    }
    
    .sidebar-section {
        padding: 15px;
    }
    
    .popular-post {
        padding: 10px;
        gap: 10px;
    }
    
    .post-image {
        width: 50px;
        height: 50px;
    }
    
    .valuable-players .player-item {
        padding: 10px;
    }
    
    .ad-placeholder {
        min-height: 200px;
        padding: 15px;
    }
    
    .homepage-advertisement .ad-placeholder {
        min-height: 60px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .sidebar-section {
        padding: 12px;
    }
    
    .popular-post {
        padding: 8px;
        gap: 8px;
    }
    
    .post-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .post-image {
        width: 40px;
        height: 40px;
    }
    
    .post-content h4 {
        font-size: 13px;
    }
    
    .valuable-players .player-item {
        padding: 8px;
        gap: 8px;
    }
    
    .player-photo {
        width: 32px;
        height: 32px;
    }
    
    .player-info h4 {
        font-size: 13px;
    }
    
    .player-info p {
        font-size: 11px;
    }
    
    .ad-placeholder {
        min-height: 150px;
        padding: 12px;
    }
    
    .homepage-advertisement .ad-placeholder {
        min-height: 50px;
        padding: 15px;
    }
}

/* Teams Page */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.team-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.team-country {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
}

.stat i {
    font-size: 10px;
}

/* Players Page */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.player-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.player-card .player-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.player-placeholder {
    width: 100%;
    height: 100%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-position {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 8px;
}

.player-team {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.team-logo {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    overflow: hidden;
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-value {
    font-size: 14px;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

/* Values Page */
.values-section, .transfers-section {
    margin-bottom: 40px;
}

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

.valuable-player-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.valuable-player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.player-rank {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.valuable-player-card .player-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.valuable-player-card .player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.valuable-player-card .player-info {
    flex: 1;
    min-width: 0;
}

.valuable-player-card .player-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.valuable-player-card .player-position {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 8px;
}

.valuable-player-card .player-team {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.valuable-player-card .player-value {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
}

.transfers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.transfers-grid .transfer-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.transfers-grid .transfer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.transfers-grid .transfer-player {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.transfers-grid .transfer-player img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.transfers-grid .transfer-arrow {
    color: #6b7280;
    font-size: 16px;
}

.transfers-grid .transfer-teams {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.transfers-grid .from-team, 
.transfers-grid .to-team {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

.transfers-grid .transfer-fee {
    font-size: 16px;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Statistics Page */
.stats-overview {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-content p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.team-stats-section, .player-stats-section {
    margin-bottom: 40px;
}

.team-stats-table {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.table-header {
    background: #f8fafc;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 15px 20px;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 15px 20px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background: #f8fafc;
}

.table-row:last-child {
    border-bottom: none;
}

.team-name {
    font-weight: 600;
    color: #1f2937;
}

.col-team, .col-transfers, .col-spent, .col-avg {
    display: flex;
    align-items: center;
}

.player-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .teams-grid, .players-grid, .valuable-players-grid {
        grid-template-columns: 1fr;
    }
    
    .transfers-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid, .player-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        display: block;
        padding: 15px;
    }
    
    .table-row > div {
        margin-bottom: 8px;
    }
    
    .table-row > div:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: #374151;
    }
}

@media (max-width: 480px) {
    .stats-grid, .player-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .stat-content h3 {
        font-size: 20px;
    }
}

/* New Footer Design */
.footer {
    background: #1a365d;
    padding: 40px 0 20px;
    color: white;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #60a5fa;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links i {
    font-size: 10px;
    color: #60a5fa;
}

.social-media-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #60a5fa;
    color: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #1a365d;
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: #60a5fa;
    margin: 30px 0;
    opacity: 0.3;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .social-media-icons {
        justify-content: center;
    }
    
    .footer-column h3 {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
}

/* Footer Pages Styles */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Cards */
.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-value.positive {
    color: #28a745;
}

.stat-value.negative {
    color: #dc3545;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Market Stats Grid */
.market-stats, .ranking-stats, .team-stats, .rumor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.section-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.section-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 0.9rem;
}

/* Players Grid */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.player-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.player-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.player-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.player-placeholder {
    color: #ccc;
    font-size: 2rem;
}

.player-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.player-info p {
    margin: 2px 0;
    color: #666;
    font-size: 0.9rem;
}

.player-value {
    margin-top: 15px;
    text-align: center;
}

.value-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    display: block;
    margin-bottom: 5px;
}

.value-change {
    font-size: 0.9rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.value-change.positive {
    background: #d4edda;
    color: #155724;
}

.value-change.negative {
    background: #f8d7da;
    color: #721c24;
}

/* Transfers Grid - for other pages */
.transfers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.transfers-grid .transfer-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.transfers-grid .transfer-card:hover {
    transform: translateY(-5px);
}

.transfers-grid .transfer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.transfers-grid .transfer-date {
    color: #666;
    font-size: 0.9rem;
}

.transfers-grid .transfer-type {
    background: #667eea;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.transfers-grid .transfer-player {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.transfers-grid .transfer-player .player-photo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    margin-bottom: 0;
}

.transfers-grid .transfer-player .player-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.transfers-grid .transfer-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.transfers-grid .from-team, 
.transfers-grid .to-team {
    display: flex;
    align-items: center;
    flex: 1;
}

.transfers-grid .team-logo {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transfers-grid .team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transfers-grid .team-placeholder {
    color: #ccc;
    font-size: 1rem;
}

.transfers-grid .transfer-arrow {
    margin: 0 15px;
    color: #667eea;
    font-size: 1.2rem;
}

.transfers-grid .transfer-fee {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.transfers-grid .fee-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
}

.transfers-grid .fee-free {
    color: #666;
    font-style: italic;
}

/* Rumors Grid */
.rumors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rumor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rumor-card:hover {
    transform: translateY(-5px);
}

.rumor-card.hot {
    border: 2px solid #ff6b6b;
}

.rumor-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.rumor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rumor-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}

.hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.rumor-content {
    padding: 20px;
}

.rumor-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

.rumor-category {
    background: #667eea;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.rumor-content h3 {
    margin-bottom: 10px;
}

.rumor-content h3 a {
    color: #333;
    text-decoration: none;
}

.rumor-content h3 a:hover {
    color: #667eea;
}

.rumor-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.rumor-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Updates Grid */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.update-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.update-date {
    color: #666;
    font-size: 0.9rem;
}

.update-change {
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.update-change.positive {
    background: #d4edda;
    color: #155724;
}

.update-change.negative {
    background: #f8d7da;
    color: #721c24;
}

.update-player {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.update-player .player-photo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    margin-bottom: 0;
}

.update-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.old-value, .new-value {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.old-value .label, .new-value .label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.old-value .value, .new-value .value {
    font-weight: 700;
    color: #333;
}

.value-difference {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.difference {
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.difference.positive {
    background: #d4edda;
    color: #155724;
}

.difference.negative {
    background: #f8d7da;
    color: #721c24;
}

/* FIFA Rankings */
.top-3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.top-3-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.top-3-card:hover {
    transform: translateY(-5px);
}

.top-3-card.rank-1 {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.top-3-card.rank-2 {
    border: 3px solid #c0c0c0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.top-3-card.rank-3 {
    border: 3px solid #cd7f32;
    background: linear-gradient(135deg, #fdf5e6 0%, #ffffff 100%);
}

.rank-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-medal {
    font-size: 1.5rem;
    margin-left: 5px;
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 15px;
}

.top-3-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.points {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.change {
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.change.positive {
    background: #d4edda;
    color: #155724;
}

.change.negative {
    background: #f8d7da;
    color: #721c24;
}

/* Ranking Table */
.table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ranking-table th {
    background: #667eea;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.ranking-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.ranking-table tr:hover {
    background: #f8f9fa;
}

.rank-cell {
    text-align: center;
    font-weight: 700;
    color: #667eea;
}

.country-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-flag {
    font-size: 1.5rem;
}

.country-name {
    font-weight: 600;
}

.points-cell {
    font-weight: 700;
    color: #333;
}

.change-cell {
    text-align: center;
}

.previous-cell {
    text-align: center;
    color: #666;
}

/* Recent Changes */
.changes-list {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

.change-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.change-item:hover {
    transform: translateY(-2px);
}

.change-rank {
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

.change-player {
    display: flex;
    align-items: center;
    flex: 1;
}

.change-player .player-photo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    margin-bottom: 0;
}

.change-player h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.change-player p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.change-values {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.old-value, .new-value {
    font-weight: 600;
    color: #333;
}

.arrow {
    color: #667eea;
    font-weight: 700;
}

.change-percentage {
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.change-percentage.positive {
    background: #d4edda;
    color: #155724;
}

.change-percentage.negative {
    background: #f8d7da;
    color: #721c24;
}

/* Team Members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.team-member-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    color: #ccc;
    font-size: 2rem;
}

.member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-joined {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

.member-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Role Cards */
.role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.role-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
}

.role-icon {
    width: 80px;
    height: 80px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.role-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.role-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.role-responsibilities {
    text-align: left;
    margin-bottom: 25px;
}

.role-responsibilities h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.role-responsibilities ul {
    list-style: none;
    padding: 0;
}

.role-responsibilities li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.role-responsibilities li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

/* Application Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.requirement-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.requirement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.requirement-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Application Form */
.application-form-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.application-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    font-weight: 700;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Message Styles */
.message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Commandments */
.commandments-section {
    margin-bottom: 40px;
}

.commandment-card {
    display: flex;
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.commandment-card:hover {
    transform: translateY(-2px);
}

.commandment-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.commandment-content {
    flex: 1;
}

.commandment-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.commandment-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.commandment-details h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.commandment-details ul {
    list-style: none;
    padding: 0;
}

.commandment-details li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.commandment-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

/* Mistake Types */
.mistake-types {
    margin-bottom: 40px;
}

.mistake-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mistake-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-5px);
}

.mistake-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.mistake-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.mistake-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Report Form */
.mistake-report-form {
    display: grid;
    gap: 20px;
}

/* Info Steps */
.info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-step {
    text-align: center;
    padding: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.info-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.info-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.contact-method i {
    color: #667eea;
    font-size: 1.2rem;
}

/* Commitment Section */
.commitment-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.commitment-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Appreciation Stats */
.appreciation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-filters {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .commandment-card {
        flex-direction: column;
        text-align: center;
    }
    
    .commandment-number {
        margin: 0 auto 20px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }
    
    .commitment-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 20px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .application-form-section {
        padding: 20px;
    }
    
    .commandment-card {
        padding: 20px;
    }
    
    .commitment-section {
        padding: 20px;
    }
}
