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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #003366;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: #003366;
    color: white;
}

.btn-primary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #69BE28;
    color: white;
}

.btn-secondary:hover {
    background-color: #5AA020;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.btn-outline:hover {
    background-color: #003366;
    color: white;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 100px;
    width: auto;
}

.primary-nav {
    flex: 1;
    margin: 0 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #003366;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003366 0%, #69BE28 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Top Stories */
.top-stories {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

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

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

.story-card.featured {
    grid-row: span 2;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    padding: 1.5rem;
}

.story-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #003366;
}

.story-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-link {
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.story-link:hover {
    text-decoration: underline;
}

/* Latest News */
.latest-news {
    padding: 4rem 0;
}

.news-list {
    margin-bottom: 2rem;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.news-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-right: 1rem;
    min-width: 40px;
}

.news-title {
    font-size: 1.1rem;
    color: #333;
}

.news-actions {
    text-align: center;
}

/* Game Results */
.game-results {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.game-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-title {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
}

.game-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.team {
    text-align: center;
}

.team-score {
    font-size: 3rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.5rem;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

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

.team-record {
    font-size: 0.9rem;
    color: #666;
}

.game-divider {
    font-size: 2rem;
    color: #ccc;
    font-weight: 300;
}

.game-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Seahawks Shorts */
.seahawks-shorts {
    padding: 4rem 0;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

.short-image img {
    width: 100%;
    height: auto;
    display: block;
}

.short-content {
    padding: 1.5rem;
}

.short-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #003366;
}

.short-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.short-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Featured Videos */
.featured-videos {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

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

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

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-title {
    font-size: 1.1rem;
    margin: 1rem;
    color: #003366;
    line-height: 1.4;
}

.video-date {
    margin: 0 1rem 1rem;
    color: #666;
    font-size: 0.9rem;
}

.videos-actions {
    text-align: center;
}

/* Season Celebration */
.season-celebration {
    padding: 4rem 0;
    background: linear-gradient(135deg, #003366 0%, #69BE28 100%);
    color: white;
    text-align: center;
}

.celebration-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.celebration-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #69BE28;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #69BE28;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #69BE28;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #999;
}

.legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #69BE28;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card.featured {
        grid-row: span 1;
    }
    
    .game-score {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-actions {
        flex-direction: column;
    }
    
    .short-actions {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
