/* Digital Cable TV Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.tv-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.tv-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.btn-primary-hero {
    display: inline-block;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.tv-hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Entertainment Options Section */
.entertainment-options-section {
    padding: 80px 20px;
    background: #fff;
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.entertainment-card {
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.entertainment-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.entertainment-icon {
    margin-bottom: 30px;
}

.entertainment-icon img {
    width: 80px;
    height: 80px;
}

.entertainment-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.entertainment-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.entertainment-link {
    display: inline-block;
    color: #0078d4;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entertainment-link:hover {
    color: #005a9e;
}

/* Olympics Section */
.olympics-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.olympics-header {
    text-align: center;
    margin-bottom: 60px;
}

.olympics-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.olympics-header h2 em {
    font-style: italic;
}

.olympics-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.olympics-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.olympics-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.olympics-slide.active {
    display: block;
    opacity: 1;
}

.olympics-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
}

.olympics-slide-content {
    text-align: center;
    padding: 0 20px;
}

.olympics-slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.olympics-slide-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.olympics-disclaimer {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Whatever Section */
.whatever-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.whatever-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.whatever-section h2 em {
    font-style: italic;
}

/* Screen Features Section */
.screen-features-section {
    padding: 80px 20px;
    background: #fff;
}

.screen-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.screen-feature-row:last-child {
    margin-bottom: 0;
}

.screen-feature-reverse {
    direction: rtl;
}

.screen-feature-reverse > * {
    direction: ltr;
}

.screen-feature-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.screen-feature-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.screen-feature-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.screen-feature-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.screen-feature-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.screen-feature-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.screen-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Additional Options Section */
.additional-options-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.additional-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.additional-option-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.additional-option-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.option-icon {
    margin-bottom: 30px;
}

.option-icon img {
    width: 80px;
    height: 80px;
}

.additional-option-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.additional-option-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.option-link {
    display: inline-block;
    color: #0078d4;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.option-link:hover {
    color: #005a9e;
}

/* Deals Section */
.deals-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.deals-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
}

.deals-section h2 em {
    font-style: italic;
}

.deals-placeholder {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    color: #000;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .tv-hero h1 {
        font-size: 3rem;
    }

    .tv-hero h2 {
        font-size: 1.3rem;
    }

    .entertainment-grid {
        gap: 40px;
    }

    .screen-feature-row {
        gap: 40px;
        margin-bottom: 80px;
    }

    .additional-options-grid {
        gap: 40px;
    }

    .olympics-header h2,
    .whatever-section h2,
    .screen-feature-content h3,
    .deals-section h2,
    .services-section h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .tv-hero {
        padding: 80px 20px;
    }

    .tv-hero h1 {
        font-size: 2.5rem;
    }

    .tv-hero h2 {
        font-size: 1.1rem;
    }

    .btn-primary-hero {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .entertainment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .entertainment-card {
        padding: 30px 20px;
    }

    .olympics-section {
        padding: 60px 20px;
    }

    .olympics-header {
        margin-bottom: 40px;
    }

    .screen-features-section {
        padding: 60px 20px;
    }

    .screen-feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .screen-feature-reverse {
        direction: ltr;
    }

    .screen-feature-content h3 {
        font-size: 2rem;
    }

    .screen-feature-content p {
        font-size: 1.1rem;
    }

    .additional-options-section {
        padding: 60px 20px;
    }

    .additional-options-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .deals-section,
    .services-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .olympics-header h2,
    .whatever-section h2,
    .deals-section h2,
    .services-section h2 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 480px) {
    .tv-hero h1 {
        font-size: 2rem;
    }

    .tv-hero h2 {
        font-size: 1rem;
    }

    .btn-primary-hero {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .entertainment-card h3 {
        font-size: 1.75rem;
    }

    .entertainment-card p {
        font-size: 1rem;
    }

    .olympics-header h2 {
        font-size: 1.5rem;
    }

    .olympics-slide-content h3 {
        font-size: 1.5rem;
    }

    .olympics-slide-content p {
        font-size: 1rem;
    }

    .screen-feature-content h3 {
        font-size: 1.75rem;
    }

    .screen-feature-content p {
        font-size: 1rem;
    }

    .additional-option-card h3 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .whatever-section h2,
    .deals-section h2,
    .services-section h2 {
        font-size: 1.5rem;
    }
}

/* Special emphasis styling */
em {
    font-style: italic;
    font-weight: inherit;
}