/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    background: #00040a;
    color: #dce6f0;
    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* SCANLINES OVERLAY */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    opacity: 0.08;
    z-index: 999;
}

/* HEADER */
header {
    padding: 40px 20px;
    margin-top: 20px;
    background: linear-gradient(180deg, #0a0f18, #00040a);
    border-bottom: 3px solid #7fdcff;
    box-shadow: 0 0 25px rgba(127, 220, 255, 0.5);
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
}

h1 {
    color: #7fdcff;
    font-size: 42px;
    text-shadow: 0 0 12px #7fdcff;
}

.tagline {
    color: #9bb4c9;
    margin-top: 10px;
}

.neon-divider {
    height: 4px;
    background: #7fdcff;
    box-shadow: 0 0 18px #7fdcff;
    margin-top: 20px;
    border-radius: 2px;
}

/* MAIN */
main {
    width: 100%;
    max-width: 900px;
    margin-top: 30px;
}

/* PANELS */
.panel {
    background: rgba(10, 20, 30, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid #113044;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;

    box-shadow: 0 0 25px rgba(127, 220, 255, 0.25),
                inset 0 0 15px rgba(127, 220, 255, 0.15);
}

.panel h2 {
    color: #7fdcff;
    text-shadow: 0 0 10px #7fdcff;
}

.accent-bar {
    height: 3px;
    background: #7fdcff;
    box-shadow: 0 0 12px #7fdcff;
    margin: 12px auto 20px auto;
    width: 60%;
    border-radius: 2px;
}

/* LIST */
.tech-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.tech-list li {
    margin: 10px 0;
    padding: 8px;
    background: rgba(20, 40, 60, 0.5);
    border: 1px solid #1e3a4f;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(127, 220, 255, 0.2);
}

/* IMAGE SLOT */
.image-slot {
    margin-top: 25px;
    padding: 45px;
    border: 2px dashed #7fdcff;
    border-radius: 8px;
    color: #7fdcff;
    background: rgba(0, 10, 20, 0.4);
    box-shadow: 0 0 15px rgba(127, 220, 255, 0.25);
}

/* FOOTER */
footer {
    padding: 20px;
    margin-bottom: 40px;
    color: #6f8599;
}

footer .neon-divider {
    margin-bottom: 20px;
}
