/* 
  IPTV Provider Premium Styles 
*/

:root {
    /* Colors */
    --bg-main: #0a0c10;
    --bg-secondary: #12141d;
    --bg-card: #181b26;
    --bg-card-hover: #1e2230;
    
    --accent-orange: #ff7a00;
    --accent-orange-hover: #e06b00;
    --orange-glow: rgba(255, 122, 0, 0.3);
    
    --text-main: #ffffff;
    --text-muted: #94a0b8;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 122, 0, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Transitions */
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography Utilities */
.text-orange { color: var(--accent-orange); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }
.text-success { color: #10b981; }
.text-danger { color: #ef4444; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 80px 0;
}
.bg-darker {
    background-color: var(--bg-secondary);
}
.flex-center-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 15px var(--orange-glow);
}
.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-orange);
    border: 1px solid var(--accent-orange);
}
.btn-outline:hover {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 15px var(--orange-glow);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 12, 16, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.logo-icon {
    color: var(--accent-orange);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}
.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.language-select {
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 220px 0 120px;
    text-align: center;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(10, 12, 16, 0.9) 0%, rgba(10, 12, 16, 0.7) 50%, var(--bg-main) 100%), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 122, 0, 0.1);
    color: var(--accent-orange);
    border: 1px solid var(--border-highlight);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding: 0 20px;
}
.hero-cta {
    margin-bottom: 40px;
}
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}
.hero-features i {
    margin-right: 5px;
}

/* Glow Effects */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}
.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 122, 0, 0.15);
    top: -100px;
    right: -100px;
}
.glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(67, 56, 202, 0.15); /* Subtle purple/blue hint */
    bottom: -200px;
    left: -200px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover {
    border-color: var(--border-highlight);
}
.pricing-card.popular {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,122,0,0.05) 100%);
    border-color: var(--accent-orange);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.plan-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.plan-features {
    margin-bottom: 30px;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #ccc;
}
.plan-features li i {
    color: var(--accent-orange);
}
.price-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 8px;
    flex-wrap: wrap;
}
.price-duration-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
}
.price-duration-btn:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.price-duration-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 2px 10px var(--orange-glow);
}
.price-display {
    text-align: center;
    margin-bottom: 25px;
}
.price-display .price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1;
}
.price-display .period {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.crypto-notice {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    color: #ccc;
    background: rgba(255,255,255,0.03);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Devices Section */
.devices {
    position: relative;
    background-image: linear-gradient(180deg, var(--bg-main) 0%, rgba(10, 12, 16, 0.8) 50%, var(--bg-main) 100%), url('assets/images/devices.png');
    background-size: cover;
    background-position: center top;
}
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}
.device-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px 15px;
    text-align: center;
    transition: var(--transition);
}
.device-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
}
.device-card i {
    font-size: 2.2rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}
.device-card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.device-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Channels Section */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.channel-card:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}
.channel-card:hover p {
    color: rgba(255,255,255,0.9);
}
.channel-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-orange);
    transition: var(--transition);
}
.channel-card:hover i {
    color: #fff;
}
.channel-card h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}
.channel-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}
.testimonial-card .user-info {
    margin-bottom: 15px;
}
.testimonial-card .user-info h4 {
    font-size: 1.1rem;
}
.testimonial-card .user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.testimonial-card .stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-size: 0.95rem;
    color: #ccc;
    font-style: italic;
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.compare-table th, .compare-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.compare-table th {
    background: rgba(0,0,0,0.3);
    font-weight: 600;
    font-family: var(--font-heading);
    color: #fff;
}
.compare-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}
.compare-table .highlight-col {
    background: rgba(255,122,0,0.05);
    border-left: 1px solid var(--border-highlight);
    border-right: 1px solid var(--border-highlight);
}
.compare-table th.highlight-col {
    background: rgba(255,122,0,0.15);
    border-top: 1px solid var(--border-highlight);
}
.badge-mini {
    background: var(--accent-orange);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 5px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
}
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--accent-orange);
}
.accordion-header.active i {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.trust-card {
    background: rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    padding: 30px 20px;
}
.trust-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}
.trust-card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.payment-icons span {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 5px;
    font-weight: 600;
    color: #fff;
}
.payment-icons span i {
    margin-right: 5px;
    color: var(--accent-orange);
}

/* Footer */
.footer {
    background: #050608;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 60px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col {
    flex: 1 1 200px;
}
.brand-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.links-col h4, .contact-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.links-col h4::after, .contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
}
.links-col ul li {
    margin-bottom: 10px;
}
.links-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.links-col ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}
.contact-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
}
.social-links a:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-3px);
}
.footer-bottom {
    background: #000;
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
}
.floating-wa:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .nav-links, .nav-actions {
        display: none; 
    }
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .section-padding {
        padding: 60px 0;
    }
    
    /* Fixed mobile navigation */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 12, 16, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        z-index: 1000;
        text-align: center;
    }
    .nav-links.active a {
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links.active a:last-child {
        border-bottom: none;
    }
    
    /* Responsive Comparison Table */
    .compare-table, .compare-table thead, .compare-table tbody, .compare-table th, .compare-table td, .compare-table tr { 
		display: block; 
	}
	.compare-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.compare-table tr { border-bottom: 2px solid var(--border-color); margin-bottom: 15px; background: var(--bg-card); border-radius: 8px; padding: 10px;}
	.compare-table td { 
		border: none;
		border-bottom: 1px solid rgba(255,255,255,0.05); 
		position: relative;
		padding-left: 50%; 
        text-align: right;
	}
	.compare-table td:before { 
		position: absolute;
		top: 20px;
		left: 20px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: var(--text-muted);
	}
	.compare-table td:nth-of-type(1):before { content: "Features"; }
	.compare-table td:nth-of-type(2):before { content: "IPTV Encoder TOP"; color: var(--accent-orange); }
	.compare-table td:nth-of-type(3):before { content: "Generic IPTV 1"; }
	.compare-table td:nth-of-type(4):before { content: "Other IPTV 2"; }
	.compare-table td:nth-of-type(5):before { content: "Standard Cable"; }
    
    .compare-table .highlight-col {
        border-left: none;
        border-right: none;
        background: rgba(255,122,0,0.05);
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Page Headers */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.1) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-color);
}
.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}


/* =========================================
   BLOG & ARTICLE STYLES
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}
.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-weight: 600;
}
.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}
.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-read-more {
    color: var(--text-main);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.blog-read-more i {
    color: var(--accent-orange);
    transition: transform 0.3s;
}
.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
}

/* Single Article Layout */
.article-header {
    padding: 180px 0 60px;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.9) 0%, var(--bg-main) 100%);
    text-align: center;
}
.article-header h1 {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.2;
}
.article-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.article-hero-img {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 0 auto 60px;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}
.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
}
.article-content h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    color: var(--text-main);
}
.article-content h3 {
    font-size: 1.5rem;
    margin: 40px 0 15px;
}
.article-content p {
    margin-bottom: 25px;
}
.article-content img {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid var(--border-color);
}
.article-content a {
    color: var(--accent-orange);
    text-decoration: underline;
}
.article-content a:hover {
    color: #fff;
}
.article-content ul, .article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}
.article-content li {
    margin-bottom: 10px;
}

/* =========================================
   ARTICLE RICH TEXT ELEMENTS
   ========================================= */

/* Important Alert Box */
.article-alert {
    background: rgba(255, 122, 0, 0.1);
    border-left: 4px solid var(--accent-orange);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.article-alert i {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-top: 3px;
}
.article-alert-content h4 {
    color: var(--accent-orange);
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.article-alert-content p {
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    color: #e2e8f0;
}

/* Article Tables */
.article-table-container {
    overflow-x: auto;
    margin: 35px 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.article-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}
.article-table th {
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.article-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    color: #cbd5e1;
}
.article-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

/* Q&A / FAQ Box inside Article */
.article-qa {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 35px 0;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.article-qa h3 {
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px !important;
}
.article-qa h3 i {
    color: var(--accent-orange);
}
.qa-item {
    margin-bottom: 20px;
}
.qa-item:last-child {
    margin-bottom: 0;
}
.qa-q {
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}
.qa-a {
    color: #94a0b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Article Lists enhancements */
.article-content ul {
    background: rgba(0,0,0,0.15);
    padding: 25px 25px 25px 45px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.article-content ul li {
    margin-bottom: 12px;
    position: relative;
    list-style-type: none;
}
.article-content ul li::before {
    content: '•';
    color: var(--accent-orange);
    position: absolute;
    left: -20px;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* --- UPDATED PREMIUM FAQ DESIGN --- */
.accordion {
    max-width: 850px;
    margin: 0 auto;
}
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.accordion-item:hover {
    border-color: rgba(255,122,0, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}
.accordion-header {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    color: var(--text-main);
    font-size: 1.2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.accordion-header i {
    color: var(--accent-orange);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
    font-size: 1.1rem;
    background: rgba(255,122,0, 0.1);
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.accordion-header:hover {
    color: var(--accent-orange);
}
.accordion-header.active {
    color: var(--accent-orange);
}
.accordion-header.active i {
    transform: rotate(180deg);
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 15px rgba(255,122,0, 0.4);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0,0,0,0.2);
    border-radius: 0 0 12px 12px;
}
.accordion-content p {
    padding: 20px 30px 30px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}
