body {
    margin: 0;
    font-family: Arial, sans-serif;

    background: linear-gradient(to bottom, #0f0c29, #1a103d, #090814);

    color: white;
    text-align: center;
}

/* HEADER */
header {
    padding: 70px 20px;

    background: rgba(20, 20, 40, 0.7);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(168, 85, 247, 0.3);

    box-shadow: 0 0 25px rgba(168, 85, 247, 0.25);
}

/* PROFILE IMAGE */
.profile-img {
    width: clamp(120px, 15vw, 180px);
    height: clamp(120px, 15vw, 180px);

    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #a855f7;

    box-shadow:
        0 0 25px rgba(168, 85, 247, 0.5),
        0 0 60px rgba(168, 85, 247, 0.2);

    margin-bottom: 15px;

    transition: 0.3s;
}

/* hover */
.profile-img:hover {
    transform: scale(1.05);
}

/* TEXT */
h1 {
    margin: 0;
    font-size: 42px;
    color: #d8b4fe;
    text-shadow: 0 0 15px #a855f7;
}

header p {
    color: #c4b5fd;
    font-size: 18px;
}

/* SECTIONS */
section {
    padding: 40px;
}

.about,
.skills,
.contact,
.cv {
    background: rgba(17, 24, 39, 0.75);

    margin: 25px auto;

    width: 80%;

    border-radius: 18px;

    border: 1px solid rgba(168, 85, 247, 0.25);

    backdrop-filter: blur(12px);

    box-shadow: 0 0 25px rgba(168, 85, 247, 0.15);

    transition: 0.3s;

    padding: 40px;
}

/* hover cards */
.about:hover,
.skills:hover,
.contact:hover,
.cv:hover {
    transform: translateY(-5px);
}

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

li {
    padding: 10px;
    color: #ddd6fe;
}

/* ===================== */
/* 🔥 SMALL BUTTONS FIX */
/* ===================== */

button,
.btn-cv {
    width: auto;
    min-width: 120px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 14px;

    border: none;
    border-radius: 10px;

    font-size: 14px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

    text-decoration: none;

    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* colors */
button {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    color: white;
}

.btn-cv {
    background: linear-gradient(135deg, #28a745, #34d058);
    color: white;
}

/* hover (desktop only) */
@media (hover: hover) {
    button:hover,
    .btn-cv:hover {
        transform: scale(1.05);
    }
}

/* MESSAGE */
#message {
    margin-top: 15px;
    color: #c084fc;
}

/* FOOTER */
footer {
    padding: 20px;
    margin-top: 30px;

    background: rgba(20, 20, 40, 0.8);

    border-top: 1px solid rgba(168, 85, 247, 0.3);

    color: #c4b5fd;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    .about,
    .skills,
    .contact,
    .cv {
        width: 92%;
        padding: 25px;
    }

    button,
    .btn-cv {
        font-size: 14px;
        min-width: 110px;
        height: 34px;
    }
}