/* -------- Reset / Base -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0b0b0b;
    color: #f5f5f5;
    line-height: 1.6;
}

/* -------- Layout -------- */
header, main, footer {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
}

header {
    border-bottom: 2px solid #f5c400;
}

footer {
    border-top: 2px solid #f5c400;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* -------- Typography -------- */
h1, h2 {
    color: #f5c400;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* -------- Image -------- */
#hero-image {
    text-align: center;
    margin: 2rem 0;
}

#hero-image img {
    max-width: 250px;
    width: 100%;
    border: 3px solid #f5c400;
}

/* -------- Lists -------- */
ul {
    list-style: none;
}

li {
    padding: 0.25rem 0;
}

/* -------- Links (future-proof) -------- */
a {
    color: #f5c400;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
