@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

/* ------------------------------------------
   🎨 قواعد الألوان المخصصة (Stark County Palette)
   ------------------------------------------ */
:root {
    --stark-dark: #0a0d14;
    --stark-darkblue: #1e3a8a;
    --stark-blue: #38bdf8;
    --stark-glow: rgba(56, 189, 248, 0.25);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--stark-dark);
    color: #f3f4f6;
    overflow-x: hidden;
}

/* ------------------------------------------
   🌌 الخلفيات والكروت الزجاجية (Glassmorphism)
   ------------------------------------------ */
.bg-stark-dark {
    background-color: #0a0d14 !important;
}

.text-stark-blue {
    color: #38bdf8 !important;
}

.bg-stark-darkblue {
    background-color: #1e3a8a !important;
}

.bg-stark-blue {
    background-color: #38bdf8 !important;
}

.border-stark-blue {
    border-color: #38bdf8 !important;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.glass-card {
    background: rgba(17, 24, 39, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.2);
}

.hero-bg {
    background: radial-gradient(circle at center, #1e293b 0%, #0a0d14 100%);
}

/* ------------------------------------------
   ✨ تأثيرات الإضاءة والأنيميشن (Glows & Animations)
   ------------------------------------------ */
.glow-text {
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5), 0 0 40px rgba(56, 189, 248, 0.2);
}

@keyframes pulseWolf {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.4;
    }
}

.pulse-wolf {
    animation: pulseWolf 4s infinite ease-in-out;
}

/* ------------------------------------------
   📜 شريط التمرير (Custom Scrollbar)
   ------------------------------------------ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0d14;
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #38bdf8;
}