:root {
    --black: black;
    --white: white;
    --light-purple: #c900c9;
    --light-green: rgb(153, 197, 160); /* for panels */
    --border: 1px solid #c900c9;
}

body {
    font-family: "WarioLand 4TT", monospace;
    background-color: black;          /* black background */
    background-image: url("images/nothing.png");
    background-repeat: repeat;
    color: white;                     /* default text white */
    margin: 0;
    padding: 0;
}

#content {
    display: flex;
    gap: 20px; 
    padding: 20px;
}

/* Sidebar */
.side-nav {
    width: 220px;       
    position: sticky;
    top: 20px;
    color: #c900c9;                  /* neon purple text for sidebar */
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.side-nav li {
    margin-bottom: 10px;
}

.side-nav a {
    display: block;
    text-decoration: none;
    color: #c900c9;                  /* neon purple links */
    font-weight: bold;
}

.side-nav strong {
    color: #c900c9;                  /* neon purple for strong text */
}

/* Optional: add hover glow for that neon effect */
.side-nav a:hover,
.side-nav strong:hover {
    text-shadow: 0 0 5px #c900c9, 0 0 10px #c900c9;
}

#avatar img {
    width: 100%;
    margin-bottom: 10px;
}

#bio {
    margin-bottom: 10px;
}

.panel {
    background-color: var(--light-green);
    padding: 5px;
    margin: 10px 0;
    color: black;                     /* panel text black for contrast */
}

.stamps img {
    display: block;
    margin-bottom: 5px;
    max-width: 100%;
}

/* Main Content */
.main-content {
    flex: 1;            
    max-width: 800px;   
    color: white;                     /* all main content text white */
}

.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.item {
    width: 100px;
    height: 100px;
    background: white;
    border: 1px solid black;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    color: white;                     /* headings white */
}

.center-img {
    display: block;
    margin: 0 auto;
}