/* Custom Styles & Premium IPTV Theme Overrides */
:root {
    --bg-main: #0b0914;
    --bg-card: #151128;
    --bg-card-hover: #1d1838;
    --accent-purple: #7c3aed;
    --accent-indigo: #6366f1;
    --accent-blue: #3b82f6;
    --neon-glow: rgba(124, 58, 237, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-main);
    color: #f3f4f6;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0b0914;
}
::-webkit-scrollbar-thumb {
    background: #2e2654;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Glassmorphism & Gradient Effects */
.glass-card {
    background: rgba(21, 17, 40, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

.glass-card:hover {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

.glow-btn {
    position: relative;
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.6);
}

.popular-card {
    border: 2px solid #7c3aed !important;
    position: relative;
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.35);
}

.badge-pop {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Accordion FAQ Customization */
.accordion-item {
    border: 1px solid var(--border-color);
    background: rgba(21, 17, 40, 0.6);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: #9ca3af;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.accordion-item.active {
    border-color: rgba(124, 58, 237, 0.4);
}

.accordion-item.active .icon-chevron {
    transform: rotate(180deg);
}

/* Channel & Partner Marquee / Grid */
.brand-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s;
}

.brand-badge:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
}
