/* Channel Lineup 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;
}

/* Hero Section */
.channel-lineup-hero {
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.7;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.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);
}

/* Address Finder Section */
.address-finder-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.address-finder-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #111;
}

.address-form {
    max-width: 600px;
    margin: 0 auto 20px;
}

.input-group {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.address-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.address-input:focus {
    border-color: #6a1b9a;
}

.signin-text {
    font-size: 14px;
    color: #555;
}

.signin-text a {
    color: #6a1b9a;
    text-decoration: underline;
}

.signin-text a:hover {
    text-decoration: none;
}

/* Loading Section */
.loading-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.loading-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #111;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6a1b9a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.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;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 52px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .input-group {
        flex-direction: row;
    }
    
    .address-input {
        flex: 1;
    }
    
    .btn-primary {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 58px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .address-finder-section h3 {
        font-size: 20px;
    }
}