:root {
    --space-blue: #0a0a2a;
    --space-purple: #1a1a4a;
    --neon-blue: #00d4ff;
    --neon-purple: #9d00ff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --border-dark: #2d3748;
}

body {
    background: var(--space-blue);
    color: var(--text-light);
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(41, 196, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 50%);
}

/* Cards */
.card {
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    border: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

/* Form controls */
.form-control, .form-select {
    background-color: rgba(26, 26, 74, 0.5);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
}

.form-control:focus, .form-select:focus {
    background-color: rgba(26, 26, 74, 0.8);
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
    color: var(--text-light);
}

/* Tables */
.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(26, 26, 74, 0.3);
    --bs-table-hover-bg: rgba(0, 212, 255, 0.1);
    color: var(--text-light);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Hero Section with New Background */
.hero-section {
    background: linear-gradient(135deg, rgba(10, 10, 42, 0.85) 0%, rgba(26, 26, 74, 0.9) 100%), 
                url('/styles/theme/gow/img/bkd_page.jpg') center/cover fixed;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

/* Remove any old background overlays */
.hero-section::before,
.hero-section::after {
    display: none;
}

/* Optional: Add subtle animation to hero section */
@keyframes heroBackgroundShift {
    0% {
        background-position: center center;
    }
    50% {
        background-position: center 60%;
    }
    100% {
        background-position: center center;
    }
}

.hero-section {
    animation: heroBackgroundShift 30s ease-in-out infinite;
}

/* Optional: Add floating elements effect */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Add a subtle glow effect to hero content */
.hero-section h1 {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-section .lead {
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.3);
}

/* Make sure content is readable over background */
.hero-section .btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero-section .btn-outline-light {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}


/* Update the existing mobile responsive section */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        min-height: 400px; /* Slightly smaller on mobile */
        background-attachment: scroll; /* Remove fixed background on mobile for better performance */
    }
    .display-4 {
        font-size: 2.5rem;
    }
    .hero-section h1 {
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); /* Smaller shadow on mobile */
    }
}