/*
Theme Name: Satrika IPTV
Theme URI: https://satrikaiptv.com
Author: Satrika IPTV Team
Author URI: https://satrikaiptv.com
Description: A modern, production-ready WordPress theme for Satrika IPTV streaming service with gradient designs, glassmorphism effects, and optimized performance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: satrika-iptv
Tags: entertainment, streaming, iptv, modern, dark-mode
*/

/* ==========================================
   LOCAL FONT FACES (Self-Hosted Poppins)
   ========================================== */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../assets/fonts/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/fonts/poppins-v24-latin-700.woff2') format('woff2');
}

/* ==========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================== */

:root {
    /* Primary Colors */
    --color-primary: #C850C0;
    --color-primary-start: #D946EF;
    --color-primary-end: #22D3EE;
    --color-primary-light: #E879F9;

    /* Background Colors */
    --color-bg-light: #F3F4F6;
    --color-bg-dark: #0B0713;

    /* Text Colors */
    --color-text-dark: #1F2937;
    --color-text-light: #F9FAFB;
    --color-gray-600: #4B5563;
    --color-gray-400: #9CA3AF;
    --color-gray-300: #D1D5DB;
    --color-gray-200: #E5E7EB;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;

    /* Slate Colors */
    --color-slate-200: #E2E8F0;
    --color-slate-300: #CBD5E1;
    --color-slate-400: #94A3B8;
    --color-slate-500: #64748B;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1E293B;
    --color-slate-900: #0F172A;

    /* Other Colors */
    --color-green-500: #10B981;
    --color-yellow-400: #FBBF24;
    --color-cyan-500: #06B6D4;
    --color-fuchsia-500: #D946EF;
    --color-fuchsia-600: #C026D3;
    --color-purple-500: #A855F7;
    --color-purple-600: #9333EA;
    --color-blue-500: #3B82F6;
    --color-blue-600: #2563EB;

    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dark {
    --color-bg: var(--color-bg-dark);
    --color-text: var(--color-text-light);
}

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
}

.dark body {
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================
   UTILITY CLASSES (Tailwind Replacements)
   ========================================== */

/* Container & Layout */
.container { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.gap-2 { gap: var(--spacing-2); }
.gap-3 { gap: var(--spacing-3); }
.gap-4 { gap: var(--spacing-4); }
.gap-6 { gap: var(--spacing-6); }
.gap-8 { gap: var(--spacing-8); }

/* Spacing - Padding */
.p-1 { padding: var(--spacing-1); }
.p-2 { padding: var(--spacing-2); }
.p-3 { padding: var(--spacing-3); }
.p-4 { padding: var(--spacing-4); }
.p-6 { padding: var(--spacing-6); }
.p-8 { padding: var(--spacing-8); }
.px-3 { padding-left: var(--spacing-3); padding-right: var(--spacing-3); }
.px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
.px-8 { padding-left: var(--spacing-8); padding-right: var(--spacing-8); }
.py-1 { padding-top: var(--spacing-1); padding-bottom: var(--spacing-1); }
.py-3 { padding-top: var(--spacing-3); padding-bottom: var(--spacing-3); }
.py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
.py-12 { padding-top: var(--spacing-12); padding-bottom: var(--spacing-12); }
.py-20 { padding-top: var(--spacing-20); padding-bottom: var(--spacing-20); }
.pt-8 { padding-top: var(--spacing-8); }
.pb-6 { padding-bottom: var(--spacing-6); }

/* Spacing - Margin */
.m-0 { margin: 0; }
.mt-2 { margin-top: var(--spacing-2); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-8 { margin-top: var(--spacing-8); }
.mt-16 { margin-top: var(--spacing-16); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-6 { margin-bottom: var(--spacing-6); }
.mb-8 { margin-bottom: var(--spacing-8); }
.mb-10 { margin-bottom: var(--spacing-10); }
.mb-12 { margin-bottom: var(--spacing-12); }
.mr-2 { margin-right: var(--spacing-2); }
.mr-3 { margin-right: var(--spacing-3); }
.space-x-3 > * + * { margin-left: var(--spacing-3); }
.space-x-4 > * + * { margin-left: var(--spacing-4); }
.space-x-5 > * + * { margin-left: var(--spacing-5); }
.space-y-3 > * + * { margin-top: var(--spacing-3); }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-8 { bottom: var(--spacing-8); }
.right-8 { right: var(--spacing-8); }
.right-4 { right: var(--spacing-4); }
.-top-4 { top: -var(--spacing-4); }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Font Sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Font Weight */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Letter Spacing */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Line Height */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Text Colors */
.text-white { color: #FFFFFF; }
.text-primary { color: var(--color-primary); }
.text-gray-300 { color: var(--color-gray-300); }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-800 { color: var(--color-gray-800); }
.text-gray-900 { color: var(--color-gray-900); }
.text-slate-600 { color: var(--color-slate-600); }
.text-slate-800 { color: var(--color-slate-800); }
.text-slate-900 { color: var(--color-slate-900); }
.text-green-500 { color: var(--color-green-500); }
.text-yellow-400 { color: var(--color-yellow-400); }
.dark .text-white { color: #FFFFFF; }
.dark .text-gray-100 { color: #F3F4F6; }
.dark .text-gray-200 { color: #E5E7EB; }
.dark .text-gray-400 { color: #9CA3AF; }
.dark .text-slate-200 { color: var(--color-slate-200); }
.dark .text-slate-400 { color: var(--color-slate-400); }

/* Background Colors */
.bg-white { background-color: #FFFFFF; }
.bg-primary { background-color: var(--color-primary); }
.bg-background-light { background-color: var(--color-bg-light); }
.dark .bg-background-dark { background-color: var(--color-bg-dark); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-fuchsia-500 { --tw-gradient-from: var(--color-fuchsia-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 70, 239, 0)); }
.from-fuchsia-600 { --tw-gradient-from: var(--color-fuchsia-600); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 38, 211, 0)); }
.from-purple-500 { --tw-gradient-from: var(--color-purple-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.from-purple-600 { --tw-gradient-from: var(--color-purple-600); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.from-primary-start { --tw-gradient-from: var(--color-primary-start); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 70, 239, 0)); }
.via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), var(--color-purple-600), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.to-cyan-500 { --tw-gradient-to: var(--color-cyan-500); }
.to-blue-500 { --tw-gradient-to: var(--color-blue-500); }
.to-blue-600 { --tw-gradient-to: var(--color-blue-600); }
.to-primary-end { --tw-gradient-to: var(--color-primary-end); }

/* Background with Opacity */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-primary\/20 { background-color: rgba(200, 80, 192, 0.2); }
.bg-fuchsia-500\/20 { background-color: rgba(217, 70, 239, 0.2); }
.bg-fuchsia-500\/30 { background-color: rgba(217, 70, 239, 0.3); }
.bg-cyan-500\/20 { background-color: rgba(6, 182, 212, 0.2); }
.bg-cyan-500\/30 { background-color: rgba(6, 182, 212, 0.3); }
.bg-slate-200\/50 { background-color: rgba(226, 232, 240, 0.5); }
.bg-slate-300 { background-color: var(--color-slate-300); }
.dark .bg-slate-700\/50 { background-color: rgba(51, 65, 85, 0.5); }
.dark .bg-gray-900\/40 { background-color: rgba(17, 24, 39, 0.4); }

/* Text with Opacity */
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

/* Border */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-slate-300\/80 { border-color: rgba(203, 213, 225, 0.8); }
.dark .border-slate-500\/20 { border-color: rgba(100, 116, 139, 0.2); }
.dark .border-gray-700\/50 { border-color: rgba(55, 65, 81, 0.5); }

/* Border Radius */
.rounded { border-radius: var(--radius-md); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Backdrop Blur */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); }

/* Blur */
.blur-3xl { filter: blur(64px); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Transform */
.scale-105 { transform: scale(1.05); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-x-1\/3 { transform: translateX(-33.333333%); }
.-translate-y-1\/3 { transform: translateY(-33.333333%); }
.translate-x-1\/3 { transform: translateX(33.333333%); }
.translate-y-1\/3 { transform: translateY(33.333333%); }

/* Hover States */
.hover\:text-primary:hover { color: var(--color-primary); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:from-purple-600:hover { --tw-gradient-from: var(--color-purple-600); }
.hover\:to-blue-600:hover { --tw-gradient-to: var(--color-blue-600); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* Width & Height Utilities */
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-24 { width: 6rem; }
.w-96 { width: 24rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.size-10 { width: 2.5rem; height: 2.5rem; }

/* Aspect Ratio */
.aspect-square { aspect-ratio: 1 / 1; }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Uppercase */
.uppercase { text-transform: uppercase; }

/* ==========================================
   RESPONSIVE UTILITIES
   ========================================== */

@media (min-width: 640px) {
    .sm\:inline { display: inline; }
    .sm\:w-auto { width: auto; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:items-center { align-items: center; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:p-6 { padding: var(--spacing-6); }
    .sm\:px-6 { padding-left: var(--spacing-6); padding-right: var(--spacing-6); }
    .sm\:py-24 { padding-top: var(--spacing-24); padding-bottom: var(--spacing-24); }
    .sm\:mb-0 { margin-bottom: 0; }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:p-12 { padding: var(--spacing-12); }
    .md\:py-20 { padding-top: var(--spacing-20); padding-bottom: var(--spacing-20); }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:col-span-4 { grid-column: span 4 / span 4; }
}

@media (min-width: 1024px) {
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:p-8 { padding: var(--spacing-8); }
    .lg\:px-8 { padding-left: var(--spacing-8); padding-right: var(--spacing-8); }
    .lg\:mb-16 { margin-bottom: var(--spacing-16); }
    .lg\:gap-8 { gap: var(--spacing-8); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
}

/* ==========================================
   DARK MODE UTILITIES
   ========================================== */

.dark .dark\:bg-background-dark { background-color: var(--color-bg-dark); }
.dark .dark\:bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.dark .dark\:text-white { color: #FFFFFF; }
.dark .dark\:text-gray-100 { color: #F3F4F6; }
.dark .dark\:text-gray-200 { color: #E5E7EB; }
.dark .dark\:text-gray-400 { color: #9CA3AF; }
.dark .dark\:text-slate-200 { color: var(--color-slate-200); }
.dark .dark\:text-slate-400 { color: var(--color-slate-400); }
.dark .dark\:hover\:text-primary:hover { color: var(--color-primary); }
.dark .dark\:bg-fuchsia-500\/20 { background-color: rgba(217, 70, 239, 0.2); }
.dark .dark\:bg-cyan-500\/20 { background-color: rgba(6, 182, 212, 0.2); }

/* ==========================================
   HEADER STYLES
   ========================================== */

.glassmorphism {
    background-color: rgba(46, 43, 64, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark .glassmorphism {
    background-color: rgba(46, 43, 64, 0.6);
}

.light .glassmorphism {
    background-color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   FLOATING GLASSMORPHISM HEADER
   ========================================== */

/* Header Spacer - Prevents content jump */
.header-spacer {
    height: 100px;
}

/* Floating Header Container */
.floating-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
    pointer-events: none;
}

.floating-header-container {
    max-width: 1280px;
    margin: 0 auto;
    pointer-events: auto;
}

.floating-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    min-height: 80px;

    /* Premium Glassmorphism Background */
    background: rgba(15, 15, 30, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Rounded Shape */
    border-radius: 24px;

    /* Gradient Border */
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

/* Gradient Border Effect */
.floating-header-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(168, 85, 247, 0.4) 0%,
        rgba(6, 182, 212, 0.4) 50%,
        rgba(217, 70, 239, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Premium Neon Glow Shadow */
.floating-header-inner::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0%,
        rgba(168, 85, 247, 0.15) 0%,
        transparent 70%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

/* Logo Styling */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-logo a:hover {
    transform: scale(1.05);
}

.header-logo img {
    max-height: 70px;
    width: auto;
}

/* Desktop Navigation */
.desktop-menu {
    display: none;
    flex-grow: 1;
    justify-content: center;
    margin: 0 40px;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-list li {
    position: relative;
}

.nav-menu-list a {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
}

/* Neon Hover Effect on Nav Links */
.nav-menu-list a:hover .nav-link-text {
    color: #FFFFFF;
    text-shadow:
        0 0 10px rgba(6, 182, 212, 0.8),
        0 0 20px rgba(6, 182, 212, 0.4);
}

/* Animated Underline on Hover */
.nav-menu-list a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06B6D4, #D946EF);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
    transition: transform 0.3s ease;
}

.nav-menu-list a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header Actions Container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Premium CTA Button */
.cta-button {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;

    /* Neon Gradient Background */
    background: linear-gradient(135deg,
        #D946EF 0%,
        #A855F7 50%,
        #06B6D4 100%);
    background-size: 200% 200%;

    border-radius: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    /* Pulse Animation */
    animation: gradient-pulse 4s ease infinite, gentle-pulse 2s ease-in-out infinite;

    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 10px 30px rgba(217, 70, 239, 0.4),
        0 0 40px rgba(168, 85, 247, 0.3);
}

.cta-icon {
    font-size: 20px;
}

.cta-text {
    white-space: nowrap;
}

/* CTA Button Glow Effect */
.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

/* Animations */
@keyframes gradient-pulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes gentle-pulse {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(217, 70, 239, 0.3),
            0 0 30px rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow:
            0 6px 30px rgba(217, 70, 239, 0.5),
            0 0 40px rgba(168, 85, 247, 0.3);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.mobile-menu-toggle .material-icons-outlined {
    font-size: 24px;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
    max-height: 0;
    overflow: hidden;
    margin-top: 16px;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: auto;
}

.mobile-menu-dropdown.active {
    max-height: 600px;
    padding: 20px;
    opacity: 1;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
    pointer-events: auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: auto;
}

.mobile-nav-list li {
    pointer-events: auto;
}

.mobile-nav-list li a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.mobile-nav-list li a:hover {
    background: rgba(168, 85, 247, 0.1);
}

.mobile-nav-list li a:hover .mobile-nav-link {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.mobile-cta-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(135deg, #D946EF, #A855F7, #06B6D4);
    background-size: 200% 200%;
    border-radius: 12px;
    animation: gradient-pulse 4s ease infinite;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
}

.mobile-cta-button .material-icons-outlined,
.mobile-cta-button span {
    pointer-events: none;
}

.mobile-nav-list .material-icons-outlined {
    pointer-events: none;
}

.mobile-nav {
    pointer-events: auto;
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
    .desktop-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .cta-button {
        display: flex;
    }
}

/* Tablet Adjustments */
@media (max-width: 1023px) {
    .floating-header-inner {
        padding: 12px 20px;
        min-height: 70px;
    }

    .header-spacer {
        height: 90px;
    }
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .floating-header {
        top: 10px;
        padding: 0 10px;
    }

    .floating-header-inner {
        padding: 12px 16px;
        border-radius: 18px;
    }

    .floating-header-inner::before {
        border-radius: 18px;
    }

    .header-spacer {
        height: 80px;
    }

    .header-logo img {
        max-height: 40px;
    }
}

/* ==========================================
   HERO SECTION STYLES - WISPR FLOW
   ========================================== */

/* Hero Split Layout */
.hero-split-layout {
    position: relative;
    background: linear-gradient(135deg, #020617 0%, #1e1b4b 50%, #020617 100%);
}

/* Ambient Background Animations */
.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

.animate-pulse-slower {
    animation: pulse-slower 6s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes pulse-slower {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.15);
    }
}

/* Gradient Animation for Headline */
.animate-gradient-x {
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite;
}

/* Hero Content Typography */
.hero-content h1 {
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Trust Badge Ping Animation */
.animate-ping {
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ==========================================
   FLOATING ECOSYSTEM ANIMATION
   ========================================== */

/* Ecosystem Container */
.ecosystem-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Logo Area */
.ecosystem-center {
    position: relative;
    z-index: 10;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Logo Glow Effect */
.central-logo-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle,
        rgba(168, 85, 247, 0.3) 0%,
        rgba(217, 70, 239, 0.2) 30%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Central 3D Logo */
.central-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(168, 85, 247, 0.5));
    animation: float-central 4s ease-in-out infinite;
}

@keyframes float-central {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Floating Platform Icons - Base Styles */
.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-icon:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 12px 48px rgba(168, 85, 247, 0.4);
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0.3) brightness(0.95);
    transition: filter 0.3s ease;
}

.floating-icon:hover img {
    filter: grayscale(0) brightness(1);
}

/* Individual Icon Positions & Animations */

/* Icon 1 - Netflix (Top) */
.floating-icon-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float-1 5s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Icon 2 - Exxen (Top Right) */
.floating-icon-2 {
    top: 15%;
    right: 10%;
    animation: float-2 6s ease-in-out infinite 0.5s;
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-10px, -15px) rotate(3deg);
    }
    66% {
        transform: translate(10px, -10px) rotate(-3deg);
    }
}

/* Icon 3 - Disney (Right) */
.floating-icon-3 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float-3 7s ease-in-out infinite 1s;
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-25px);
    }
}

/* Icon 4 - beIN (Bottom Right) */
.floating-icon-4 {
    bottom: 15%;
    right: 10%;
    animation: float-4 5.5s ease-in-out infinite 1.5s;
}

@keyframes float-4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-15px, 10px) rotate(-2deg);
    }
    66% {
        transform: translate(10px, 15px) rotate(2deg);
    }
}

/* Icon 5 - Amazon (Bottom) */
.floating-icon-5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float-5 6.5s ease-in-out infinite 2s;
}

@keyframes float-5 {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(20px);
    }
}

/* Icon 6 - TOD (Bottom Left) */
.floating-icon-6 {
    bottom: 15%;
    left: 10%;
    animation: float-6 5s ease-in-out infinite 2.5s;
}

@keyframes float-6 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(15px, 10px) rotate(2deg);
    }
    66% {
        transform: translate(-10px, 15px) rotate(-2deg);
    }
}

/* Icon 7 - Apple (Left) */
.floating-icon-7 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: float-7 7s ease-in-out infinite 3s;
}

@keyframes float-7 {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(25px);
    }
}

/* Icon 8 - GAiN (Top Left) */
.floating-icon-8 {
    top: 15%;
    left: 10%;
    animation: float-8 6s ease-in-out infinite 3.5s;
}

@keyframes float-8 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(10px, -15px) rotate(-3deg);
    }
    66% {
        transform: translate(-10px, -10px) rotate(3deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .ecosystem-container {
        height: 500px;
        max-width: 500px;
    }

    .ecosystem-center {
        width: 220px;
        height: 220px;
    }

    .floating-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-split-layout {
        min-height: auto;
    }

    .ecosystem-container {
        height: 450px;
        max-width: 450px;
    }

    .ecosystem-center {
        width: 180px;
        height: 180px;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .ecosystem-container {
        height: 400px;
        max-width: 350px;
    }

    .ecosystem-center {
        width: 150px;
        height: 150px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        padding: 8px;
        border-radius: 14px;
    }

    /* Adjust positions for mobile */
    .floating-icon-1 { top: -5%; }
    .floating-icon-2 { right: 5%; top: 10%; }
    .floating-icon-3 { right: -5%; }
    .floating-icon-4 { right: 5%; bottom: 10%; }
    .floating-icon-5 { bottom: -5%; }
    .floating-icon-6 { left: 5%; bottom: 10%; }
    .floating-icon-7 { left: -5%; }
    .floating-icon-8 { left: 5%; top: 10%; }
}

/* Legacy Glow Effect */
.glow-effect {
    box-shadow: 0 0 15px 4px rgba(192, 38, 211, 0.4), 0 0 40px 10px rgba(7, 89, 133, 0.3);
}

.background-collage {
    background-image: linear-gradient(to top, rgba(11, 7, 19, 1) 0%, rgba(11, 7, 19, 0.8) 50%, rgba(11, 7, 19, 1) 100%), url(https://lh3.googleusercontent.com/aida-public/AB6AXuAwGPl46v4Y_HWVhS-wGO3bYqW7GcDKH9ipR7RE-Dt-lh88v9Mo-7bJKJaiyLkvtUfPvNQ-vRyZvnPWIX_No5aUskMpfcnb7yF55fOClzeI0E2xCyC54PtVsIHdo5DbMORTJydLmyGNmgwVdTU4Rf-3o1VpcKGr-KpDqIg1xXPo0zy6z6EOtFJO6Vqm0vpbeHbKzXiwO5Nmt5sc3xKs87pjFSbl32mTt3GsNW17SAZkSx7_5AeEoHkcKITP8fudw0l77PloGSZdREX6);
    background-size: cover;
    background-position: center;
}

/* ==========================================
   FEATURES & PRICING STYLES
   ========================================== */

.glow-border {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1px;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, #C850C0, #4158D0);
    filter: blur(8px);
    opacity: 0.7;
}

.glow-border:hover::before,
.glow-border.best-value::before {
    opacity: 1;
}

.best-value::before {
    background: linear-gradient(135deg, #d946ef, #0ea5e9);
}

.neon-glow {
    transition: all 0.3s ease-in-out;
}

.neon-glow:hover {
    box-shadow: 0 0 5px #d946ef, 0 0 15px #d946ef, 0 0 25px #d946ef, 0 0 35px #d946ef;
    transform: translateY(-5px);
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   BLOG PAGE STYLES
   ========================================== */

.neon-glow-button {
    box-shadow: 0 0 5px #00FFFF, 0 0 10px #00FFFF, 0 0 15px #00FFFF;
}

.neon-glow-button:hover {
    box-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 30px #00FFFF;
}

.neon-glow-border {
    box-shadow: 0 0 2px #FF00FF, 0 0 5px #FF00FF;
}

/* ==========================================
   CHANNELS PAGE STYLES
   ========================================== */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.neon-glow-cyan {
    box-shadow: 0 0 5px #00FFFF, 0 0 10px #00FFFF, 0 0 15px #00FFFF, 0 0 20px #00FFFF;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.neon-gradient-button {
    background-image: linear-gradient(to right, #9F55FF, #52A9FF);
    box-shadow: 0 0 5px #9F55FF, 0 0 10px #52A9FF;
    transition: all 0.2s ease-in-out;
}

.neon-gradient-button:hover {
    box-shadow: 0 0 10px #9F55FF, 0 0 20px #52A9FF;
    transform: translateY(-2px);
}

.form-input-glass:focus-within {
    box-shadow: 0 0 8px rgba(82, 169, 255, 0.5);
    border-color: #52A9FF;
}

/* ==========================================
   FAQ PAGE STYLES
   ========================================== */

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

.glow-border-hover:hover {
    box-shadow: 0 0 8px rgba(13, 51, 242, 0.6), 0 0 16px rgba(13, 51, 242, 0.4), 0 0 24px rgba(13, 51, 242, 0.3);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==========================================
   SETUP GUIDE PAGE STYLES
   ========================================== */

.accordion-glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.neon-glow-blue {
    box-shadow: 0 0 5px #00FFFF, 0 0 10px #00FFFF, 0 0 15px #00FFFF, 0 0 20px #00FFFF;
}

.neon-glow-magenta {
    box-shadow: 0 0 5px #FF00FF, 0 0 10px #FF00FF, 0 0 15px #FF00FF, 0 0 20px #FF00FF;
}

.accordion-item {
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.accordion-header {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transition: background-color 0.3s ease;
}

.accordion-header .material-symbols-outlined {
    transition: transform 0.3s ease-in-out;
}

.accordion-header.is-active .material-symbols-outlined {
    transform: rotate(180deg);
}

.accordion-header.is-active {
    background-image: linear-gradient(to right, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.05));
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding-left: 1rem;
    padding-right: 1rem;
}

.accordion-content.is-open {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* ==========================================
   SINGLE POST PAGE STYLES
   ========================================== */

.prose {
    color: #E0E0E0;
}

.prose h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.prose blockquote {
    border-left: 4px solid #00BFFF;
    padding-left: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0;
}

.prose a {
    color: #00BFFF;
    text-decoration: underline;
}

.prose a:hover {
    color: #FF00FF;
}

.prose ul,
.prose ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose img {
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.prose code {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.prose pre {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.prose pre code {
    background-color: transparent;
    padding: 0;
}

/* Share buttons */
.share-buttons a:hover {
    color: #00BFFF;
    box-shadow: 0 0 15px 0 rgba(0, 191, 255, 0.5);
}

/* Related posts */
.related-post:hover {
    box-shadow: 0 0 15px 0 rgba(255, 0, 255, 0.5);
}

/* Comment section */
.comment-form textarea:focus {
    border-color: #00BFFF;
    ring-color: #00BFFF;
}

.comment-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
}

/* Background utilities */
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-cover { background-size: cover; }

/* ==========================================
   ANIMATIONS & KEYFRAMES
   ========================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(217, 70, 239, 0.5), 0 0 40px rgba(34, 211, 238, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(217, 70, 239, 0.8), 0 0 60px rgba(34, 211, 238, 0.5);
    }
}

/* Apply float animation to hero images */
.hero-image,
.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Apply pulse glow to primary buttons */
.btn-primary,
button[type="submit"],
.neon-gradient-button {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Smooth transitions for AOS elements */
[data-aos] {
    transition-property: transform, opacity;
}

/* ==========================================
   WORDPRESS SPECIFIC STYLES
   ========================================== */

/* Widget Styles */
.widget {
    margin-bottom: var(--spacing-8);
}

.widget-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-slate-900);
    margin-bottom: var(--spacing-4);
}

.dark .widget-title {
    color: #FFFFFF;
}

/* Comment Styles */
.flex-1 { flex: 1 1 0%; }

/* Site Main */
.site-main {
    min-height: 60vh;
}

/* ==========================================
   CHANNELS PAGE - LOGO SLIDER ANIMATION
   ========================================== */

.logo-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-slider-track {
    display: flex;
    width: calc(200px * 24); /* 12 logos × 2 sets */
    animation: logo-scroll 60s linear infinite;
}

.logo-slider-track:hover {
    animation-play-state: paused;
}

.logo-slider-item {
    width: 200px;
    flex-shrink: 0;
}

@keyframes logo-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-200px * 12)); /* Scroll by 12 logos width */
    }
}

/* Channels Page Tab Panels */
.channel-tab-panel {
    display: none;
    animation: fadeInTab 0.4s ease-in-out;
}

.channel-tab-panel.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Active Tab Button Styling */
.channel-tab-button.active {
    color: #FFFFFF;
    background: linear-gradient(90deg, #D946EF 0%, #A855F7 50%, #D946EF 100%);
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite;
    border-bottom-color: var(--color-primary);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ==========================================
   CHANNEL LIST TABLE STYLES
   ========================================== */

/* Channel Tab Container */
.glassmorphism.rounded-2xl {
    margin-top: 2rem;
}

/* Tab Buttons Container */
.channel-tab-button {
    position: relative;
    transition: all 0.3s ease;
}

/* Search Filter Input */
.filter-area-wrapper {
    padding: 1.5rem 2rem 0.5rem;
}

#kanal-filtre {
    transition: all 0.3s ease;
}

#kanal-filtre:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

/* Tab Content Panels Container */
.tab-content-panels {
    padding: 2rem;
    min-height: 400px;
}

/* Channel Grid */
.kanal-gridi {
    gap: 0;
    row-gap: 0;
    column-gap: 2rem;
}

/* Channel Item Styling */
.kanal-item {
    position: relative;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.kanal-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
    color: #FFFFFF;
    padding-left: 1rem;
}

.kanal-item:last-child {
    border-bottom: none;
}

/* Quality Badges */
.badges {
    display: flex;
    gap: 0.375rem;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.badge {
    font-family: ui-monospace, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-sd {
    background-color: #64748b;
    color: #FFFFFF;
}

.badge-hd {
    background-color: #2563eb;
    color: #FFFFFF;
}

.badge-fhd {
    background-color: #2563eb;
    color: #FFFFFF;
}

.badge-4k {
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.3);
}

/* VOD Logo Grid */
.vod-logo-grid {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.vod-logo-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 100px;
}

.vod-logo-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(217, 70, 239, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(217, 70, 239, 0.2);
}

.vod-logo-item img {
    max-width: 100%;
    max-height: 3rem;
    object-fit: contain;
    filter: grayscale(0.3) brightness(0.9);
    transition: filter 0.3s ease;
}

.vod-logo-item:hover img {
    filter: grayscale(0) brightness(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tab-content-panels {
        padding: 1.5rem 1rem;
    }

    .filter-area-wrapper {
        padding: 1.5rem 1rem 0.5rem;
    }

    .kanal-gridi {
        grid-template-columns: 1fr !important;
        column-gap: 0;
    }

    .kanal-item {
        font-size: 0.8125rem;
        padding: 0.875rem 0.5rem;
    }

    .badges {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .badge {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.375rem;
    }

    .vod-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    .vod-logo-item {
        padding: 1rem;
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .kanal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .badges {
        margin-left: 0;
    }
}

/* ==========================================
   PAGE TEMPLATE STYLES
   ========================================== */

/* Page Content Wrapper */
.page-content-wrapper {
    position: relative;
}

/* Page Title */
.page-title {
    position: relative;
    z-index: 1;
}

/* Entry Content - For standard WordPress pages and Elementor */
.entry-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

/* Ensure Elementor content is full-width within the container */
.entry-content .elementor {
    margin: 0;
    padding: 0;
}

.entry-content .elementor-section {
    margin: 0;
}

/* Handle shortcode output styling */
.entry-content > * {
    margin-bottom: 1.5rem;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

/* Headings within page content */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #FFFFFF;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.entry-content h1 {
    font-size: 2.5rem;
}

.entry-content h2 {
    font-size: 2rem;
}

.entry-content h3 {
    font-size: 1.75rem;
}

/* Links in page content */
.entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: var(--color-fuchsia-400);
}

/* Lists in page content */
.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Images in page content */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Tables in page content */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-content th {
    background-color: rgba(255, 255, 255, 0.05);
    font-weight: 600;
}

/* Blockquotes in page content */
.entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* Code blocks */
.entry-content pre {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
}

.entry-content code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: ui-monospace, monospace;
    font-size: 0.9em;
}

.entry-content pre code {
    background-color: transparent;
    padding: 0;
}

/* Responsive adjustments for page content */
@media (max-width: 768px) {
    .page-content-wrapper {
        padding: 1.5rem;
    }

    .entry-content h1 {
        font-size: 2rem;
    }

    .entry-content h2 {
        font-size: 1.75rem;
    }

    .entry-content h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================
   PERFORMANCE & SUPPORT MODULE
   ========================================== */

/* Main Wrapper */
.pd-wrapper {
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 1rem;
}

/* Section Titles */
.pd-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pd-section-subtitle {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--color-slate-400);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

/* Performance Tips Grid */
.pd-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pd-tip-card {
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pd-tip-card:hover {
    transform: translateY(-5px);
}

.pd-tip-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pd-tip-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pd-tip-card-icon.pd-icon-purple {
    background: linear-gradient(135deg, var(--color-purple-500), var(--color-purple-600));
}

.pd-tip-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-light);
}

.pd-tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pd-tip-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: var(--color-slate-300);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.pd-tip-list li::before {
    content: '✔';
    color: #10B981;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pro Tip Banner */
.pd-pro-tip {
    margin-top: 1.875rem;
    padding: 2rem;
    border-radius: 1.125rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 8px 25px rgba(217, 70, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.pd-pro-tip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

.pd-pro-tip-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.pd-pro-tip-icon .material-icons-outlined {
    font-size: 2.25rem;
}

.pd-pro-tip-text {
    position: relative;
    z-index: 1;
}

.pd-pro-tip-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.pd-pro-tip-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Support Section */
.pd-support-section {
    margin-top: 5rem;
    padding: 3.75rem 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #4c004c, #800080);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pd-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(217, 70, 239, 0.3), transparent 50%),
                radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.3), transparent 50%);
    pointer-events: none;
}

.pd-support-section .pd-section-title,
.pd-support-section .pd-section-subtitle {
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.pd-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.pd-support-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pd-support-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.pd-support-box-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.pd-support-box-icon .material-icons-outlined {
    font-size: 2.25rem;
}

.pd-support-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.pd-support-box p {
    font-size: 0.9375rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Button */
.pd-main-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pd-main-btn {
    border: none;
    border-radius: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pd-main-btn.pd-whatsapp {
    background-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.pd-main-btn.pd-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.pd-contact-info {
    font-size: 0.875rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pd-section-title {
        font-size: 1.75rem;
    }

    .pd-tips-grid,
    .pd-support-grid {
        grid-template-columns: 1fr;
    }

    .pd-support-section {
        padding: 2.5rem 1.25rem;
        margin-top: 3rem;
    }

    .pd-pro-tip {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .pd-pro-tip-icon {
        font-size: 2rem;
    }
}

/* ==========================================
   SETUP GUIDE MODULE
   ========================================== */

/* Main Container */
#kr-cihaz-root {
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 1rem;
}

/* Quick Start Section */
.kr-quick-start {
    text-align: center;
    margin-bottom: 3.75rem;
    padding: 1.25rem;
}

.kr-quick-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kr-quick-subtitle {
    font-size: 1.0625rem;
    color: var(--color-slate-400);
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.kr-quick-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
    position: relative;
}

.kr-quick-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.2) 6px,
        transparent 6px,
        transparent 12px
    );
    z-index: 0;
}

.kr-quick-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.kr-quick-step-number {
    width: 80px;
    height: 80px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    box-shadow: 0 8px 20px rgba(217, 70, 239, 0.3);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kr-quick-step-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kr-quick-step:hover .kr-quick-step-number {
    transform: rotate(0deg);
}

.kr-quick-step:hover .kr-quick-step-number::before {
    opacity: 1;
}

.kr-quick-step-number span {
    transform: rotate(-45deg);
    position: relative;
    z-index: 1;
}

.kr-quick-step-number.kr-step-number-purple {
    background: linear-gradient(135deg, var(--color-purple-500), var(--color-purple-600));
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.kr-quick-step-number.kr-step-number-green {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.kr-quick-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.kr-quick-step-desc {
    font-size: 0.9375rem;
    color: var(--color-slate-400);
    line-height: 1.6;
}

/* Divider */
.kr-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2) 50%,
        transparent
    );
    margin: 3.75rem 0;
}

/* Device Grid Section */
.kr-grid-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kr-grid-subtitle {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--color-slate-400);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

/* Device Grid */
.kr-device-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 3.125rem;
}

.kr-device-box {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-basis: calc(33.333% - 1.25rem);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.kr-device-box:hover {
    transform: translateY(-6px);
}

.kr-device-box.active {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.5),
                0 0 60px rgba(34, 211, 238, 0.3);
}

/* Device Main Content */
.kr-device-main {
    padding: 1.75rem 1.5rem 1.25rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.kr-device-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(217, 70, 239, 0.3);
}

.kr-device-icon .material-icons-outlined {
    font-size: 3rem;
    color: #FFFFFF;
}

.kr-device-title {
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* Device Meta Info */
.kr-device-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    color: var(--color-slate-400);
}

.kr-difficulty,
.kr-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.kr-difficulty .material-icons-outlined,
.kr-time .material-icons-outlined {
    font-size: 1rem;
}

/* Popular Tag */
.kr-popular-tag {
    position: absolute;
    top: 12px;
    right: -40px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: #FFFFFF;
    padding: 4px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Selected Tag */
.kr-selected-tag {
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    color: #FFFFFF;
    padding: 0.375rem 0.875rem;
    border-radius: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.4);
}

.kr-selected-tag .material-icons-outlined {
    font-size: 1rem;
}

/* Step Cards */
#kr-cards-wrap {
    perspective: 1000px;
}

.kr-step-card {
    border-radius: 1.5rem;
    padding: 3.125rem;
    margin: 0 auto 1.875rem auto;
    max-width: 1200px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: flipIn 0.6s ease-out;
}

.kr-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
}

.kr-step-card.kr-step-exit {
    animation: flipOut 0.4s ease-in forwards;
}

.kr-step-num {
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    color: #FFFFFF;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    top: -82px;
    margin-bottom: -60px;
}

/* Progress Bar */
.kr-progress-bar-container {
    width: 80%;
    max-width: 400px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 1.5rem auto;
    overflow: hidden;
}

.kr-progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    border-radius: 4px;
    transition: width 0.5s ease-out;
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

/* Step Content */
.kr-step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.kr-step-desc {
    font-size: 1.125rem;
    color: var(--color-slate-300);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.kr-step-desc b,
.kr-step-desc strong {
    color: var(--color-primary);
    font-weight: 600;
}

.kr-step-desc a.kr-step-btn {
    text-decoration: none;
    display: inline-block;
    margin-top: 0.625rem;
}

/* Step Buttons */
.kr-step-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.kr-step-btn {
    border: none;
    border-radius: 0.875rem;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.kr-step-btn.kr-btn-primary {
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.4);
}

.kr-step-btn.kr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.5);
}

.kr-step-btn.kr-btn-primary:active {
    transform: scale(0.97);
}

.kr-step-btn.kr-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-slate-300);
}

.kr-step-btn.kr-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.kr-step-btn .material-icons-outlined {
    font-size: 1.25rem;
}

/* Animations */
@keyframes flipIn {
    from {
        transform: rotateX(-90deg);
        opacity: 0;
    }
    to {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipOut {
    from {
        transform: rotateX(0deg);
        opacity: 1;
    }
    to {
        transform: rotateX(90deg);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1240px) {
    #kr-cihaz-root {
        max-width: 95%;
    }
}

@media (max-width: 900px) {
    .kr-device-box {
        flex-basis: calc(50% - 0.875rem);
    }
}

@media (max-width: 768px) {
    .kr-quick-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .kr-quick-steps::before {
        display: none;
    }

    .kr-quick-title {
        font-size: 1.75rem;
    }

    .kr-grid-title {
        font-size: 1.75rem;
    }

    .kr-step-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .kr-device-box {
        flex-basis: 100%;
    }

    .kr-grid-title {
        font-size: 1.5rem;
    }

    .kr-grid-subtitle {
        font-size: 0.9375rem;
    }

    .kr-step-card {
        padding: 1.5rem;
        max-width: 90%;
    }

    .kr-step-title {
        font-size: 1.375rem;
    }

    .kr-step-desc {
        font-size: 0.9375rem;
    }

    .kr-step-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
    }
}

/* ==========================================
   PRICING TABLE MODULE
   ========================================== */

/* Main Container */
.satrika-pricing-wrapper {
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 1rem;
}

/* Filters */
.satrika-filters-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.satrika-region-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    flex-wrap: wrap;
}

.satrika-device-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.625rem;
    padding: 0.375rem;
}

.satrika-device-selector-wrapper label {
    margin: 0 0.625rem 0 0.9375rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-slate-400);
    white-space: nowrap;
}

/* Region Buttons */
.satrika-region-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5625rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-slate-400);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.satrika-region-button .material-icons-outlined {
    font-size: 1.25rem;
}

.satrika-region-button:not(.active):hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.satrika-region-button.active,
.satrika-device-button.active {
    color: #FFFFFF;
    border-color: transparent;
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
    transform: translateY(-2px);
}

/* Device Buttons */
.satrika-device-button {
    padding: 0.625rem 1.375rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-slate-400);
    background-color: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.satrika-device-button:not(.active):hover {
    color: var(--color-primary);
}

/* Pricing Grid */
.satrika-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.875rem;
}

.satrika-no-packages {
    text-align: center;
    color: var(--color-slate-400);
    font-size: 1.125rem;
    padding: 3rem;
    grid-column: 1 / -1;
}

/* Pricing Cards */
.satrika-pricing-card {
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.satrika-card-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.satrika-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0;
}

.satrika-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.satrika-card-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.satrika-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.satrika-card-currency {
    font-size: 1.5rem;
}

.satrika-device-badge {
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.satrika-card-price-desc {
    text-align: center;
    color: var(--color-slate-400);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.satrika-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.satrika-card-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    color: var(--color-slate-300);
    font-size: 0.9375rem;
}

.satrika-card-features li .material-icons-outlined {
    font-size: 1.25rem;
    color: #10B981;
    flex-shrink: 0;
}

.satrika-card-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.satrika-buy-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.4);
}

.satrika-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.5);
}

.satrika-buy-button .material-icons-outlined {
    font-size: 1.25rem;
}

/* Payment Modal */
.satrika-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.satrika-modal-overlay.satrika-is-visible {
    opacity: 1;
}

.satrika-modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.satrika-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.3s ease;
    z-index: 10;
}

.satrika-modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: rotate(90deg);
}

.satrika-modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 5;
    flex-shrink: 0;
}

.satrika-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    padding-right: 3rem;
}

.satrika-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.satrika-modal-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.8);
}

/* Payment Buttons */
.satrika-payment-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.satrika-payment-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.satrika-payment-button .material-icons-outlined {
    font-size: 1.5rem;
}

.satrika-payment-button-whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.satrika-payment-button-whatsapp:hover {
    background: #128C7E;
}

.satrika-payment-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.satrika-no-payment {
    text-align: center;
    color: #CBD5E1;
    font-size: 1rem;
    padding: 2rem 1rem;
}

/* Crypto Payment View */
.satrika-crypto-original-price {
    text-align: center;
    font-size: 1.125rem;
    color: #E2E8F0;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
}

.satrika-crypto-original-price strong {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
}

.satrika-crypto-warning {
    background: rgba(255, 193, 7, 0.15);
    border-left: 4px solid #FFC107;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.satrika-crypto-warning p {
    margin: 0.5rem 0;
    color: #F1F5F9;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.satrika-crypto-warning .material-icons-outlined {
    vertical-align: middle;
    color: #FFC107;
    margin-right: 0.5rem;
}

.satrika-crypto-address-box {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
}

.satrika-crypto-address-box label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.satrika-crypto-address-box label .material-icons-outlined {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.satrika-crypto-amount-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.satrika-crypto-amount-label {
    color: #CBD5E1;
    font-size: 0.9375rem;
    font-weight: 500;
}

.satrika-crypto-amount {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, #A855F7, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.satrika-address-line {
    display: flex;
    gap: 0.75rem;
}

.satrika-address-line input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-family: monospace;
    font-size: 0.875rem;
    font-weight: 500;
}

.satrika-address-line input:focus {
    outline: none;
    border-color: #A855F7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.satrika-copy-button {
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--color-fuchsia-600), var(--color-purple-600));
    border: none;
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

.satrika-copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.4);
}

.satrika-copy-button.copied {
    background: #10B981;
}

.satrika-copy-button .material-icons-outlined {
    font-size: 1.125rem;
}

.satrika-back-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.satrika-back-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.satrika-back-button .material-icons-outlined {
    font-size: 1.25rem;
}

/* WhatsApp Notice & Button */
.satrika-whatsapp-notice {
    color: #CBD5E1;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.satrika-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: #25D366;
    border: none;
    border-radius: 0.75rem;
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.satrika-whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .satrika-pricing-grid {
        grid-template-columns: 1fr;
    }

    .satrika-card-price {
        font-size: 2rem;
    }

    .satrika-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .satrika-modal-header {
        padding: 1.25rem 1rem 0.75rem 1rem;
    }

    .satrika-modal-header h3 {
        font-size: 1.25rem;
        padding-right: 2.5rem;
    }

    .satrika-modal-body {
        padding: 1.25rem 1rem;
    }

    .satrika-modal-footer {
        padding: 1rem;
    }

    .satrika-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
    }

    .satrika-crypto-address-box {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .satrika-crypto-address-box label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .satrika-crypto-amount-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.625rem 0.875rem;
    }

    .satrika-crypto-amount-label {
        font-size: 0.875rem;
    }

    .satrika-crypto-amount {
        font-size: 1rem;
    }

    .satrika-crypto-warning {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }

    .satrika-crypto-warning p {
        font-size: 0.875rem;
    }

    .satrika-crypto-original-price {
        font-size: 1rem;
        padding: 0.875rem;
        margin-bottom: 1rem;
    }

    .satrika-crypto-original-price strong {
        font-size: 1.125rem;
    }

    .satrika-address-line {
        flex-direction: column;
        gap: 0.5rem;
    }

    .satrika-address-line input {
        font-size: 0.75rem;
        padding: 0.625rem 0.75rem;
    }

    .satrika-copy-button {
        width: 100%;
        justify-content: center;
        padding: 0.625rem 1rem;
    }

    .satrika-whatsapp-notice {
        font-size: 0.875rem;
    }

    .satrika-whatsapp-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 600px) {
    .satrika-filters-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .satrika-region-selector-wrapper {
        width: 100%;
        justify-content: center;
    }

    .satrika-device-selector-wrapper {
        width: 100%;
        justify-content: center;
    }

    .satrika-region-button {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }

    .satrika-modal-content {
        width: 100%;
        max-height: 90vh;
        border-radius: 0;
    }

    .satrika-modal-header h3 {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    .satrika-payment-button {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (max-width: 768px) {
    .glow-border {
        margin-bottom: 1.5rem;
    }

    .logo-slider-track {
        width: calc(150px * 24);
    }

    .logo-slider-item {
        width: 150px;
    }

    @keyframes logo-scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-150px * 12));
        }
    }
}

@media (max-width: 640px) {
    .background-collage {
        background-position: center top;
    }
}

/* ============================================
   FEATURE SECTION: MULTI-DEVICE SHOWCASE
   ============================================ */

.feature-section-devices {
    background: linear-gradient(to bottom right, #05050A, #0F0A1F);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Container */
.feature-section-devices .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .feature-section-devices .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .feature-section-devices .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Grid Layout - STRICT 2-COLUMN ON DESKTOP */
.feature-section-devices .grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .feature-section-devices .grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        align-items: center !important;
    }
}

/* Ambient Background Glows */
.ambient-glow-left {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.ambient-glow-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

/* Left Content Column - TEXT LEFT ON DESKTOP */
.feature-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .feature-content {
        align-items: flex-start !important;
        text-align: left !important;
        padding-right: 2rem;
        margin: 0 !important;
    }
}

.feature-content h1 {
    line-height: 1.2;
    width: 100%;
}

.feature-content p {
    line-height: 1.75;
    width: 100%;
}

.feature-content .gradient-text {
    background: linear-gradient(to right, #c084fc, #ec4899, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Platform Badges */
.platform-badges {
    animation: float-slow 6s ease-in-out infinite;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .platform-badges {
        justify-content: flex-start !important;
    }
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Buttons Container */
.feature-content > div:has(.feature-cta-primary) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
}

@media (min-width: 640px) {
    .feature-content > div:has(.feature-cta-primary) {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .feature-content > div:has(.feature-cta-primary) {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
}

.feature-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(to right, #9333ea, #db2777);
    border-radius: 9999px;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.feature-cta-primary:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    transform: translateY(-4px);
}

.feature-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.feature-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Device Icons - BOTTOM LEFT ARRANGEMENT */
.floating-icons-stream {
    position: relative;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    width: 100%;
    height: auto;
    margin-top: 0 !important;
}

.floating-device-icon {
    position: relative;
    padding: 14px;
    background: rgba(17, 17, 31, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    animation: float-device 5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-device-icon .material-icons-outlined {
    display: block;
}

.icon-tv { color: #c084fc; font-size: 28px; }
.icon-laptop { color: #60a5fa; font-size: 32px; }
.icon-cast { color: #ec4899; font-size: 28px; }
.icon-tablet { color: #4ade80; font-size: 30px; }
.icon-wifi { color: #fbbf24; font-size: 26px; }
.icon-phone { color: #a78bfa; font-size: 24px; }

@keyframes float-device {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Right Phone Column - PHONE RIGHT ON DESKTOP */
.phone-mockup-wrapper {
    position: relative;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

@media (min-width: 1024px) {
    .phone-mockup-wrapper {
        justify-content: center;
    }
}

.phone-decorative-glow {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 256px;
    height: 256px;
    background: #a855f7;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: pulse-glow-phone 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-glow-phone {
    0%, 100% {
        opacity: 0.2;
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    }
    50% {
        opacity: 0.15;
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    }
}

.phone-container {
    position: relative;
    transform: rotateY(-8deg) rotateX(2deg) rotate(-2deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}

.phone-container:hover {
    transform: rotateY(0deg) rotateX(0deg) rotate(0deg);
}

/* Phone Frame - LARGER SIZE */
.phone-frame {
    position: relative;
    width: 340px;
    height: 680px;
    background: #000;
    border-radius: 45px;
    border: 8px solid #1f1f1f;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    ring: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 30;
}

/* Phone Screen */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #0F0F1A;
    display: flex;
    flex-direction: column;
    color: white;
    overflow: hidden;
    position: relative;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px 8px;
    font-size: 10px;
    font-weight: 500;
    color: #d1d5db;
    z-index: 20;
}

.battery-indicator {
    width: 16px;
    height: 10px;
    background: #d1d5db;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.battery-level {
    background: #10b981;
    width: 75%;
    height: 100%;
}

/* Phone App Content */
.phone-app-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 16px 80px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phone-app-content::-webkit-scrollbar {
    display: none;
}

.phone-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.phone-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(to bottom right, #9333ea, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.phone-search-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
}

/* Featured Card */
.phone-featured-card {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    background: #1f2937;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.phone-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.7s ease;
}

.phone-featured-card:hover .phone-featured-img {
    transform: scale(1.05);
}

.phone-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, transparent, transparent);
}

.phone-featured-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.phone-live-badge {
    display: inline-block;
    font-size: 10px;
    background: #dc2626;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 4px;
}

.phone-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-play-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Categories */
.phone-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phone-categories::-webkit-scrollbar {
    display: none;
}

.phone-category {
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    background: #1f2937;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-category.active {
    background: linear-gradient(to right, #9333ea, #db2777);
    color: white;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
    border: none;
}

/* Channel List */
.phone-channel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-channel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4px;
}

.phone-channel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.phone-channel-item:hover {
    background: rgba(31, 41, 55, 0.8);
}

.phone-channel-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #374151;
    overflow: hidden;
    position: relative;
}

.phone-channel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-favorite-btn {
    color: #6b7280;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.phone-favorite-btn:hover {
    color: #ec4899;
}

/* Continue Watching */
.phone-continue-section {
    margin-top: 24px;
}

.phone-continue-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: linear-gradient(to right, rgba(88, 28, 135, 0.2), transparent);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
}

.phone-continue-thumb {
    width: 64px;
    height: 40px;
    border-radius: 8px;
    background: #374151;
    overflow: hidden;
}

.phone-continue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-progress-bar {
    width: 100%;
    height: 4px;
    background: #374151;
    border-radius: 9999px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.phone-progress-fill {
    width: 66%;
    height: 100%;
    background: #a855f7;
    border-radius: 9999px;
}

.phone-continue-play {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* Bottom Navigation */
.phone-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(11, 11, 21, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 8px;
    z-index: 20;
}

.phone-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    color: #6b7280;
    transition: color 0.2s ease;
    cursor: pointer;
}

.phone-nav-item.active {
    color: #a855f7;
}

.phone-nav-item:hover {
    color: white;
}

.phone-nav-label {
    font-size: 8px;
    font-weight: 500;
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    z-index: 30;
}

/* Floating Bubbles - Positioned LIKE CHAT NOTIFICATIONS */
.floating-bubble-left {
    position: absolute;
    left: -60px;
    top: 28%;
    z-index: 15;
    background: rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 14px 18px;
    border-radius: 20px;
    border-top-left-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 220px;
    animation: float-fast 4s ease-in-out infinite;
}

.floating-bubble-right {
    position: absolute;
    right: -80px;
    bottom: 28%;
    z-index: 15;
    background: rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    padding: 10px 16px;
    border-radius: 20px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float-medium 5s ease-in-out infinite;
}

.bubble-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #4ade80, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #000;
}

/* Animations */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-fast {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1023px) {
    .floating-bubble-left,
    .floating-bubble-right {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .phone-frame {
        width: 250px;
        height: 500px;
        border-radius: 35px;
    }

    .phone-container {
        transform: rotateY(0deg) rotateX(0deg) rotate(0deg);
    }

    .feature-section-devices {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .phone-container {
        transform: rotateY(-5deg) rotateX(1deg) rotate(-1deg);
    }
}

/* ==========================================
   CHANNEL PAGE - PILL TAB BUTTONS
   ========================================== */

.channel-pill-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(156, 163, 175, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.channel-pill-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.channel-pill-tab.active {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4), 0 2px 8px rgba(236, 72, 153, 0.3);
    transform: translateY(-2px);
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Animated Gradient Text */
.animated-gradient-text {
    background: linear-gradient(90deg, #a855f7, #ec4899, #06b6d4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease-in-out infinite;
}

@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Marquee Logo Slider Animation */
.marquee-track {
    display: flex;
    animation: marquee-scroll 40s linear infinite;
    gap: 2rem;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Brand Cards in Marquee */
.brand-card {
    flex-shrink: 0;
    width: 180px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* Glass Card for Channel Items */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(168, 85, 247, 0.3);
}

/* ==========================================
   CHANNEL PAGE MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    /* Channel pill tabs */
    .channel-pill-tab {
        font-size: 0.75rem;
        padding: 0.625rem 1rem;
        gap: 0.375rem;
    }

    .channel-pill-tab .material-icons-outlined {
        font-size: 16px !important;
    }

    /* Channel grid items */
    .kanal-item {
        font-size: 0.8125rem;
        padding: 0.875rem 0.625rem;
    }

    /* Badges */
    .badges {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .badge {
        font-size: 9px !important;
        padding: 0.25rem 0.5rem !important;
    }

    /* Glass panel padding */
    .glass-panel {
        padding: 1rem !important;
    }

    /* Search bar */
    #kanal-filtre {
        font-size: 0.875rem;
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }

    /* VOD logos */
    .vod-logo-item {
        padding: 1rem !important;
    }

    .vod-logo-item img {
        max-height: 2.5rem;
    }
}

@media (max-width: 640px) {
    /* Smaller pill tabs */
    .channel-pill-tab {
        font-size: 0.6875rem;
        padding: 0.5rem 0.75rem;
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
    }

    .channel-pill-tab span:last-child {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Channel items even more compact */
    .kanal-item {
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .kanal-item > div:first-child {
        flex: 1;
        min-width: 0;
    }

    .kanal-item .badges {
        width: 100%;
        justify-content: flex-start;
    }

    /* Glass card items */
    .glass-card {
        padding: 0.75rem !important;
    }

    .glass-card .w-10 {
        width: 2rem;
        height: 2rem;
    }

    .glass-card .text-sm {
        font-size: 0.8125rem;
    }

    /* Tab content padding */
    .tab-content-panels {
        padding: 1rem !important;
    }

    /* VOD grid more compact */
    .vod-logo-item {
        padding: 0.75rem !important;
    }

    .vod-logo-item img {
        max-height: 2rem;
    }
}

@media (max-width: 480px) {
    /* Stats grid single column on very small screens */
    .stat-item {
        padding: 0.75rem;
    }

    .stat-counter {
        font-size: 2rem !important;
    }

    /* Channel pill tabs - better wrapping */
    .channel-pill-tab {
        font-size: 0.75rem;
        padding: 0.625rem 0.875rem;
    }

    /* Very compact channel items */
    .kanal-item {
        font-size: 0.6875rem;
        padding: 0.625rem 0.375rem;
    }

    .badge {
        font-size: 8px !important;
        padding: 0.1875rem 0.375rem !important;
    }

    /* Search input smaller */
    #kanal-filtre {
        font-size: 0.8125rem;
        padding: 0.625rem 0.625rem 0.625rem 2.25rem;
    }
}

/* ==========================================
   FOOTER ANIMATED GRADIENT BACKGROUND
   ========================================== */

.footer-animated-gradient {
    background: linear-gradient(
        135deg,
        #0F172A 0%,
        #1E293B 25%,
        #312E81 50%,
        #4C1D95 75%,
        #0F172A 100%
    );
    background-size: 400% 400%;
    animation: footer-gradient-shift 15s ease infinite;
    position: relative;
}

/* Gradient overlay for extra depth */
.footer-animated-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(168, 85, 247, 0.1) 0%,
        rgba(236, 72, 153, 0.1) 25%,
        rgba(6, 182, 212, 0.1) 50%,
        rgba(139, 92, 246, 0.1) 75%,
        rgba(168, 85, 247, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: footer-gradient-overlay 20s ease infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above gradient */
.footer-animated-gradient > * {
    position: relative;
    z-index: 1;
}

/* Footer logo size - target all variations and override inline styles */
footer .custom-logo-link img,
footer .custom-logo,
footer .footer-brand-column > div > img,
footer .footer-brand-column .flex-shrink-0 img,
footer img.custom-logo,
.footer-animated-gradient .footer-brand-column img,
.footer-animated-gradient img.custom-logo {
    max-height: 60px !important;
    height: 60px !important;
    width: auto !important;
    max-width: none !important;
}

/* Main gradient animation */
@keyframes footer-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Overlay gradient animation (opposite direction) */
@keyframes footer-gradient-overlay {
    0% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Add subtle glow effect on dark mode */
@media (prefers-color-scheme: dark) {
    .footer-animated-gradient {
        box-shadow:
            inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
            0 -20px 80px -20px rgba(168, 85, 247, 0.3);
    }
}

/* Light mode fallback with lighter gradient */
@media (prefers-color-scheme: light) {
    .footer-animated-gradient {
        background: linear-gradient(
            135deg,
            #E2E8F0 0%,
            #CBD5E1 25%,
            #DDD6FE 50%,
            #E9D5FF 75%,
            #E2E8F0 100%
        );
        background-size: 400% 400%;
        animation: footer-gradient-shift 15s ease infinite;
    }

    .footer-animated-gradient::before {
        background: linear-gradient(
            45deg,
            rgba(168, 85, 247, 0.05) 0%,
            rgba(236, 72, 153, 0.05) 25%,
            rgba(6, 182, 212, 0.05) 50%,
            rgba(139, 92, 246, 0.05) 75%,
            rgba(168, 85, 247, 0.05) 100%
        );
        background-size: 400% 400%;
        animation: footer-gradient-overlay 20s ease infinite reverse;
    }
}

/* Footer mobile responsive improvements */
@media (max-width: 768px) {
    .footer-animated-gradient {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .footer-animated-gradient .grid {
        gap: 2.5rem;
    }

    .footer-animated-gradient .mb-12 {
        margin-bottom: 2rem;
    }

    /* Center all footer columns on mobile */
    .footer-animated-gradient .grid > div {
        text-align: center;
    }

    /* Center align brand column */
    .footer-brand-column {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand-column .flex {
        justify-content: center !important;
        flex-wrap: nowrap;
    }

    /* Center section headings */
    .footer-animated-gradient h3 {
        text-align: center;
        margin-bottom: 1.25rem;
    }

    /* Center menu items */
    .footer-animated-gradient ul {
        padding-left: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-animated-gradient ul li {
        width: 100%;
        max-width: 280px;
    }

    .footer-animated-gradient ul li a {
        display: inline-block;
        padding: 0.375rem 0;
    }

    /* Center payment badges */
    .footer-animated-gradient .flex.flex-wrap {
        justify-content: center;
    }

    /* Center bottom bar content */
    .footer-animated-gradient .glass-effect {
        text-align: center;
    }

    .footer-animated-gradient .glass-effect > p {
        margin-bottom: 1.25rem;
    }

    /* Social icons centered */
    .footer-animated-gradient .glass-effect .flex {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-animated-gradient {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-animated-gradient .grid {
        gap: 2rem;
    }

    .footer-animated-gradient h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
        font-weight: 700;
        letter-spacing: 0.025em;
    }

    .footer-animated-gradient p,
    .footer-animated-gradient a {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .footer-animated-gradient ul {
        gap: 0.5rem;
    }

    .footer-animated-gradient ul li {
        max-width: 220px;
    }

    .footer-animated-gradient ul li a {
        padding: 0.5rem 0.75rem;
        border-radius: 0.375rem;
        transition: all 0.2s ease;
    }

    .footer-animated-gradient ul li a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    /* Smaller logo on very small screens */
    .footer-brand-column img,
    .footer-brand-column .custom-logo,
    .footer-brand-column .custom-logo-link img {
        height: 50px !important;
        max-height: 50px !important;
        width: auto !important;
        max-width: none !important;
    }

    .footer-brand-column .text-xl {
        font-size: 1.125rem;
    }

    .footer-brand-column .text-sm {
        font-size: 0.75rem;
    }

    /* Reduce spacing in glass effect */
    .footer-animated-gradient .glass-effect {
        padding: 0.875rem;
    }

    .footer-animated-gradient .glass-effect > p {
        margin-bottom: 1rem;
        font-size: 0.8125rem;
    }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */

.whatsapp-float-button {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 12px rgba(37, 211, 102, 0.4),
        0 8px 24px rgba(37, 211, 102, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: whatsapp-float 3s ease-in-out infinite;
}

.whatsapp-float-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.5),
        0 12px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-float-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

/* WhatsApp Icon */
.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Notification Badge */
.whatsapp-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #FF3B30;
    border-radius: 50%;
    border: 2px solid #25D366;
    z-index: 3;
}

.whatsapp-badge-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: #FF3B30;
    opacity: 0.7;
    animation: whatsapp-pulse 2s ease-out infinite;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #128C7E;
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #128C7E;
}

/* Animations */
@keyframes whatsapp-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float-button {
        width: 56px;
        height: 56px;
        bottom: 90px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float-button {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .whatsapp-float-button {
        box-shadow:
            0 4px 12px rgba(37, 211, 102, 0.5),
            0 8px 24px rgba(37, 211, 102, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .whatsapp-float-button:hover {
        box-shadow:
            0 6px 20px rgba(37, 211, 102, 0.6),
            0 12px 40px rgba(37, 211, 102, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

/* Print: hide WhatsApp button */
@media print {
    .whatsapp-float-button {
        display: none !important;
    }
}

/* ==========================================
   BLOG PAGE STYLES
   ========================================== */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    padding: 4rem 1rem;
    text-align: center;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.6s ease-out;
}

.blog-hero p {
    color: #9CA3AF;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    animation: fade-in-up 0.6s ease-out 0.1s backwards;
}

/* Category Pills */
.category-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.category-pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.category-pill.active {
    background: white;
    color: black;
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Search Box */
.blog-search-form {
    position: relative;
    width: 100%;
    max-width: 16rem;
}

.blog-search-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    font-size: 0.875rem;
    color: white;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    outline: none;
    border-color: #A855F7;
    background: rgba(0, 0, 0, 0.3);
}

.blog-search-input::placeholder {
    color: #6B7280;
}

.blog-search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    pointer-events: none;
}

/* Featured Post */
.featured-post {
    margin-bottom: 4rem;
    animation: fade-in-up 0.6s ease-out 0.3s backwards;
}

.featured-post-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 24, 39, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.featured-post-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.featured-post-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .featured-post-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.featured-post-image {
    height: 16rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .featured-post-image {
        height: auto;
    }
}

.featured-post-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.5s ease;
}

.featured-post-card:hover .featured-post-image::before {
    background: transparent;
}

.featured-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .featured-post-content {
        padding: 3rem;
    }
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #9CA3AF;
    flex-wrap: wrap;
}

.featured-post-category {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(168, 85, 247, 0.2);
    color: #D8B4FE;
    border: 1px solid rgba(168, 85, 247, 0.2);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-post-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.featured-post-card:hover .featured-post-title {
    color: #C084FC;
}

@media (min-width: 768px) {
    .featured-post-title {
        font-size: 2.25rem;
    }
}

.featured-post-excerpt {
    color: #9CA3AF;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-post-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-post-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: black;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-post-btn:hover {
    background: #E5E7EB;
    transform: translateX(0.25rem);
}

.featured-post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    font-size: 0.875rem;
    color: #6B7280;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    animation: fade-in-up 0.6s ease-out 0.4s backwards;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.5rem);
}

.blog-card-image {
    height: 12rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card-meta-dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: #4B5563;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E5E7EB;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card:hover .blog-card-title {
    color: #C084FC;
}

.blog-card-excerpt {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9CA3AF;
}

.blog-card-read-more {
    color: #C084FC;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-read-more:hover {
    color: white;
}

/* Newsletter Section */
.blog-newsletter {
    margin-top: 5rem;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(to right, rgba(88, 28, 135, 0.4), rgba(157, 23, 77, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fade-in-up 0.6s ease-out 0.5s backwards;
}

@media (min-width: 768px) {
    .blog-newsletter {
        padding: 3rem;
    }
}

.blog-newsletter::before,
.blog-newsletter::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blog-newsletter::before {
    left: -5rem;
    bottom: -5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(37, 99, 235, 0.2);
}

.blog-newsletter::after {
    right: -5rem;
    top: -5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(236, 72, 153, 0.2);
}

.blog-newsletter-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
    margin: 0 auto;
}

.blog-newsletter h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .blog-newsletter h2 {
        font-size: 1.875rem;
    }
}

.blog-newsletter p {
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.blog-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .blog-newsletter-form {
        flex-direction: row;
    }
}

.blog-newsletter-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: white;
    transition: all 0.3s ease;
}

.blog-newsletter-input:focus {
    outline: none;
    border-color: #A855F7;
    box-shadow: 0 0 0 1px #A855F7;
}

.blog-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.blog-newsletter-btn {
    padding: 0.75rem 2rem;
    background: white;
    color: black;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.blog-newsletter-btn:hover {
    background: #E5E7EB;
}

/* No Results Message */
.blog-no-results {
    grid-column: 1 / -1;
    padding: 5rem 0;
    text-align: center;
}

.blog-no-results p {
    color: #6B7280;
    font-size: 1.125rem;
}

.blog-no-results a {
    margin-top: 1rem;
    display: inline-block;
    color: #C084FC;
    text-decoration: none;
}

.blog-no-results a:hover {
    text-decoration: underline;
}

/* Pagination */
.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination .page-numbers li {
    display: inline-block;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.blog-pagination .page-numbers .current {
    background: #A855F7;
    color: white;
    border-color: #A855F7;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes for Blog */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide Scrollbar */
.hide-scrollbar {
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Single Post Styles */
.single-post-hero {
    position: relative;
    padding: 3rem 1rem;
    overflow: hidden;
}

.single-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    animation: fade-in-up 0.6s ease-out;
}

.single-back-btn:hover {
    color: white;
}

.single-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(168, 85, 247, 0.2);
    color: #D8B4FE;
    border: 1px solid rgba(168, 85, 247, 0.2);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-bottom: 1rem;
    animation: fade-in-up 0.6s ease-out 0.1s backwards;
    transition: background 0.3s ease;
}

.single-category-badge:hover {
    background: rgba(168, 85, 247, 0.3);
}

.single-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fade-in-up 0.6s ease-out 0.2s backwards;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
    animation: fade-in-up 0.6s ease-out 0.3s backwards;
}

.single-post-meta-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.single-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.single-featured-image {
    margin-bottom: 3rem;
    animation: fade-in-up 0.6s ease-out 0.4s backwards;
}

.single-featured-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-featured-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.single-post-content {
    animation: fade-in-up 0.6s ease-out 0.5s backwards;
}

.single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    animation: fade-in-up 0.6s ease-out 0.6s backwards;
    align-items: center;
}

.single-tag {
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    color: #D1D5DB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.single-share-section {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
    animation: fade-in-up 0.6s ease-out 0.7s backwards;
}

.single-share-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.single-share-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.single-share-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.single-share-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-share-btn:hover {
    transform: translateY(-2px);
}

.single-share-btn.twitter:hover {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.single-share-btn.facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
}

.single-share-btn.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.single-share-btn.linkedin:hover {
    background: #0A66C2;
    color: white;
    border-color: #0A66C2;
}

.single-author-bio {
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(88, 28, 135, 0.2), rgba(157, 23, 77, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    animation: fade-in-up 0.6s ease-out 0.8s backwards;
}

.single-author-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.single-author-avatar {
    border-radius: 50%;
}

.single-author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.single-author-desc {
    color: #9CA3AF;
    margin-bottom: 1rem;
}

.single-author-social {
    display: flex;
    gap: 0.75rem;
}

.single-author-social a {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.single-author-social a:hover {
    color: #C084FC;
}

.single-related-posts {
    margin-top: 5rem;
    animation: fade-in-up 0.6s ease-out 0.9s backwards;
}

.single-related-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

/* FAQ WhatsApp Button */
.faq-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    animation: whatsapp-pulse-faq 2s ease-in-out infinite;
}

.faq-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    animation: none; /* Stop pulsing on hover */
}

.faq-whatsapp-btn:hover::before {
    opacity: 1;
}

.faq-whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse-faq {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.3);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Single Post */
@media (min-width: 768px) {
    .single-post-title {
        font-size: 3rem;
    }

    .single-share-inner {
        flex-direction: row;
    }

    .single-author-inner {
        flex-direction: row;
        align-items: flex-start;
    }

    .single-related-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .single-post-title {
        font-size: 3.75rem;
    }
}

@media (max-width: 768px) {
    .single-post-hero {
        padding: 2rem 1rem;
    }

    .single-post-title {
        font-size: 2rem;
    }

    .single-featured-image {
        margin-bottom: 2rem;
    }

    .single-share-section,
    .single-author-bio {
        padding: 1.5rem;
    }
}

/* Responsive Blog Styles */
@media (min-width: 640px) {
    .blog-newsletter-form {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .blog-hero h1 {
        font-size: 3.75rem;
    }

    .featured-post-title {
        font-size: 2.25rem;
    }

    .blog-newsletter {
        padding: 3rem;
    }

    .blog-newsletter h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 3rem 1rem;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .featured-post-content {
        padding: 1.5rem;
    }

    .featured-post-title {
        font-size: 1.5rem;
    }

    .featured-post-excerpt {
        font-size: 1rem;
    }

    .featured-post-author {
        margin-left: 0;
        width: 100%;
    }

    .category-pills {
        justify-content: flex-start !important;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.75rem;
    }

    .blog-card-title {
        font-size: 1.125rem;
    }

    .featured-post-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    header, footer, .no-print {
        display: none;
    }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Page Wrapper */
.contact-page-wrapper {
    position: relative;
}

/* Background Decoration Elements */
.contact-bg-purple {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.contact-bg-pink {
    position: absolute;
    top: 100px;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

/* Contact Cards */
.contact-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.15);
}

.contact-icon-wrapper {
    transition: transform 0.3s ease;
    font-size: 24px;
}

/* Form Glow Effect */
.contact-form-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* Contact Form 7 Styles */
.satrika-contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.satrika-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.satrika-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9CA3AF;
    margin-left: 0.25rem;
}

.satrika-contact-form input[type="text"],
.satrika-contact-form input[type="email"],
.satrika-contact-form input[type="tel"],
.satrika-contact-form input[type="url"],
.satrika-contact-form select,
.satrika-contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.satrika-contact-form input[type="text"]::placeholder,
.satrika-contact-form input[type="email"]::placeholder,
.satrika-contact-form input[type="tel"]::placeholder,
.satrika-contact-form input[type="url"]::placeholder,
.satrika-contact-form textarea::placeholder {
    color: #6B7280;
}

.satrika-contact-form input[type="text"]:focus,
.satrika-contact-form input[type="email"]:focus,
.satrika-contact-form input[type="tel"]:focus,
.satrika-contact-form input[type="url"]:focus,
.satrika-contact-form select:focus,
.satrika-contact-form textarea:focus {
    outline: none;
    border-color: #A855F7;
    box-shadow: 0 0 0 1px #A855F7;
}

.satrika-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.satrika-contact-form select option {
    background: #1F2937;
    color: #FFFFFF;
}

.satrika-contact-form textarea {
    resize: none;
    min-height: 140px;
}

/* Form Grid Layout */
.satrika-contact-form .wpcf7-form > p:first-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .satrika-contact-form .wpcf7-form > p:first-child {
        grid-template-columns: 1fr;
    }
}

/* Submit Button */
.satrika-contact-form input[type="submit"],
.satrika-contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(to right, #9333EA, #EC4899);
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.satrika-contact-form input[type="submit"]:hover,
.satrika-contact-form button[type="submit"]:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    transform: translateY(-4px);
}

.satrika-contact-form input[type="submit"]:active,
.satrika-contact-form button[type="submit"]:active {
    transform: translateY(-2px);
}

/* Add icon to submit button */
.satrika-contact-form input[type="submit"]::before {
    content: "send";
    font-family: 'Material Icons Outlined';
    font-size: 1.125rem;
    margin-right: 0.5rem;
}

/* Validation Messages */
.satrika-contact-form .wpcf7-not-valid-tip {
    color: #EF4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

.satrika-contact-form .wpcf7-response-output {
    border: 2px solid;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
}

.satrika-contact-form .wpcf7-validation-errors {
    border-color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.satrika-contact-form .wpcf7-mail-sent-ok {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.satrika-contact-form .wpcf7-mail-sent-ng {
    border-color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.satrika-contact-form .wpcf7-spam-blocked {
    border-color: #6B7280;
    background: rgba(107, 114, 128, 0.1);
    color: #9CA3AF;
}

/* Loading Spinner */
.satrika-contact-form .wpcf7-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-header-animate {
    animation: fadeInUp 0.8s ease-out;
}

.contact-info-animate {
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.contact-form-animate {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Form Container Enhancement */
.contact-form-container {
    min-height: 600px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-bg-purple,
    .contact-bg-pink {
        width: 400px;
        height: 400px;
    }

    .contact-form-container {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .contact-bg-purple {
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
    }

    .contact-bg-pink {
        top: 50px;
        right: -50px;
        width: 300px;
        height: 300px;
    }

    .contact-page-wrapper {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Fallback HTML Form Styles */
.contact-form-fallback {
    display: flex;
    flex-direction: column;
}

.contact-form-fallback input[type="text"],
.contact-form-fallback input[type="email"],
.contact-form-fallback input[type="tel"],
.contact-form-fallback select,
.contact-form-fallback textarea {
    font-family: inherit;
}

.contact-form-fallback button[type="submit"]:hover {
    transform: translateY(-2px);
}

.contact-form-fallback button[type="submit"]:active {
    transform: translateY(0);
}

/* End Contact Page Styles */

/* ==========================================
   UPDATED CONTACT PAGE STYLES
   ========================================== */

/* Main Page Background */
.contact-page-bg {
    background: linear-gradient(to bottom, #05050A, #0A0A14, #05050A);
    min-height: 100vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

/* Background Decor Overrides */
.contact-bg-purple {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.contact-bg-pink {
    position: absolute;
    top: 100px;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

/* Glass Card - Contact Info */
.glass-card-contact {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card-contact:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Icon Wrappers */
.icon-box-purple {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A855F7;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.glass-card-contact:hover .icon-box-purple {
    transform: scale(1.1);
}

.icon-box-green {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ADE80;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.glass-card-contact:hover .icon-box-green {
    transform: scale(1.1);
}

/* Gradient Card */
.gradient-card-contact {
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.2), rgba(131, 24, 67, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Address Box */
.address-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.875rem;
    color: #6B7280;
}

/* Form Container */
.contact-form-wrapper {
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

/* Form Inputs Override */
.satrika-contact-form input[type="text"],
.satrika-contact-form input[type="email"],
.satrika-contact-form select,
.satrika-contact-form textarea {
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.satrika-contact-form input:focus,
.satrika-contact-form select:focus,
.satrika-contact-form textarea:focus {
    border-color: #A855F7 !important;
    box-shadow: 0 0 0 1px #A855F7 !important;
}

/* Text Gradients */
.text-gradient-purple-pink {
    background: linear-gradient(to right, #A855F7, #EC4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Animations */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
