/* Custom Styles for IPTV Trends */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(to bottom right, #f9fafb, rgba(224, 242, 254, 0.3), #f9fafb);
}

/* Glass Effect */
.glass {
    backdrop-filter: blur(24px);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #2563eb, #06b6d4, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(to right, #2563eb, #0891b2);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: white;
    backdrop-filter: blur(4px);
    border: 1px solid #d1d5db;
    color: #111827;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(156, 163, 175, 0.5);
}

/* Card Styles */
.card {
    background: white;
    backdrop-filter: blur(4px);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Section Padding */
.section-padding {
    padding: 5rem 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: #60a5fa;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}

/* Selection Styling */
::selection {
    background: rgba(191, 219, 254, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatDelayed {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(20px) translateX(-20px);
    }
    66% {
        transform: translateY(-20px) translateX(20px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floatDelayed 10s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-float-slow {
    animation: float 12s ease-in-out infinite;
    animation-delay: 4s;
}

/* Background Pattern */
.bg-pattern {
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%230ea5e9" fill-opacity="0.04"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Header Scroll Effect */
#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        padding: 0.75rem 2rem;
    }
}

/* Legal Pages Theme Blend */
.legal-page {
    background: linear-gradient(145deg, #f8fafc 0%, #eff6ff 45%, #f0f9ff 100%);
}

.legal-page .legal-main {
    position: relative;
}

.legal-page .legal-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.1) 0, transparent 28%),
                      radial-gradient(circle at 85% 5%, rgba(6, 182, 212, 0.08) 0, transparent 22%);
    pointer-events: none;
}

.legal-page .legal-doc {
    position: relative;
    z-index: 1;
}

.legal-page .legal-doc > .mb-12 {
    padding: 1.5rem;
    border: 1px solid rgba(191, 219, 254, 0.8);
    border-radius: 1rem;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.92));
    box-shadow: 0 12px 24px -18px rgba(30, 64, 175, 0.5);
}

.legal-page .legal-doc > .card {
    border-radius: 1.25rem;
    border: 1px solid #dbeafe;
    box-shadow: 0 20px 30px -22px rgba(30, 64, 175, 0.45);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.legal-page .legal-doc .prose section {
    margin: 0;
    padding: 1.25rem 1.25rem;
    border: 1px solid #e5edff;
    border-radius: 0.9rem;
    background: #ffffff;
}

.legal-page .legal-doc .prose section + section {
    margin-top: 1rem;
}

.legal-page .legal-doc .prose h2 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
}

.legal-page .legal-doc .prose h3 {
    color: #1f2937;
}

.legal-page .legal-doc .prose a {
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-page .legal-doc > .mb-12 {
        padding: 1rem;
    }

    .legal-page .legal-doc .prose section {
        padding: 1rem;
    }
}
bfdbfe;
}
#bfdbfe;
}
