:root {
    --neon-blue: #00f3ff;
    --neon-pink: #ff00ea;
    --dark-glass: rgba(10, 10, 10, 0.92);
    --border-glass: rgba(0, 243, 255, 0.3);
}

body {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('../../../assets/img/bg/admin-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    margin: 0; padding: 0; min-height: 100vh;
}

.sim-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 100px 5% 50px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.main-content {
    flex: 1 1 600px;
    min-width: 0;
    z-index: 10;
}

.sim-sidebar {
    flex: 1 1 350px;
    min-width: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 5;
}

.glass-morphism {
    background: var(--dark-glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.6);
}

.sim-group {
    position: relative;
    margin-bottom: 25px;
}

.cyber-select-display {
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    padding: 18px;
    border-radius: 10px;
    cursor: pointer;
    border-left: 5px solid var(--neon-blue);
    font-weight: 500;
}

.cyber-dropdown-content {
    display: none;
    position: absolute;
    top: 105%; left: 0; right: 0;
    background: #0d0d0d;
    border: 2px solid var(--neon-blue);
    border-radius: 12px;
    z-index: 999999 !important;
    max-height: 350px;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(0,0,0,1);
}

.search-wrapper {
    position: sticky; top: 0;
    background: #0d0d0d;
    padding: 12px;
    border-bottom: 1px solid #222;
}

.inner-search {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: var(--neon-blue);
    padding: 12px;
    border-radius: 30px;
    outline: none;
}

.option-list div {
    padding: 15px 20px;
    border-bottom: 1px solid #1a1a1a;
    cursor: pointer;
}

.option-list div:hover {
    background: var(--neon-blue);
    color: #000;
}

.summary-header { font-family: 'Orbitron'; color: var(--neon-blue); border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 20px; }
.summary-body { max-height: 300px; overflow-y: auto; margin-bottom: 20px; }
#summary-items { list-style: none; padding: 0; margin: 0; }
#summary-items li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #222; font-size: 0.9rem; }

.total-box {
    background: rgba(0,243,255,0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

#total-price { color: var(--neon-pink); font-family: 'Orbitron'; font-size: 1.8rem; }

.btn {
    width: 100%; padding: 16px; border: none; border-radius: 10px;
    font-family: 'Orbitron'; font-weight: bold; cursor: pointer;
}
.btn-wa { background: #25d366; color: white; margin-bottom: 10px; }
.btn-row { display: flex; gap: 10px; }
.btn-outline { background: transparent; border: 1px solid var(--neon-blue); color: var(--neon-blue); flex: 1; }
.btn-danger { background: transparent; border: 1px solid var(--neon-pink); color: var(--neon-pink); flex: 1; }

@media (max-width: 992px) {
    .sim-container { flex-direction: column; padding-top: 80px; }
    .main-content { order: 1; width: 100%; }
    .sim-sidebar { order: 2; width: 100%; position: relative; top: 0; margin-top: 30px; }
    .glitch { font-size: 1.6rem; text-align: center; }
}

.step-hidden { display: none; }
.animate-flicker { animation: flicker 0.4s ease-out; }
@keyframes flicker {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}