/* Level Page Specifics */
.level-header {
    background: radial-gradient(circle at 50% 100%, #064016 0%, #03070a 70%);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}
.glow-orb {
    position: absolute;
    width: 600px;
    height: 300px;
    background: rgba(0, 255, 65, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}
.top-center {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

/* Glass Box Overview */
.glass-box {
    background: rgba(10, 20, 30, 0.9);
    backdrop-filter: blur(10px);
   margin-top: 30px;
}
.shadow-green-glow {
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.1);
 

}

/* Custom Accordion (The Modules) */
.cyber-btn-block {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
}

.cyber-btn-block:hover,
.cyber-btn-block:not(.collapsed) {
    background: rgba(0, 255, 65, 0.1) !important;
    border-color: var(--cyber-green);
}
.cyber-btn-block::after {
    filter: invert(1);
}
.cyber-btn-block:not(.collapsed)::after {
    filter: sepia(1) saturate(10) hue-rotate(90deg);
}

/* Numbers */
.module-num {
    font-family: "Chakra Petch", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cyber-green);
    border: 2px solid var(--cyber-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glow-border .module-num {
    box-shadow: 0 0 10px var(--cyber-green);
}

/* Challenge Box */
.icon-list li {
    list-style: none;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.icon-list li::before {
    content: "➜";
    color: var(--cyber-green);
    position: absolute;
    left: 0;
}

.bg-white-10 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.text-xs {
    font-size: 0.75rem;
}

/* Outcomes */
.outcome-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}
.outcome-card:hover {
    border-color: var(--cyber-green);
    transform: translateY(-5px);
}

/* Max Width for readability */
.max-w-700 {
    max-width: 700px;
}
