/* Sports & News TV Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Xfinity Standard', Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Super Bowl Hero Section */
.superbowl-hero {
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.superbowl-hero .hero-logo {
    max-width: 300px;
    width: 100%;
    margin-bottom: 30px;
}

.superbowl-hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.superbowl-hero .hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.price-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: inline-block;
    margin-bottom: 30px;
}

.price-large {
    font-size: 48px;
    font-weight: 700;
}

.price-large .currency {
    font-size: 32px;
    vertical-align: super;
}

.price-large .period {
    font-size: 24px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #6a1b9a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #7b1fa2;
    transform: translateY(-2px);
}

.link-secondary {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
}

.link-secondary:hover {
    text-decoration: none;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* Lineup Section */
.lineup-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f8f8;
}

.lineup-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.channel-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.channel-logo-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.channel-logo-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.channel-logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
}

.link-primary {
    color: #6a1b9a;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 600;
}

.link-primary:hover {
    text-decoration: none;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background-color: #fff;
}

.comparison-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: #f0f0f0;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid #ddd;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.comparison-table .feature-col {
    width: 40%;
}

.comparison-table .provider-col {
    width: 20%;
    text-align: center;
}

.comparison-table .feature-name {
    font-weight: 400;
    color: #333;
}

.comparison-table .provider-value {
    text-align: center;
    font-weight: 600;
}

.comparison-table .xfinity-col {
    background-color: #f0e6f6;
}

.comparison-table img {
    max-width: 24px;
    height: auto;
}

/* Ultimate Viewing Section */
.ultimate-viewing-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.ultimate-viewing-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #111;
}

.viewing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.viewing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.viewing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.viewing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.viewing-content {
    padding: 25px;
}

.viewing-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.viewing-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.disclaimer-small {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Exclusive Features Section */
.exclusive-features-section {
    padding: 80px 0;
    background-color: #fff;
}

.exclusive-features-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #111;
}

.exclusive-feature-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.exclusive-feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #6a1b9a;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.feature-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

/* Choose How to Watch Section */
.choose-watch-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.choose-watch-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

/* More Ways Section */
.more-ways-section {
    padding: 80px 0;
    background-color: #fff;
}

.more-ways-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #111;
}

.more-ways-section h2 em {
    font-style: italic;
    color: #6a1b9a;
}

.league-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.league-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.league-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.league-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.league-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.league-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .superbowl-hero h1 {
        font-size: 42px;
    }
    
    .superbowl-hero .hero-logo {
        max-width: 400px;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .channel-logos-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .exclusive-feature-card {
        flex-direction: row;
        align-items: center;
    }
    
    .feature-text,
    .feature-image {
        flex: 1;
    }
    
    .league-card {
        flex-direction: row;
        align-items: center;
    }
    
    .league-content,
    .league-image {
        flex: 1;
    }
    
    .league-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .superbowl-hero h1 {
        font-size: 48px;
    }
    
    .lineup-section h2,
    .comparison-section h2,
    .ultimate-viewing-section h2,
    .exclusive-features-section h2,
    .more-ways-section h2,
    .choose-watch-section h2 {
        font-size: 42px;
    }
    
    .viewing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Table Responsive */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .comparison-table .feature-col {
        width: 35%;
    }
    
    .comparison-table .provider-col {
        width: 21.66%;
    }
}