* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    background: #f8fafc;
    background-attachment: fixed;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    background: #f8fafc;
    background-attachment: fixed;
    color: #334155;
    line-height: 1.6;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Header */
.site-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
}

.logo-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1.5rem;
    overflow: visible;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.primary-btn {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.info-banner i {
    font-size: 1.25rem;
    color: #2563eb;
}

.info-banner p {
    color: #475569;
    font-size: 0.9rem;
}

.info-banner strong {
    color: #1e293b;
    font-weight: 600;
}

/* Sports Section */
.sports-section {
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.section-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stream-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.stream-link:hover {
    border-color: #2563eb;
    background: #f8fafc;
    transform: translateX(5px);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.link-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon i {
    font-size: 1.25rem;
    color: white;
}

.link-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #16a34a;
    font-weight: 600;
    font-size: 0.875rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* About Section */
.about-section {
    padding: 2rem;
}

.about-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.about-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-card i {
    color: #2563eb;
}

.about-card p {
    color: #475569;
    line-height: 1.7;
}

.about-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2rem 0 1rem;
}

.about-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.features, .alternatives {
    list-style: none;
    padding: 0;
}

.features li, .alternatives li {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.features li:last-child, .alternatives li:last-child {
    border-bottom: none;
}

.features strong, .alternatives strong {
    color: #1e293b;
    font-weight: 600;
}

.faq {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #7c3aed;
}

.faq h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faq p {
    color: #475569;
    margin: 0;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.site-footer p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-container {
        padding: 1rem 0.5rem;
    }

    .site-header {
        padding: 2rem 1rem 1.5rem;
    }

    .page-title {
        font-size: 1.25rem;
    }

    .sports-section, .about-section {
        padding: 1.5rem;
    }

    .stream-link {
        padding: 0.875rem 1rem;
    }

    .link-icon {
        width: 36px;
        height: 36px;
    }

    .info-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-wrapper {
        max-width: 240px;
    }

    .primary-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

