/* Common Styles for All Pages */
body {
    background: 
        linear-gradient(180deg, 
            rgba(26, 26, 46, 0.85) 0%, 
            rgba(22, 33, 62, 0.85) 25%, 
            rgba(15, 20, 25, 0.85) 50%, 
            rgba(10, 14, 21, 0.85) 75%, 
            rgba(5, 6, 8, 0.85) 100%),
        url('../assets/Prontera_city_hero_background_09f15f55.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: hsl(210, 5%, 92%);
    font-family: 'Poppins', sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above background */
body > * {
    position: relative;
    z-index: 1;
}

.bg-card-glass {
    background: rgba(15, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* Navbar Styles */
nav {
    backdrop-filter: blur(10px);
}

/* Button Styles */
button, .btn {
    transition: all 0.3s ease;
}

button:hover, .btn:hover {
    transform: translateY(-2px);
}

/* Input Styles */
input, select, textarea {
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    transform: scale(1.02);
}

/* Card Hover Effects */
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 100, 100, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 100, 100, 0.7);
}

/* Global Heading Styles - Match UI Design (White/Blue) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

/* Headings default to white with blue gradient accents */
h1.font-display, h2.font-display, h3.font-display, h4.font-display, h5.font-display, h6.font-display {
    color: #ffffff; /* White for headings */
}

/* Blue accents for links and secondary elements */
a.text-blue-400, a.text-blue-500, .text-blue-400, .text-blue-500 {
    color: #3b82f6 !important; /* Blue-500 */
}

a:hover.text-blue-400, a:hover.text-blue-500 {
    color: #60a5fa !important; /* Blue-400 */
}

