/* NOW 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;
}

/* Location Bar */
.location-bar {
    background-color: #f0f0f0;
    padding: 12px 0;
    text-align: center;
}

.location-bar p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.location-link {
    color: #6a1b9a;
    text-decoration: underline;
    margin-left: 5px;
}

.location-link:hover {
    text-decoration: none;
}

/* Hero Section */
.nowtv-hero {
    background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
    padding: 60px 0 80px;
    text-align: center;
}

.hero-logo-wrapper {
    margin-bottom: 40px;
}

.nowtv-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.nowtv-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.price-box {
    margin-bottom: 30px;
}

.price-large {
    font-size: 56px;
    font-weight: 700;
    color: #111;
}

.price-large .currency {
    font-size: 36px;
    vertical-align: super;
}

.price-large .period {
    font-size: 28px;
    font-weight: 400;
}

.hero-actions {
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 48px;
    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);
}

.disclaimer {
    font-size: 13px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.steps-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.step-card p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.step-card a {
    color: #6a1b9a;
    text-decoration: underline;
}

.step-card a:hover {
    text-decoration: none;
}

.steps-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.link-secondary {
    color: #6a1b9a;
    text-decoration: underline;
    font-size: 16px;
}

.link-secondary:hover {
    text-decoration: none;
}

/* Included Section */
.included-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.included-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.feature-icon-wrapper {
    margin-bottom: 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Devices Section */
.devices-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.devices-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.devices-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

/* How to Watch Section */
.how-to-watch-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.how-to-watch-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.spacer-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    display: block;
}

.how-to-list {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
}

.how-to-list ul {
    list-style: none;
    padding: 0;
}

.how-to-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.how-to-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #6a1b9a;
    font-weight: bold;
    font-size: 20px;
}

.how-to-list a {
    color: #6a1b9a;
    text-decoration: underline;
}

.how-to-list a:hover {
    text-decoration: none;
}

.video-link {
    display: inline-block;
    color: #6a1b9a;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
}

.video-link:hover {
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #6a1b9a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #6a1b9a;
    text-decoration: underline;
}

.faq-answer a:hover {
    text-decoration: none;
}

/* More Options Section */
.more-options-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.more-options-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.options-content {
    max-width: 800px;
    margin: 0 auto;
}

.options-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.options-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #6a1b9a;
}

.options-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    background-color: #fff;
}

.legal-text {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-text p {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.legal-text a {
    color: #6a1b9a;
    text-decoration: underline;
}

.legal-text a:hover {
    text-decoration: none;
}

/* 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) {
    .nowtv-hero h1 {
        font-size: 52px;
    }
    
    .nowtv-logo {
        max-width: 400px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nowtv-hero h1 {
        font-size: 58px;
    }
    
    .steps-section h2,
    .included-section h2,
    .devices-section h2,
    .how-to-watch-section h2,
    .faq-section h2,
    .more-options-section h2 {
        font-size: 42px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .nowtv-hero h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .price-large {
        font-size: 42px;
    }
    
    .steps-section h2,
    .included-section h2,
    .devices-section h2,
    .how-to-watch-section h2,
    .faq-section h2,
    .more-options-section h2 {
        font-size: 28px;
    }
    
    .step-card p {
        font-size: 16px;
    }
    
    .how-to-list {
        text-align: left;
    }
}