/*
Theme Name: SuperIPTV
Theme URI: https://example.com/superiptv
Author: SuperIPTV Team
Author URI: https://example.com
Description: A high-conversion IPTV landing page theme with dark mode and Tailwind CSS.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, landing-page, iptv, responsive
Text Domain: superiptv
*/

/* Tailwind is loaded via CDN in header.php for this simple theme version.
   Below is the custom CSS from your original HTML file.
*/

body {
    background-color: #0f0f0f;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0f0f;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff3b3f;
}

/* Gradient Overlay for Hero */
.hero-bg {
    background: radial-gradient(circle at center top, #2a1011 0%, #0f0f0f 60%);
}

/* Movie Grid Hover Effect */
.poster-card {
    transition: transform 0.3s ease, filter 0.3s ease;
}
.poster-card:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(255, 59, 63, 0.2);
}

/* Pricing Card Hover */
.pricing-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.pricing-card:hover {
    border-color: #ff3b3f;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(255, 59, 63, 0.15);
}

/* FAQ Accordion Details */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary ~ * {
    animation: sweep .3s ease-in-out;
}
@keyframes sweep {
    0%    {opacity: 0; transform: translateY(-10px)}
    100%  {opacity: 1; transform: translateY(0)}
}

/* Brand Grayscale */
.brand-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}
.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}