/* Base Reset J-indie aesthetic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

/* Scanline overlay effect for that raw underground look */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 99999;
    opacity: 0.4;
    pointer-events: none;
    background-size: 100% 4px, 6px 100%;
}

/* Container */
.wrapper {
    width: 100%;
    max-width: 700px;
    padding: 40px 10px;
    text-align: center;
}

/* Header */
header h1 {
    font-size: 3rem;
    text-transform: lowercase;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(144, 238, 144, 0.5);
}

header h1 a {
    color: #ffffff;
    text-decoration: none;
}

/* Navigation Menu */
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

/* 69% transparent light green buttons (0.31 opacity) */
.nav-btn {
    background-color: rgba(144, 238, 144, 0.31);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: lowercase;
    border: 1px dashed rgba(144, 238, 144, 0.6);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-btn:hover, .nav-btn.active {
    background-color: rgba(144, 238, 144, 0.6);
    box-shadow: 0 0 15px rgba(144, 238, 144, 0.8);
    transform: scale(1.05);
    cursor: crosshair;
}

/* Page Content Sections */
section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: left;
}

section h2 {
    font-size: 1.8rem;
    text-transform: lowercase;
    border-bottom: 2px dotted rgba(144, 238, 144, 0.4);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: rgba(144, 238, 144, 0.9);
}

/* Links styling inside sections */
a.links {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

a.links:hover {
    color: lightgreen;
    text-decoration: underline;
}

/* List Styling */
ul {
    list-style: none;
}

li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.label {
    color: #888888;
    text-transform: lowercase;
}

.about-text {
    font-size: 1.1rem;
    text-align: justify;
    word-spacing: -1px;
}

.divider {
    color: rgba(144, 238, 144, 0.31);
    margin: 40px 0;
    letter-spacing: 5px;
}
/* Spotify Embed Custom Styling */
.spotify-frame {
    border-radius: 8px; 
    border: 1px dashed rgba(144, 238, 144, 0.4);
    width: 100%;
    max-width: 400px;
    height: 152px;
    display: block;
    margin: 30px auto 0 auto;
}