/* Google Fonts Import for English elements */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

/* Reset base style settings */
body {
    background-color: #06040d;
    color: #e2e8f0;
    font-family: 'Cairo', 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Glassmorphism Styles */
.glass-card {
    background: rgba(15, 11, 33, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card-hover:hover {
    background: rgba(15, 11, 33, 0.65);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 10px 40px 0 rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

/* Gradient Utilities */
.text-gradient-purple {
    background: linear-gradient(135deg, #a78bfa 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fbcfe8 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-success {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ambient glow blobs */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.12;
    }
    100% {
        transform: scale(1.1) translate(10px, -10px);
        opacity: 0.22;
    }
}

/* Glow effects */
.glow-primary {
    box-shadow: 0 0 20px 0 rgba(139, 92, 246, 0.3);
}
.glow-accent {
    box-shadow: 0 0 20px 0 rgba(249, 115, 22, 0.25);
}

/* Micro-animations */
.hover-scale {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-scale:hover {
    transform: scale(1.02);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
    transform: translateY(-2px);
}

/* Option Selected glow */
.option-input:checked + .option-label {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #06040d;
}
::-webkit-scrollbar-thumb {
    background: #1e1b4b;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4c1d95;
}

/* Styling native selects, ranges & custom elements */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.35) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
}

.plyr--video {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.5);
}
