* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GALAXY BACKGROUND */
body {
    font-family: Arial, sans-serif;
    color: #f5f5f5;
    background: #000;
    text-align: center;
}

/* STAR CANVAS */
#stars {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* HEADER */
header {
    padding: 120px 20px 90px;
    background: linear-gradient(135deg, #6b0f1a, #9b1c31);
}

header h1 {
    font-size: 2.6rem;
}

header h2 {
    margin-top: 12px;
    font-size: 1.3rem;
    color: #ffd6d6;
}

/* HERO BUTTONS */
.hero-buttons {
    margin-top: 30px;
}

.hero-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #6b0f1a;
    background: #ffffff;
}

.hero-buttons a.outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* SECTIONS */
section {
    padding: 70px 20px;
}

h2 {
    color: #ffb3b3;
    margin-bottom: 15px;
}

p {
    max-width: 720px;
    margin: auto;
    line-height: 1.6;
}

/* SKILLS */
ul {
    list-style: none;
}

li {
    background: rgba(255,255,255,0.08);
    margin: 10px auto;
    padding: 12px;
    width: 260px;
    border-radius: 8px;
}

/* PROJECTS */
.project {
    background: rgba(255,255,255,0.08);
    margin: 25px auto;
    padding: 22px;
    width: 85%;
    max-width: 520px;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-8px);
}

/* LINKS */
a {
    color: #ffb3b3;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    header {
        padding: 90px 15px 70px;
    }

    header h1 {
        font-size: 2rem;
    }

    header h2 {
        font-size: 1.1rem;
    }

    li, .project {
        width: 92%;
    }
}
