/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #1a1a2e;
    --accent: #16213e;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --gray: #f5f5f5;
    --border: #e0e0e0;
    --success: #28a745;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

/* Navigation */
.navbar {
    background: var(--secondary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255,107,53,0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(255,107,53,0.3);
}

.hero-badge.trial {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
    border-color: rgba(40, 167, 69, 0.3);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.feature-icon {
    font-size: 20px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.trust-label {
    font-size: 13px;
    opacity: 0.8;
}

/* Hero Device Mockup */
.hero-image {
    display: flex;
    justify-content: center;
}

.device-mockup {
    position: relative;
}

.firestick-device {
    background: linear-gradient(145deg, #2a2a4a 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    width: 320px;
}

.screen {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.channel-preview {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex: 1;
}

.channel-item {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.channel-item.sports { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.channel-item.movies { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.channel-item.news { background: linear-gradient(135deg, #3498db, #2980b9); }
.channel-item.entertainment { background: linear-gradient(135deg, #f39c12, #e67e22); }

.device-brand {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Styles */
.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-card.featured-adult {
    border: 2px solid var(--primary);
    position: relative;
}

.feature-card.featured-adult::before {
    content: 'OPTIONAL ADD-ON';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.addon-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Pricing Preview */
.pricing-preview {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary);
}

.price {
    margin-bottom: 10px;
}

.price .currency {
    font-size: 28px;
    font-weight: 600;
    vertical-align: top;
}

.price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary);
}

.billing {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

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

/* Setup Steps */
.setup-steps {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
}

.setup-steps .section-title {
    color: var(--white);
}

.setup-steps .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.steps {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-content p {
    opacity: 0.8;
    line-height: 1.7;
}

.setup-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

.guarantee {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 15px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-features,
    .trust-badges {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-grid.detailed {
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    .connection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .pricing-preview {
        padding: 60px 0;
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price .amount {
        font-size: 42px;
    }
    
    .setup-steps {
        padding: 60px 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .connection-grid {
        grid-template-columns: 1fr;
    }
    
    .multi-connection {
        margin-top: 50px;
    }
    
    .multi-connection h2 {
        font-size: 24px;
    }
    
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero p {
        font-size: 15px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .quick-subscribe {
        padding: 25px;
    }
    
    .guarantee-box {
        padding: 30px 20px;
    }
    
    .payment-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-icon {
        width: 100%;
        max-width: 250px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .feature-icon-large {
        font-size: 36px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .pricing-header h3 {
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 22px;
    }
}

/* Free Trial Banner */
.trial-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 60px 0;
}

.trial-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,107,53,0.15);
    border: 2px solid var(--primary);
    padding: 40px;
    border-radius: 16px;
}

.trial-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.trial-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.trial-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    max-width: 700px;
}

.trial-cta {
    display: flex;
    gap: 15px;
}

.trial-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.trial-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

@media (max-width: 768px) {
    .trial-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .trial-icon {
        font-size: 48px;
    }
    
    .trial-content h2 {
        font-size: 22px;
    }
    
    .trial-cta {
        flex-direction: column;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Section Detailed */
.pricing-section {
    padding: 80px 0;
    background: var(--gray);
}

.pricing-grid.detailed {
    max-width: 1100px;
}

.pricing-body {
    padding: 20px 0;
}

.pricing-features.detailed li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.pricing-features .check {
    color: var(--success);
    font-weight: bold;
}

.addon-note {
    background: rgba(255, 107, 53, 0.1);
    border: 1px dashed var(--primary);
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.addon-note p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
}

.pricing-footer {
    margin-top: 20px;
}

.btn-block {
    width: 100%;
}

/* Multi-connection */
.multi-connection {
    margin-top: 80px;
    text-align: center;
}

.multi-connection h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.multi-connection > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.connection-grid {
    display: grid;
            grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.connection-grid.single {
    grid-template-columns: 1fr;
    max-width: 400px;
}

.connection-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border);
}

.connection-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.connection-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.connection-card p {
    color: var(--text-light);
    font-size: 14px;
}

.connection-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.connection-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.payment-icon {
    background: var(--gray);
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 500;
}

.payment-note {
    color: var(--text-light);
    font-size: 14px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: var(--gray);
}

.guarantee-box {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid var(--success);
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.guarantee-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.guarantee-box p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.contact-methods h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-card.clickable {
    cursor: pointer;
    display: block;
}

.contact-card.clickable:hover {
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.contact-card p {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.response-time {
    font-size: 12px;
    color: var(--success);
    background: rgba(40, 167, 69, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.support-hours {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.support-hours h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.support-hours p {
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Trial Section */
.trial-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.trial-intro {
    max-width: 800px;
    margin: 0 auto;
}

.trial-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.trial-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.trial-intro > p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.trial-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trial-feature {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trial-section {
        padding: 60px 20px;
    }
    
    .trial-intro h2 {
        font-size: 28px;
    }
    
    .trial-intro > p {
        font-size: 16px;
    }
    
    .trial-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Quick Subscribe */
.quick-subscribe {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quick-subscribe h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.quick-subscribe > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.subscribe-steps {
    margin-bottom: 30px;
}

.sub-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.step-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.step {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }
/* ========================================
   ADDITIONAL PAGES CSS
   ======================================== */

/* Blog Page */
.blog-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #f7931e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* Channels Page */
.channels-content {
    padding: 60px 0;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    color: var(--white);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.channels-intro {
    text-align: center;
    margin-bottom: 40px;
}

.channels-intro h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.channel-count {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.category-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Setup Page */
.setup-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.setup-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.setup-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.setup-content {
    padding: 60px 0;
}

.setup-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.setup-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.setup-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.setup-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.setup-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.setup-steps {
    counter-reset: step;
}

.setup-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.setup-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* Article Pages */
.article-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0 60px;
}

.article-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.article-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary);
}

.article-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text);
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.tip-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.tip-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .blog-grid,
    .category-grid,
    .setup-methods {
        grid-template-columns: 1fr;
    }
    
    .blog-hero h1,
    .setup-hero h1,
    .article-hero h1 {
        font-size: 28px;
    }
}

/* Setup Method Styles */
.setup-method {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.setup-method h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    font-size: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-details h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.step-details p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.step-note {
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid var(--primary);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.setup-tips {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.setup-tips h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.setup-tips ul {
    list-style: none;
    padding: 0;
}

.setup-tips li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.setup-tips li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .setup-method {
        padding: 25px;
    }
    
    .setup-method h3 {
        font-size: 20px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* Breadcrumb Styles */
.breadcrumb {
    background: var(--gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb li:not(:last-child):after {
    content: ">";
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: var(--text-light);
}

/* Article Meta */
.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mobile Menu Fix */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        display: flex !important;
    }
    
    .nav-links.active {
        transform: translateY(0) !important;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        color: var(--white);
    }
    
    .navbar .btn {
        display: none;
    }
}

/* Channel List & Tags */
.channel-list {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.channel-list h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.channels-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.channel-tag {
    background: var(--gray);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.channel-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* VOD Section */
.vod-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.vod-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.vod-section > p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vod-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.vod-stat {
    text-align: center;
}

.vod-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.vod-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .channel-list {
        padding: 25px;
    }
    
    .channel-list h3 {
        font-size: 20px;
    }
    
    .channels-grid {
        gap: 8px;
    }
    
    .channel-tag {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .vod-section {
        padding: 40px 25px;
    }
    
    .vod-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Setup Page Styles */
.setup-content {
    padding: 60px 0;
}

.setup-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.setup-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.setup-intro p {
    color: var(--text-light);
    font-size: 16px;
}

.setup-method {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.setup-method h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    font-size: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-details h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.step-details p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.step-note {
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid var(--primary);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

/* Video Tips */
.video-tips {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.video-tips h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tip-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tip-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.tip-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.tip-item strong {
    color: var(--primary);
}

/* Troubleshooting */
.troubleshooting {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.troubleshooting h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--secondary);
    text-align: center;
}

.trouble-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.trouble-item:last-child {
    border-bottom: none;
}

.trouble-item h4 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.trouble-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .setup-method {
        padding: 25px;
    }
    
    .setup-method h3 {
        font-size: 20px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .video-tips {
        padding: 30px 25px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .troubleshooting {
        padding: 25px;
    }
}
