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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}



/* Sportzey Brand Colors & Design Language */
:root {
    --sportzey-beige: #f5f5dc;
    --sportzey-beige-dark: #e8e8d0;
    --sportzey-beige-light: #fafaf0;
    --sportzey-black: #1a1a1a;
    --sportzey-black-light: #2d2d2d;
    --sportzey-gray: #6b7280;
    --sportzey-gray-light: #9ca3af;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--sportzey-black) 0%, var(--sportzey-black-light) 100%);
    --gradient-beige: linear-gradient(135deg, var(--primary-beige) 0%, var(--secondary-beige) 100%);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

/* Container and Layout Fixes */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-beige));
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-text {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-cta {
    font-size: 1.2rem;
    color: var(--primary-beige);
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.35rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.playbook-icon {
    margin-top: 4rem;
}

.playbook-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(27, 54, 93, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breaking News Banner */
.breaking-news {
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    color: var(--white);
    padding: 1.5rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.breaking-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: slideRight 3s infinite;
}

@keyframes slideRight {
    0% { left: -100%; }
    100% { left: 100%; }
}

.breaking-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.breaking-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.breaking-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Filter Navigation */
.filter-nav {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 3px solid var(--primary-beige);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 2px solid transparent;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.filter-tab::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;
}

.filter-tab:hover::before {
    left: 100%;
}

.filter-tab:hover {
    background: var(--primary-beige);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.filter-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-large);
    transform: translateY(-2px);
}

/* Newspaper Layout */
.newspaper-layout {
    padding: 6rem 0;
    background: var(--white);
}

/* Featured Section */
.featured-section {
    margin-bottom: 5rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.featured-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-beige);
    border-radius: 2px;
}

/* Featured Stories Carousel - Sportzey Style */
.featured-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

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

.featured-card {
    flex: 0 0 380px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-blue);
}

.featured-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--primary-blue);
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary-beige);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.featured-card-content {
    padding: 2rem;
    background: var(--white);
}

.featured-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.featured-card-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--secondary-blue);
    font-weight: 600;
}

.featured-card-author,
.featured-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-card-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.featured-card-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;
}

.featured-card-btn:hover::before {
    left: 100%;
}

.featured-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    filter: brightness(1.1);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-large);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.carousel-nav.prev {
    left: -30px;
}

.carousel-nav.next {
    right: -30px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Placeholder card styling */
.featured-card.placeholder {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.featured-card.placeholder .featured-card-title,
.featured-card.placeholder .featured-card-excerpt,
.featured-card.placeholder .featured-card-meta {
    color: var(--white);
}

.featured-card.placeholder .featured-card-btn {
    background: var(--primary-beige);
    color: var(--primary-blue);
}

.featured-card.placeholder .featured-card-btn:hover {
    background: var(--white);
}

/* No Featured Stories State */
.no-featured-stories {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-gray);
    border-radius: 24px;
    border: 3px dashed var(--primary-blue);
    max-width: 600px;
    margin: 0 auto;
}

.no-featured-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-featured-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(27, 54, 93, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
}

.no-featured-stories h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Jersey25-Regular', sans-serif;
}

.no-featured-stories p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.no-featured-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-featured-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.no-featured-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Responsive adjustments for featured carousel */
@media (max-width: 768px) {
    .carousel-container {
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .featured-card {
        flex: 0 0 280px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-nav.prev {
        left: -22px;
    }
    
    .carousel-nav.next {
        right: -22px;
    }
    
    .featured-card-content {
        padding: 1.25rem;
    }
    
    .featured-card-title {
        font-size: 1.1rem;
    }
    
    .featured-card-excerpt {
        font-size: 0.9rem;
    }
    
    .no-featured-stories {
        padding: 2.5rem 1rem;
        margin: 0 1rem;
    }
    
    .no-featured-stories h3 {
        font-size: 1.5rem;
    }
    
    .no-featured-stories p {
        font-size: 1rem;
    }
    
    .no-featured-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .no-featured-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        gap: 0.75rem;
        padding: 0.25rem 0;
    }
    
    .featured-card {
        flex: 0 0 250px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
    
    .featured-card-content {
        padding: 1rem;
    }
    
    .featured-card-title {
        font-size: 1rem;
    }
    
    .featured-card-excerpt {
        font-size: 0.85rem;
    }
    
    .featured-card-meta {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .no-featured-stories {
        padding: 2rem 0.75rem;
        margin: 0 0.75rem;
    }
    
    .no-featured-stories h3 {
        font-size: 1.25rem;
    }
    
    .no-featured-stories p {
        font-size: 0.9rem;
    }
}

/* Three Column Newspaper Layout */
.newspaper-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
    position: relative;
    z-index: 1;
}

.newspaper-column {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.newspaper-column.hidden {
    display: none;
}

/* Column Headers - Sportzey Style */
.column-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 4px solid var(--primary-beige);
    position: relative;
}

.column-header::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.column-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.column-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-blue);
    font-weight: 500;
    font-style: italic;
}

/* Column Content */
.column-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex: 1;
    height: 100%;
}

/* Empty Column State */
.empty-column {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--light-gray);
    border-radius: 24px;
    border: 3px dashed var(--primary-blue);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    flex: 1;
    height: 100%;
}

.empty-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    pointer-events: none;
}

.empty-icon {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.empty-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(27, 54, 93, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
    flex-shrink: 0;
}

.empty-column h4 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.empty-column p {
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.empty-column .btn {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    min-width: 180px;
}

/* Unique styling for each empty column */
.left-column .empty-column {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--light-gray), rgba(27, 54, 93, 0.02));
}

.center-column .empty-column {
    border-color: var(--primary-beige);
    background: linear-gradient(135deg, var(--light-gray), rgba(255, 248, 240, 0.3));
}

.right-column .empty-column {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--light-gray), rgba(255, 165, 0, 0.05));
}

/* Content Cards - Sportzey Design */
.content-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 25px rgba(27, 54, 93, 0.08);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    max-height: none;
}

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

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

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 54, 93, 0.15);
    border-color: var(--primary-blue);
}

/* Content Images */
.content-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(27, 54, 93, 0.15);
}

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

.content-card:hover .content-image img {
    transform: scale(1.1);
}

/* Content Body */
.content-body {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
}

/* Content Category */
.content-category {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 2rem;
    width: fit-content;
    box-shadow: var(--shadow-medium);
}

.content-category.official-badge {
    background: var(--primary-beige);
    color: var(--primary-blue);
}

/* Content Title */
.content-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    cursor: pointer;
    transition: color 0.3s ease;
}

.content-title:hover {
    color: var(--accent-orange);
}

/* Content Excerpt */
.content-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    flex: 0 1 auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 6rem;
}

/* Content Meta */
.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.content-author {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.content-date {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.7;
}

/* Read More Button */
.read-more-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 100%;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
}

.read-more-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;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    background: var(--gradient-primary);
    filter: brightness(1.1);
}

/* Submit CTA Section */
.submit-cta {
    background: var(--white);
    padding: 4rem 0;
    margin-bottom: 4rem;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(27, 54, 93, 0.1);
    border: 2px solid var(--light-gray);
    margin-left: 1rem;
    margin-right: 1rem;
    box-sizing: border-box;
}

.cta-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Submit CTA Section for Blogs Page */
.submit-cta-section {
    background: var(--white);
    padding: 4rem 0;
    margin: 4rem 1rem;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(27, 54, 93, 0.1);
    border: 2px solid var(--light-gray);
    box-sizing: border-box;
}

.submit-cta-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.submit-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.submit-cta-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.submit-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.submit-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-buttons .btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
}

.submit-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.submit-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4);
}

.submit-buttons .btn-primary:hover {
    background: var(--primary-blue);
}

.submit-buttons .btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
    /* Ensure modal opens at the top with navbar spacing */
    align-items: flex-start;
    justify-content: center;
    /* Add top padding to account for fixed navbar */
    padding-top: 100px;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 3rem;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--primary-blue);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}

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

.close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    z-index: 10;
}

.close:hover {
    color: var(--white);
    background: var(--primary-blue);
    transform: rotate(90deg);
}

/* Submit Form */
.submit-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.submit-form::-webkit-scrollbar {
    width: 8px;
}

.submit-form::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.submit-form::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.submit-form::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

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

.form-group label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(27, 54, 93, 0.1);
    transform: translateY(-2px);
}

/* File Size Warning */
.file-size-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.warning-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.warning-text {
    font-size: 0.85rem;
    color: #856404;
    line-height: 1.4;
    font-weight: 500;
}

/* Article Modal */
.article-modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2% auto;
    /* Ensure content starts at top */
    scroll-behavior: smooth;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-beige);
}

.article-category {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.article-date {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.article-author {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 1.2rem;
    font-style: italic;
}

.article-image {
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

.article-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 5rem 2rem;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.success-content h3 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.success-content p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 4rem;
}

/* Buttons - Sportzey Style */
.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 3px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .newspaper-columns {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .newspaper-columns {
        gap: 1.5rem;
        padding: 0 1rem;
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .column-headers {
        gap: 1.5rem;
        padding: 0 1rem;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-text {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero {
        padding: 3rem 0 !important;
        width: 100% !important;
    }
    
    .hero-text {
        font-size: 2.5rem !important;
        letter-spacing: 1px !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        width: 100%;
    }
    
    .playbook-logo {
        width: 120px;
        height: 120px;
    }
    
    .breaking-news {
        padding: 1rem 0;
    }
    
    .breaking-news-content {
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .breaking-label {
        font-size: 0.9rem;
    }
    
    .breaking-text {
        font-size: 0.9rem;
    }
    
    .filter-nav {
        padding: 1.5rem 0;
    }
    
    .filter-tabs {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .featured-section {
        padding: 0 1rem;
        width: 100%;
    }
    
    .newspaper-columns {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
    }
    
    .column-header {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .header-icon {
        width: 48px;
        height: 48px;
    }
    
    .header-image {
        width: 28px;
        height: 28px;
    }
    
    .header-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .header-content p {
        font-size: 0.9rem;
    }
    
    .content-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-body {
        padding: 1.5rem;
    }
    
    .content-title {
        font-size: 1.1rem;
    }
    
    .content-excerpt {
        font-size: 1rem;
    }
    
    .empty-column {
        padding: 2rem 1rem;
        min-height: 300px;
        width: 100%;
    }
    
    .empty-image {
        width: 80px;
        height: 80px;
    }
    
    .empty-column h4 {
        font-size: 1.3rem;
    }
    
    .empty-column p {
        font-size: 1rem;
    }
    
    .submit-cta-section {
        padding: 3rem 1rem;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
    
    .submit-cta-content h2 {
        font-size: 2rem;
    }
    
    .submit-cta-content p {
        font-size: 1rem;
    }
    
    .submit-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .submit-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .modal-content {
        width: 95%;
        margin: 1% auto;
        padding: 2rem;
        max-height: 95vh;
    }
    
    .article-modal-content {
        width: 95%;
        margin: 0.5% auto;
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    /* Ensure modal opens at top on mobile */
    .modal {
        padding: 10px;
        padding-top: 80px;
        align-items: flex-start;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-text {
        font-size: 1.1rem;
    }
    
    .close {
        right: 1rem;
        top: 1rem;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    /* Column headers responsive adjustments */
    .column-headers {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-text {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .playbook-logo {
        width: 100px;
        height: 100px;
    }
    
    .breaking-news {
        padding: 0.75rem 0;
    }
    
    .breaking-news-content {
        padding: 0 0.75rem;
    }
    
    .breaking-label {
        font-size: 0.8rem;
    }
    
    .breaking-text {
        font-size: 0.8rem;
    }
    
    .filter-nav {
        padding: 1rem 0;
    }
    
    .filter-tabs {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .filter-tab {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-section {
        padding: 0 0.75rem;
    }
    
    .newspaper-columns {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .column-header {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .header-icon {
        width: 40px;
        height: 40px;
    }
    
    .header-image {
        width: 24px;
        height: 24px;
    }
    
    .header-content h3 {
        font-size: 1rem;
    }
    
    .header-content p {
        font-size: 0.85rem;
    }
    
    .content-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .content-body {
        padding: 1rem;
    }
    
    .content-title {
        font-size: 1rem;
    }
    
    .content-excerpt {
        font-size: 0.9rem;
    }
    
    .content-category {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .read-more-btn {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .empty-column {
        padding: 1.5rem 0.75rem;
        min-height: 250px;
    }
    
    .empty-image {
        width: 70px;
        height: 70px;
    }
    
    .empty-column h4 {
        font-size: 1.1rem;
    }
    
    .empty-column p {
        font-size: 0.9rem;
    }
    
    .submit-cta-section {
        padding: 2rem 0.75rem;
        margin: 0 0.75rem;
        width: calc(100% - 1.5rem);
    }
    
    .submit-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .submit-cta-content p {
        font-size: 0.9rem;
    }
    
    .submit-buttons .btn {
        max-width: 250px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
        padding: 1.5rem;
    }
    
    .article-modal-content {
        width: 98%;
        margin: 0.5% auto;
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-text {
        font-size: 1rem;
    }
    
    .close {
        right: 0.75rem;
        top: 0.75rem;
        font-size: 1.75rem;
        width: 30px;
        height: 30px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Ensure proper navbar spacing on very small screens */
    .modal {
        padding-top: 70px;
    }
}

/* Column Headers */
.column-headers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(27, 54, 93, 0.08);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 2rem;
}

.column-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 54, 93, 0.15);
    border-color: var(--primary-blue);
}

.header-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--light-gray);
    border-radius: 16px;
    border: 2px solid var(--primary-beige);
}

.header-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(27, 54, 93, 0.15));
}

.header-content h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    line-height: 1.2;
}

.header-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
    line-height: 1.4;
    opacity: 0.9;
}

/* Responsive adjustments for column headers - consolidated into main media query above */

/* More Stories Section */
.more-stories {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 1rem;
    background: var(--light-gray);
    border-radius: 24px;
    border: 2px solid var(--primary-beige);
    margin-left: 1rem;
    margin-right: 1rem;
    width: calc(100% - 2rem);
    box-sizing: border-box;
}

.more-stories h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.more-stories p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Newspaper Columns */
.newspaper-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.newspaper-column {
    min-height: 600px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(27, 54, 93, 0.08);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 2rem;
}

.column-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 54, 93, 0.15);
    border-color: var(--primary-blue);
}

.header-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--light-gray);
    border-radius: 16px;
    border: 2px solid var(--primary-beige);
}

.header-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(27, 54, 93, 0.15));
}

.header-content h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    line-height: 1.2;
}

.header-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
    line-height: 1.4;
    opacity: 0.9;
}

.column-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ============================================
   SPORTY COMMENTS & LIKES SECTION
   ============================================ */

/* Engagement Section - Sporty Styled */
.article-engagement {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid var(--primary-beige);
}

.engagement-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Like Button - Sporty Styled */
.like-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 2px solid var(--primary-beige);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow-soft);
}

.like-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-beige);
    border-color: var(--primary-blue);
}

.like-btn.liked {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: var(--white);
    border-color: #ff6b6b;
    animation: likePulse 0.4s ease;
}

@keyframes likePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.like-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.like-btn:hover .like-icon {
    transform: scale(1.1);
}

.like-count {
    font-weight: 700;
    font-size: 1rem;
    color: inherit;
    transition: all 0.3s ease;
}

/* Comment Toggle Button - Sporty Styled */
.comment-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.comment-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    background: var(--primary-blue);
    filter: brightness(1.1);
}

.comment-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.comment-toggle-btn:hover .comment-icon {
    transform: scale(1.1);
}

.comment-count-label {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Comments Section - Sporty Styled */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid var(--primary-beige);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comments-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.comments-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comments-title svg {
    stroke: var(--primary-blue);
}

.comments-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
}

/* Comment Form - Sporty Styled */
.comment-form-container {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 2px solid var(--primary-beige);
    box-shadow: var(--shadow-soft);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comment-input {
    padding: 1rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.comment-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(27, 54, 93, 0.1);
    transform: translateY(-2px);
}

.comment-input::placeholder {
    color: var(--sportzey-gray-light);
}

.comment-textarea {
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s ease;
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(27, 54, 93, 0.1);
    transform: translateY(-2px);
}

.comment-textarea::placeholder {
    color: var(--sportzey-gray-light);
}

.comment-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.comment-submit-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;
}

.comment-submit-btn:hover::before {
    left: 100%;
}

.comment-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    background: var(--primary-blue);
    filter: brightness(1.1);
}

.comment-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Comments List - Sporty Styled */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.no-comments {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 16px;
    border: 2px dashed var(--primary-beige);
}

.no-comments p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
}

.comment-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--primary-beige);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.comment-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.comment-content {
    margin-bottom: 1rem;
}

.comment-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.comment-pending-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
}

.comment-author svg {
    stroke: var(--primary-blue);
}

.comment-date {
    color: var(--sportzey-gray);
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive Design for Comments & Likes */
@media (max-width: 768px) {
    .engagement-stats {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .like-btn,
    .comment-toggle-btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .comment-form-container {
        padding: 1.5rem;
    }
    
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment-item {
        padding: 1.25rem;
    }
    
    .comment-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .article-engagement {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .comments-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .comments-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .comments-title {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comments-subtitle {
        font-size: 1rem;
    }
    
    .comment-form-container {
        padding: 1rem;
    }
    
    .comment-input,
    .comment-textarea {
        padding: 0.875rem 1.125rem;
        font-size: 0.9rem;
    }
    
    .comment-textarea {
        min-height: 100px;
    }
    
    .comment-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .comment-item {
        padding: 1rem;
    }
    
    .comment-text {
        font-size: 0.9rem;
    }
    
    .comment-author,
    .comment-date {
        font-size: 0.8rem;
    }
    
    .like-btn,
    .comment-toggle-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .like-icon,
    .comment-icon {
        width: 20px;
        height: 20px;
    }
}
