/* Logicamp Neon Design System */
:root {
    --neon-cyn: #00f3ff;
    --neon-purp: #bc00ff;
    --neon-pink: #ff00bd;
    --neon-green: #39ff14;
    --bg-dark: #0a0a12;
}

/* Base Components */
.hero-section {
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
}

.main-slideshow {
    border-right: 2px solid var(--neon-purp);
    box-shadow: 10px 0 20px rgba(188, 0, 255, 0.2);
}

.slideshow-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Registration Form */
.registration-form {
    background: rgba(10, 10, 20, 0.85);
    padding: 2rem;
    height: 100%;
    border-left: 1px solid rgba(188, 0, 255, 0.3);
    backdrop-filter: blur(10px);
}

.form-title {
    color: var(--neon-cyn);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8), 2px 2px 4px #000; /* Shadow for legibility */
}

.form-control {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    margin-bottom: 1rem;
}

.navbar {
    background: rgba(10, 10, 18, 0.9) !important;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--neon-purp);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    padding: 0.8rem 0;
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-cyn) !important;
    text-shadow: 0 0 8px var(--neon-cyn);
}

/* Dropdown menu neon styling */
.dropdown-menu {
    background: rgba(10, 10, 25, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--neon-purp) !important;
    border-radius: 0 0 15px 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(188, 0, 255, 0.2);
    padding: 0.5rem 0;
    margin-top: 0.5rem !important;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    color: #bbb !important;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    padding: 0.7rem 1.5rem !important;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(188, 0, 255, 0.1) !important;
    color: var(--neon-cyn) !important;
    padding-left: 2rem !important;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-control:focus {
    border-color: var(--neon-cyn) !important;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3) !important;
}

.btn-register {
    background: linear-gradient(45deg, var(--neon-cyn), var(--neon-purp));
    border: none;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-register:hover {
    box-shadow: 0 0 20px var(--neon-cyn);
    transform: scale(1.02);
}

/* Avatar Selection */
.avatar-choice {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.avatar-choice img {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.avatar-choice input[type="radio"] {
    display: none;
}

.avatar-choice input[type="radio"]:checked + img {
    border-color: var(--neon-cyn);
    box-shadow: 0 0 15px var(--neon-cyn);
}

.avatar-choice span {
    display: block;
    font-size: 0.75rem;
    margin-top: 5px;
    color: #aaa;
}

/* Urgent Banner */
.urgent-banner {
    background: linear-gradient(90deg, #ff0000, #990000);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

/* Stats */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--neon-cyn);
    background: rgba(0, 243, 255, 0.05);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--neon-purp);
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 3rem 0;
    margin-top: 5rem !important;
}
