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

body {
    background: #0e0e0e;
    color: #e5e5e5;
    font-family: "Zalando Sans Expanded", sans-serif;
    line-height: 1.7;
    padding: 20px;
}

/* ====== Header ====== */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-family: "Press Start 2P", cursive;
    font-size: clamp(20px, 5vw, 36px);
    color: #fff;
    text-shadow: 0 0 6px #9c9c9c;
    margin-bottom: 16px;
}

.header p {
    font-size: clamp(14px, 3vw, 18px);
    color: #cfcfcf;
}

/* ====== Skills ====== */
.skills {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.skills h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

.skills ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 60px;
    list-style: none;
}

.skills ul div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.skills li {
    position: relative;
    padding-left: 18px;
}

.skills li::before {
    content: none;
    color: #6a9fff;
    position: absolute;
    left: 0;
}

/* ====== Projects ====== */
#projects,
.projects {
    max-width: 700px;
    margin: 0 auto 60px;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

#projects li {
    margin: 10px 0;
}

#projects a {
    color: #ff0000;
    text-decoration: none;
    transition: color 0.2s;
}

#projects a:hover {
    color: #a5c8ff;
}

/* ====== Social ====== */
.social {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.social h2 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.social a {
    color: #6a9fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.social a:hover {
    color: #a5c8ff;
}

/* ====== Horizontal Rules ====== */
hr {
    border: none;
    border-top: 1px solid #333;
    margin: 40px auto;
    width: 80%;
    max-width: 700px;
}

/* ====== Responsive Tweaks ====== */
@media (max-width: 600px) {
    .header {
        margin-bottom: 10px;
    }
    .skills {
        margin-bottom: 10px;
    }
    .skills ul {
        gap: 30px;
    }

    .skills ul div {
        width: 100%;
        text-align: center;
    }

    .skills li::before {
        left: -12px;
    }
    .projects {
        margin-bottom: 0px;
    }
    .projects ul {
        margin-bottom: 0px;
    }
}