/* ORA PRO - Dark Red Theme */
/* Premium IPTV Player - 2026 */

/* ========================================
   CSS Variables
======================================== */
:root {
    /* Brand Colors - Red */
    --brand-primary: #DC2626;
    --brand-secondary: #B91C1C;
    --brand-light: #EF4444;
    --brand-dark: #991B1B;
    
    /* Dark Colors */
    --dark-900: #080808;
    --dark-800: #0A0A0A;
    --dark-700: #0D0D0D;
    --dark-600: #111111;
    --dark-500: #141414;
    --dark-400: #171717;
    --dark-300: #1F1F1F;
    --dark-200: #2D2D2D;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E5E5E5;
    --text-muted: #9CA3AF;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);
}

/* ========================================
   Base Styles
======================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-700) 50%, var(--dark-800) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: rgba(220, 38, 38, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(220, 38, 38, 0.3);
    color: white;
}

/* ========================================
   Typography
======================================== */
.font-display {
    font-family: 'Poppins', sans-serif;
}

.text-gradient-red {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #B91C1C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   Glass Morphism Cards
======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--glass-hover);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

/* ========================================
   Navigation
======================================== */
.glass-nav {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Buttons
======================================== */
.btn-primary {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #B91C1C 100%);
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.btn-primary::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;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-glass {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    padding: 14px 28px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    border-color: var(--brand-primary);
    background: rgba(220, 38, 38, 0.1);
}

/* ========================================
   Icon Containers
======================================== */
.icon-circle-glow {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.1) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.glass-card:hover .icon-circle-glow {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(185, 28, 28, 0.2) 100%);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    transform: scale(1.05);
}

/* ========================================
   TV Mockup
======================================== */
.tv-mockup-glass {
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-900);
    border: 2px solid rgba(220, 38, 38, 0.2);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(220, 38, 38, 0.15);
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.5);
    }
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Pricing Badge
======================================== */
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* ========================================
   Featured Card
======================================== */
.featured-card {
    position: relative;
    background: var(--glass-bg);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), transparent, rgba(220, 38, 38, 0.3));
    border-radius: 22px;
    z-index: -1;
}

/* ========================================
   Timeline
======================================== */
.timeline-vertical {
    position: relative;
    padding-left: 50px;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-dark));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-light), var(--brand-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid var(--dark-800);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    z-index: 10;
}

/* ========================================
   Policy Sections
======================================== */
.policy-section {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--brand-primary);
    margin-bottom: 28px;
}

.policy-section h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

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

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-light);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-primary) var(--dark-900);
}

/* ========================================
   Focus Styles
======================================== */
:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 768px) {
    .glass-card {
        border-radius: 16px;
    }
    
    .icon-circle-glow {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }
    
    .timeline-vertical {
        padding-left: 35px;
    }
    
    .timeline-vertical::before {
        left: 12px;
    }
    
    .timeline-number {
        left: -35px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .glass-nav {
        display: none !important;
    }
}
