/* Custom Premium Styles mimicking Apple & Red Bull Luxury */
body {
    background-color: #080808;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.font-display-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.font-label-caps {
    font-family: 'Geist', monospace;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Glassmorphic elements with optical overlay */
.glass-panel {
    background: rgba(17, 17, 17, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.glass-panel-heavy {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.7);
}

/* Sunset Heading Glow styling */
.sunset-heading-glow {
    text-shadow: 0 0 25px rgba(255, 122, 0, 0.22), 0 0 50px rgba(255, 122, 0, 0.1);
}

.sunset-bg-glow {
    background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, rgba(255, 122, 0, 0) 70%);
}

/* Active selection glow */
.glow-active {
    box-shadow: 0 0 35px rgba(255, 122, 0, 0.25);
    border-color: rgba(255, 122, 0, 0.7) !important;
}

.glow-text-orange {
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.55);
}

/* Premium Glassmorphic Card Styling */
.glass-card-premium {
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.35);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 122, 0, 0.1);
    background: rgba(20, 20, 20, 0.65);
}

/* Pricing Card Transition Animation */
.pricing-card-animate {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.pricing-duration-switch {
    animation: scalePulse 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scalePulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.97); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

/* Dynamic Video Background Styling */
#global-bg-video {
    transition: opacity 1s ease-in-out;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(12, 12, 12, 0.2) 0%, rgba(12, 12, 12, 0.75) 60%, rgba(12, 12, 12, 1) 100%);
}

/* Shaking and keyframes for secure lock alert */
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

/* Custom scrollbars for chat columns */
.scrollbar-none::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.scrollbar-none::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.scrollbar-none::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.3);
    border-radius: 99px;
}

/* Custom Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

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

/* Drift animation for cloud/fog simulation */
@keyframes drift {
    0% {
        transform: scale(1.05) translate(0px, 0px);
    }
    50% {
        transform: scale(1.1) translate(-15px, 8px);
    }
    100% {
        transform: scale(1.05) translate(0px, 0px);
    }
}

.animate-drift {
    animation: drift 25s ease-in-out infinite;
}

/* Floating chips movement */
@keyframes floatY {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animate-float-1 {
    animation: floatY 5s ease-in-out infinite;
}

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

.animate-float-3 {
    animation: floatY 5.5s ease-in-out infinite 1.4s;
}

.animate-float-4 {
    animation: floatY 6.5s ease-in-out infinite 2.1s;
}

@keyframes paraglider-path {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(0.9);
    }
    33% {
        transform: translate(30px, -20px) rotate(3deg) scale(0.95);
    }
    66% {
        transform: translate(15px, 15px) rotate(-2deg) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(0.9);
    }
}

.animate-paraglider {
    animation: paraglider-path 18s ease-in-out infinite;
}

/* Pulsing Glow Border for High CTA elements */
@keyframes pulse-border {
    0%,
    100% {
        border-color: rgba(255, 140, 0, 0.4);
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.1);
    }
    50% {
        border-color: rgba(255, 140, 0, 0.9);
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.4);
    }
}

.glow-pulse {
    animation: pulse-border 2.5s infinite ease-in-out;
}

/* Cinematic noise */
.noise-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* Horizontal drag hints */
.drag-indicators span {
    transition: all 0.3s ease;
}

/* Custom alert animation */
@keyframes slideIn {
    from {
        transform: translateY(100px) translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
}

.alert-anim {
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Premium Silver Pulsing Glow Border for Custom/No-Preference option */
@keyframes pulse-border-silver {
    0%, 100% {
        border-color: rgba(226, 232, 240, 0.2);
        box-shadow: 0 0 15px rgba(226, 232, 240, 0.05);
    }
    50% {
        border-color: rgba(226, 232, 240, 0.85);
        box-shadow: 0 0 30px rgba(226, 232, 240, 0.25);
    }
}

.glow-active-silver {
    animation: pulse-border-silver 2.2s infinite ease-in-out;
    background: rgba(12, 12, 12, 0.75) !important;
    border-color: rgba(226, 232, 240, 0.75) !important;
}
