/* OMN IPTV - Premium Dark Green Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --secondary-color: #081c15;
    --text-color: #ffffff;
    --text-muted: #b7e4c7;
    --bg-dark: #050f0a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 { color: #ffffff; line-height: 1.2; margin-bottom: 1rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }

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

section {
    padding: 80px 0;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 15, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

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

.header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__logo span { color: var(--primary-light); }

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header__nav-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.header__nav-item a:hover { color: var(--primary-light); }

.header__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Side Menu */
.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    transition: var(--transition);
    padding: 4rem 2rem;
    border-left: 1px solid var(--glass-border);
}

.header__mobile-menu.active { right: 0; }

.header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.header__mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    padding: 140px 5px 80px 5px; /* Hero padding 5px as requested */
    text-align: center;
    background: radial-gradient(circle at center, rgba(45, 106, 79, 0.2) 0%, rgba(5, 15, 10, 1) 70%);
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; max-width: 700px; margin: 0 auto 2.5rem; }

/* Hot Player Preview */
.tv-container {
    max-width: 900px;
    margin: 40px auto 0;
    perspective: 1000px;
}

.tv-content {
    background: #000;
    border: 8px solid #333;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 20px;
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tv-logo-area { display: flex; align-items: center; gap: 10px; }
.tv-logo { display: flex; align-items: center; gap: 5px; font-weight: 600; color: #fff; }
.tv-logo-icon { width: 24px; color: #ff4d4d; }
.tv-version { font-size: 12px; color: #888; }

.status-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-active { color: #4ade80; display: flex; align-items: center; gap: 4px; }
.status-expire { color: #f87171; display: flex; align-items: center; gap: 4px; }

.tv-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tv-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tv-card.active {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.4);
}

.tv-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-card-icon svg, .tv-card-icon img { width: 100%; height: auto; }

.tv-footer { margin-top: 20px; }
.tv-icon-group { display: flex; gap: 15px; justify-content: flex-end; }
.tv-icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Comparison Table */
.comparison {
    background: var(--secondary-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th { background: var(--primary-dark); color: #fff; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; }
.comparison-table .highlight { color: var(--primary-light); font-weight: 700; }

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 40px;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.pricing-card:hover { transform: translateY(-10px); }

.price { font-size: 3rem; font-weight: 700; margin: 1rem 0; }
.price span { font-size: 1rem; color: var(--text-muted); }

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover { background: var(--primary-light); transform: scale(1.05); }
.btn--outline { background: transparent; border: 2px solid var(--primary-color); }

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-light);
    font-weight: bold;
}

.pricing-features li.disabled {
    color: #555;
    text-decoration: line-through;
}

.pricing-features li.disabled::before { content: "×"; color: #555; }

/* Multi-Screen Sections */
.multi-screen-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 40px;
}

.multi-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    transition: var(--transition);
}

.multi-card .pricing-features {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem 2rem;
    margin: 1rem 0;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

/* Image Carousels */
.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-track img {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Low opacity border as requested */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel--devices img { aspect-ratio: 1 / 1; object-fit: cover; width: 250px; }
.carousel--logos img { aspect-ratio: 16 / 9; width: 200px; }
.carousel--sport img { aspect-ratio: 9 / 16; width: 200px; object-fit: cover; }
.carousel--wtsp img { aspect-ratio: 473 / 1024; width: 220px; }

/* 3-Step Activation */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 40px;
}

.step-card {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: 0.3;
}

/* FAQs */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

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

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

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

/* Footer */
footer {
    background: var(--secondary-color);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 60px;
}

.footer-links h4 { margin-bottom: 1.5rem; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .header__nav-list { display: none; }
    .header__toggle { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .tv-cards { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .multi-card { flex-direction: column; text-align: center; gap: 1rem; }
}
