.elementor-9621 .elementor-element.elementor-element-7a406e5{--display:flex;}/* Start custom CSS *//* ==========================================================================
   kopeniptvnl.nl - Isolated TivimatePrime-Style Design System (Safe for WoodMart)
   ========================================================================== */

/* 1. Design System & CSS Variables */
:root {
    --bg-base: #0b1218;         /* Deep Midnight Black */
    --bg-surface: #121e2a;      /* Slate Blue Card Background */
    --bg-surface-hover: #192737;
    --border-color: rgba(28, 135, 206, 0.15);
    --border-color-hover: rgba(28, 135, 206, 0.35);
    
    /* Tivimate Royal Blue Theme */
    --primary-hue: 204;
    --primary: #1c87ce;         /* Royal Blue Accent */
    --primary-glow: rgba(28, 135, 206, 0.3);
    
    --secondary-hue: 211;
    --secondary: #121e2a;       /* Slate Blue */
    --secondary-glow: rgba(18, 30, 42, 0.5);
    
    --accent-glow: linear-gradient(135deg, #1c87ce 0%, #3b82f6 100%);
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-inverse: #0f172a;
    
    --font-heading: 'Montserrat', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(28, 135, 206, 0.25);
    --backdrop-blur: blur(12px);
}

/* 2. Isolated Page Scope Resets (Prevents WoodMart site-wide overrides) */
.custom-iptv-landing {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
    width: 100%;
}

.custom-iptv-landing *, 
.custom-iptv-landing *::before, 
.custom-iptv-landing *::after {
    box-sizing: border-box;
}

/* Elegant Royal Blue Ambient Glow Spheres (Scoped) */
.custom-iptv-landing::before, 
.custom-iptv-landing::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.custom-iptv-landing::before {
    background: var(--primary);
    top: -150px;
    right: -100px;
}

.custom-iptv-landing::after {
    background: #2563eb;
    bottom: 25%;
    left: -200px;
}

/* Scoped Typography */
.custom-iptv-landing h1, 
.custom-iptv-landing h2, 
.custom-iptv-landing h3, 
.custom-iptv-landing h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #ffffff;
}

.custom-iptv-landing p {
    color: var(--text-muted);
}

.custom-iptv-landing a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* 3. Scoped UI Components with Unique Namespace (Safe from class collision) */

/* Glassmorphic Container */
.custom-iptv-landing .ki-glass-card {
    background: var(--bg-surface);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    position: relative;
    z-index: 2;
}

.custom-iptv-landing .ki-glass-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

/* Premium Gradient Text */
.custom-iptv-landing .ki-gradient-text {
    background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-iptv-landing .ki-accent-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #1c87ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Namespaced Buttons */
.custom-iptv-landing .ki-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.95rem;
    gap: 0.5rem;
}

.custom-iptv-landing .ki-btn-primary {
    background: var(--primary);
    color: var(--text-main);
    box-shadow: 0 6px 20px -3px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.custom-iptv-landing .ki-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.6s;
}

.custom-iptv-landing .ki-btn-primary:hover::before {
    left: 100%;
}

.custom-iptv-landing .ki-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -2px var(--primary-glow), 0 0 15px rgba(28, 135, 206, 0.4);
    background: #2398e5;
}

.custom-iptv-landing .ki-btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.custom-iptv-landing .ki-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(28, 135, 206, 0.5);
    transform: translateY(-2px);
}

/* Badge System */
.custom-iptv-landing .ki-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    gap: 0.35rem;
    background: rgba(28, 135, 206, 0.08);
    border: 1px solid rgba(28, 135, 206, 0.25);
    color: #60a5fa;
}

/* 4. Layout & Navigation */
.custom-iptv-landing .ki-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.custom-iptv-landing .ki-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(11, 18, 24, 0.85);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--border-color);
}

.custom-iptv-landing .ki-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-iptv-landing .ki-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    gap: 0.35rem;
    color: #ffffff;
}

.custom-iptv-landing .ki-logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--primary);
}

.custom-iptv-landing .ki-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.custom-iptv-landing .ki-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.custom-iptv-landing .ki-nav-link:hover, 
.custom-iptv-landing .ki-nav-link.active {
    opacity: 1;
    color: var(--primary);
}

/* 5. Sections */
.custom-iptv-landing section {
    padding: 7.5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.custom-iptv-landing .ki-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4.5rem auto;
}

.custom-iptv-landing .ki-section-header h2 {
    font-size: 2.5rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.custom-iptv-landing .ki-section-header h2 span {
    color: var(--primary);
}

/* Centered Hero Section (TivimatePrime-Style) */
.custom-iptv-landing #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 11rem;
    padding-bottom: 6rem;
    text-align: center;
}

.custom-iptv-landing .hero-centered-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-iptv-landing .hero-centered-content h1 {
    font-size: 3.75rem;
    line-height: 1.15;
    margin: 1.75rem 0 1.5rem 0;
    font-weight: 800;
}

.custom-iptv-landing .hero-centered-content p {
    font-size: 1.15rem;
    margin-bottom: 2.75rem;
    max-width: 750px;
    line-height: 1.7;
}

.custom-iptv-landing .hero-ctas {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4.5rem;
    justify-content: center;
}

/* Center Visual Preview Frame */
.custom-iptv-landing .hero-visual-box {
    width: 100%;
    max-width: 850px;
    margin-top: 2rem;
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, rgba(28,135,206,0.15) 0%, rgba(28,135,206,0.02) 100%);
    border: 1px solid rgba(28, 135, 206, 0.25);
    border-radius: 16px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8), var(--shadow-glow);
}

.custom-iptv-landing .tv-screen-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: #06070a url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230b1218"/><circle cx="50" cy="50" r="10" fill="%231c87ce" opacity="0.15"/></svg>') center/cover;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.5);
}

.custom-iptv-landing .tv-overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.75rem;
    background: linear-gradient(to top, rgba(11,18,24,0.95), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.custom-iptv-landing .channel-info-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.custom-iptv-landing .channel-logo-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(28, 135, 206, 0.4);
    color: white;
}

.custom-iptv-landing .stream-status-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

/* Floating Tech Tags */
.custom-iptv-landing .ki-tech-tag {
    position: absolute;
    background: rgba(18, 30, 42, 0.9);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(28, 135, 206, 0.3);
    padding: 0.65rem 1.15rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.custom-iptv-landing .ki-tt-1 {
    top: -25px;
    left: -20px;
    animation: floatAnim 6s ease-in-out infinite;
}

.custom-iptv-landing .ki-tt-2 {
    bottom: -15px;
    right: -25px;
    animation: floatAnim 6s ease-in-out infinite 3s;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Features Grid */
.custom-iptv-landing .ki-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.custom-iptv-landing .feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(28, 135, 206, 0.08);
    border: 1px solid rgba(28, 135, 206, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.35rem;
    transition: var(--transition-bounce);
}

.custom-iptv-landing .ki-glass-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 15px rgba(28, 135, 206, 0.3);
}

.custom-iptv-landing .ki-glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Pricing Grid (TivimatePrime 3-Column Layout) */
.custom-iptv-landing .ki-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr 1fr;
    gap: 1.75rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.custom-iptv-landing .ki-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

/* Highlighted Center Card (12 Months - Featured) */
.custom-iptv-landing .ki-pricing-card.ki-featured-plan {
    border-color: rgba(28, 135, 206, 0.45);
    background: rgba(18, 30, 42, 0.95);
    box-shadow: 0 20px 45px rgba(28, 135, 206, 0.15), var(--shadow-soft);
    padding: 3rem 2.5rem;
    z-index: 10;
}

.custom-iptv-landing .ki-best-value-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.25rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(28, 135, 206, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.custom-iptv-landing .ki-price-box {
    margin: 1.75rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.custom-iptv-landing .ki-price-currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.custom-iptv-landing .ki-price-amount {
    font-size: 3.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.custom-iptv-landing .ki-price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.custom-iptv-landing .ki-pricing-features {
    list-style: none;
    margin-bottom: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.custom-iptv-landing .ki-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.925rem;
}

.custom-iptv-landing .ki-pricing-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Category Showcases */
.custom-iptv-landing .ki-category-tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.custom-iptv-landing .ki-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.custom-iptv-landing .ki-tab-btn.active, 
.custom-iptv-landing .ki-tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(28, 135, 206, 0.3);
}

.custom-iptv-landing .ki-channels-container {
    background: rgba(18, 30, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.custom-iptv-landing .ki-channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.25rem;
}

.custom-iptv-landing .ki-channel-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(28, 135, 206, 0.08);
    border-radius: 10px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    transition: var(--transition-bounce);
}

.custom-iptv-landing .ki-channel-card:hover {
    background: rgba(28,135,206,0.05);
    border-color: rgba(28,135,206,0.25);
    transform: scale(1.04);
}

.custom-iptv-landing .ki-channel-card-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    color: #60a5fa;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.custom-iptv-landing .ki-channel-card-name {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Device Compatibility Grid */
.custom-iptv-landing .ki-device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.custom-iptv-landing .ki-device-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-iptv-landing .ki-device-icon-box {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(28, 135, 206, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #93c5fd;
    margin-bottom: 1.25rem;
    transition: var(--transition-bounce);
}

.custom-iptv-landing .ki-device-card:hover .ki-device-icon-box {
    color: white;
    background: var(--accent-glow);
    border-color: transparent;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 20px rgba(28, 135, 206, 0.4);
}

.custom-iptv-landing .ki-device-card h3 {
    margin-bottom: 0.5rem;
}

/* FAQ Accordion Layout */
.custom-iptv-landing .ki-faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-iptv-landing .ki-faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.custom-iptv-landing .ki-faq-question {
    width: 100%;
    padding: 1.35rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
}

.custom-iptv-landing .ki-faq-question:hover {
    background: rgba(28, 135, 206, 0.03);
}

.custom-iptv-landing .ki-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(28, 135, 206, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--primary);
}

.custom-iptv-landing .ki-faq-item.active {
    border-color: var(--border-color-hover);
    background: rgba(18, 30, 42, 0.9);
}

.custom-iptv-landing .ki-faq-item.active .ki-faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 0 8px var(--primary-glow);
}

.custom-iptv-landing .ki-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.custom-iptv-landing .ki-faq-answer-inner {
    padding: 0 1.75rem 1.5rem 1.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.custom-iptv-landing .ki-faq-answer p {
    margin-bottom: 0.65rem;
}

.custom-iptv-landing .ki-faq-answer ol, 
.custom-iptv-landing .ki-faq-answer ul {
    margin-left: 1.25rem;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.custom-iptv-landing .ki-faq-answer li {
    margin-bottom: 0.3rem;
}

/* 6. Scoped Footer */
.custom-iptv-landing .ki-footer {
    background: #06090d;
    border-top: 1px solid var(--border-color);
    padding: 5rem 1.5rem 2.5rem 1.5rem;
}

.custom-iptv-landing .ki-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.custom-iptv-landing .ki-footer-about p {
    margin-top: 0.85rem;
    font-size: 0.925rem;
    max-width: 320px;
}

.custom-iptv-landing .ki-footer-links h4 {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.custom-iptv-landing .ki-footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.custom-iptv-landing .ki-footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.custom-iptv-landing .ki-footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.custom-iptv-landing .ki-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(28, 135, 206, 0.1);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 1rem;
}

.custom-iptv-landing .ki-languages-body.elementor-page-9621 {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.custom-iptv-landing .ki-lang-flag {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.custom-iptv-landing .ki-lang-flag.active {
    opacity: 1;
    color: var(--text-main);
    font-weight: 600;
}

.custom-iptv-landing .ki-disclaimer-box {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: #475569;
    border: 1px solid rgba(28, 135, 206, 0.05);
    background: rgba(28,135,206,0.01);
    padding: 1.25rem;
    border-radius: 8px;
    line-height: 1.5;
}

/* 7. Responsive Styles */
@media (max-width: 1024px) {
    .custom-iptv-landing .hero-centered-content h1 {
        font-size: 3rem;
    }
    
    .custom-iptv-landing .ki-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 2rem;
    }
    
    .custom-iptv-landing .ki-pricing-card.ki-featured-plan {
        transform: none !important;
        padding: 2.5rem;
    }
    
    .custom-iptv-landing .ki-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .custom-iptv-landing .hero-centered-content h1 {
        font-size: 2.5rem;
    }
    
    .custom-iptv-landing .ki-nav-menu {
        display: none;
    }
    
    .custom-iptv-landing .ki-section-header h2 {
        font-size: 2rem;
    }
    
    .custom-iptv-landing .ki-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-iptv-landing .ki-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}/* End custom CSS */