/* Global Styles */
:root {
    --primary-color: #e63946; /* Vibrant Red for Sports energy */
    --secondary-color: #1d3557; /* Deep Blue */
    --accent-color: #457b9d;
    --background-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #333333;
    --light-text: #666666;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c; /* Dark text for 'Stream' */
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo .highlight {
    color: var(--primary-color); /* Red for 'East' */
    font-style: italic;
}

.logo i {
    color: var(--primary-color);
    font-size: 2.4rem;
    filter: drop-shadow(0 2px 4px rgba(230, 57, 70, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary:hover {
    color: var(--primary-color);
}

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

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

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.8)), url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.live-tag {
    background-color: #e63946;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 1;
    color: #ffffff;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Sports Categories */
.sports-categories {
    padding: 30px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.sport-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.0);
}

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

.sport-card .icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    color: var(--primary-color);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.sport-card:hover .icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg);
}

.sport-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    transition: color 0.3s ease;
}

.sport-card:hover h3 {
    color: var(--primary-color);
}

/* Article Section */
.info-article {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.article-content {
    max-width: 1200px;
    margin: 0 auto;
}

.main-heading {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
}

/* Article Grid (Cards) */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background-color: #f8f9fa; /* Light theme match */
    border-radius: 12px;
    padding: 30px;
    color: var(--text-color);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.article-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.article-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.article-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Long Form Content */
.long-form-content {
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    color: var(--text-color);
}

.long-form-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.long-form-content h3:first-child {
    margin-top: 0;
}

.long-form-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #4a5568;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: var(--text-color);
    border-top: 1px solid #eee;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.feature-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments for Article */
@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .long-form-content {
        padding: 25px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--primary-color); /* Distinct left border like screenshot */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.faq-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}


/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-links {
        gap: 15px;
        flex-direction: column;
    }
}