/* GENERAL */
body, html {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #0a0a0a;
    color: #f5f5f5;
    margin: 25px;
    line-height: 1.6;
}

/* HEADINGS */
h1 {
    font-size: 42px;
    text-align: center;
    letter-spacing: 2px;
    color: #ff2e63;
    margin-bottom: 5px;
}

h2 {
    color: #ff4d6d;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-top: 30px;
}

/* TEXT */
p {
    max-width: none;
}

/* LINKS */
a {
    color: #ff9bb3;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #ff4d6d;
}

/* LISTS */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 12px;
    padding: 8px;
    background-color: rgba(255, 77, 109, 0.05);
    border-left: 3px solid #ff4d6d;
}

/* SMALL TEXT */
small {
    color: #aaa;
}

/* HR */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff4d6d, transparent);
    margin: 40px 0;
}

/* FOOTER */
footer {
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* E-MAIL */
.contact-email {
    max-width: none;
    color: #f5f5f5;
    font-size: 16px;
    text-align: left;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 30px;
}

/* IMAGE */
img {
    display: block;
    margin: 20px auto;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 77, 109, 0.4);
    max-width: 300px;
}

/* EP LAYOUT FIX */
.page {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 900px;
    margin: auto;
}

/* SIDEBAR OVERRIDES */
.sidebar img {
    margin: 0;          /* overrides global img centering */
    max-width: 100%;    /* overrides 300px cap */
}

/* KEEP TRACKLIST LEFT BUT SPACED */
.sidebar ul {
    padding-left: 15px;
}

/* EP TITLE CENTERING (you already have h1 centered, so optional class) */
.ep-title {
    text-align: center;
}

/* SECTION SPACING */
section {
    margin-bottom: 30px;
}