/* HERO */
.hero {
    height: 400px;
    width: 100%;
    background-image: url('welcome.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 255, 0, 0.12);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center !important;
}

.hero-content h1,
.hero-content h3 {
    text-shadow:
        0 0 10px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.8);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

/* FULL-WIDTH DIVIDERS */
.thick-line,
.section-divider {
    width: 100%;
    margin: 0;
}

.thick-line {
    height: 6px;
    background: #00ff00;
    box-shadow: 0 0 12px rgba(0,255,0,0.5);
}

.section-divider {
    height: 4px;
    background: #00ff00;
    margin: 50px 0;
    box-shadow: 0 0 10px rgba(0,255,0,0.4);
}

/* CARDS */
.dark-card {
    background: #0d0d0d;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}

.green-tint-card {
    background: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0,255,0,0.3);
    padding: 25px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
    height: 100%;
}

/* DEVELOPMENT GRID */
.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.dev-box {
    background: #0d0d0d;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: white;
}

.dev-complete {
    border: 2px solid #00ff00;
}

.dev-underway {
    border: 2px solid #ffcc00;
}

.dev-notstarted {
    border: 2px solid #ff4444;
}

/* MESSAGE BOX */
.question-box {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #222;
    text-align: center;
}

.question-box p {
    color: white;
    font-size: 18px;
}
