/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #c22c2c;
    background: #374151;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #203450;
    padding: 1rem 0;
    border-bottom: 1px solid #203450;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .highlight {
    color: #00a8ff;
    font-weight: 800;
}

.logo p {
    color: #8a94a6;
    font-size: 0.9rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-top: 1rem;
}

nav a {
    color: #e4e6eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a:hover {
    color: #00a8ff;
    transform: translateY(-2px);
}

.btn-watch {
    background: linear-gradient(135deg, #00a8ff, #0097e6);
    color: white !important;
    padding: 0.6rem 1.8rem !important;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.btn-watch:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid #2a3040;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero h2 .highlight {
    background: linear-gradient(135deg, #00a8ff, #0097e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #b0b7c3;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(26, 31, 46, 0.7);
    border-radius: 12px;
    min-width: 120px;
    border: 1px solid #2a3040;
    transition: transform 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: #00a8ff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00a8ff;
    line-height: 1;
}

.stat-label {
    color: #8a94a6;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00a8ff, #0097e6);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 255, 0.4);
}

/* Events Section */
.events-section {
    margin: 4rem 0;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2a3040;
}

.events-header h2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.events-filter {
    display: flex;
    gap: 0.5rem;
    background: rgba(26, 31, 46, 0.7);
    padding: 0.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #8a94a6;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    color: #00a8ff;
    background: rgba(0, 168, 255, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #00a8ff, #0097e6);
    color: white;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.event-card {
    background: rgba(26, 31, 46, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a3040;
    transition: all 0.3s;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: #00a8ff;
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2);
}

.event-card.live {
    border-left: 4px solid #ff4757;
}

.event-card.upcoming {
    border-left: 4px solid #00a8ff;
}

.event-header {
    padding: 1.5rem;
    background: rgba(42, 48, 64, 0.8);
    border-bottom: 1px solid #2a3040;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-sport {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #00a8ff;
}

.event-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-live {
    background: #ff4757;
    color: white;
}

.status-upcoming {
    background: #00a8ff;
    color: white;
}

.event-body {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #d6d451;
    line-height: 1.4;
    font-weight: 600;
}

.event-details {
    color: #8a94a6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-time {
    color: #00a8ff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-footer {
    padding: 1rem 1.5rem;
    background: rgba(42, 48, 64, 0.5);
    border-top: 1px solid #2a3040;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viewers-count {
    color: #8a94a6;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.watch-btn {
    background: linear-gradient(135deg, #00a8ff, #0097e6);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.events-footer {
    text-align: center;
    color: #8a94a6;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2a3040;
}

/* Article Styles */
.content-article {
    background: rgba(26, 31, 46, 0.7);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid #2a3040;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #00a8ff;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #8a94a6;
    font-size: 0.9rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    color: #00a8ff;
    margin: 2.5rem 0 1.5rem;
    font-size: 1.8rem;
}

.article-content h3 {
    color: #fff;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #d1d8e0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content ul, .article-content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    color: #d1d8e0;
    line-height: 1.6;
}

.intro-box {
    background: rgba(0, 168, 255, 0.1);
    border-left: 4px solid #00a8ff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.info-box {
    background: rgba(0, 168, 255, 0.1);
    border-left: 4px solid #00a8ff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.warning-box {
    background: rgba(255, 71, 87, 0.1);
    border-left: 4px solid #ff4757;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(42, 48, 64, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00a8ff;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00a8ff;
}

.feature-card h4 {
    color: #00a8ff;
    margin-bottom: 0.8rem;
}

.quality-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(42, 48, 64, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.quality-table th {
    background: #2a3040;
    padding: 1.2rem;
    text-align: left;
    color: #00a8ff;
}

.quality-table td {
    padding: 1rem;
    border-bottom: 1px solid #3a4050;
}

.quality-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.quality-badge.hd {
    background: #00a8ff;
}

.quality-badge.sd {
    background: #2ed573;
}

.quality-badge.mobile {
    background: #ff9f43;
}

/* FAQ */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: rgba(42, 48, 64, 0.5);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #3a4050;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(0, 168, 255, 0.1);
}

.faq-question h4 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.conclusion-box {
    background: rgba(0, 168, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    border: 2px solid #00a8ff;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.tag {
    background: rgba(0, 168, 255, 0.2);
    color: #00a8ff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 16px;
    margin-top: 2rem;
    border: 2px solid #00a8ff;
}

.cta-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.note {
    color: #8a94a6;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #0f1419;
    margin-top: 4rem;
    padding: 3rem 0 1rem;
    border-top: 2px solid #00a8ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: #00a8ff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #b0b7c3;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: #00a8ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a3040;
    color: #8a94a6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        min-width: 200px;
    }
    
    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .events-filter {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .content-article {
        padding: 2rem 1.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .content-article {
        padding: 1.5rem 1rem;
    }
    
    .article-header h1 {
        font-size: 1.6rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}