/* 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;
}

.nav-link:hover { color: var(--neon-cyn) !important; }

/* Dropdown menu neon styling */
.nav-item.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; background: rgba(10,10,18,0.95); border: 1px solid var(--neon-purp); box-shadow: 0 0 15px rgba(188,0,255,0.5); z-index: 1000; }
.dropdown-item { color: #fff !important; padding: 0.5rem 1rem; font-family: 'Orbitron', sans-serif; }
.dropdown-item:hover { background: var(--neon-purp); color: var(--neon-cyn) !important; }
.nav-item.dropdown:hover .dropdown-menu { display: block; }

.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;
}
