:root {
    --bg-start: #ffd6e8;
    --bg-end: #d6e4ff;
    --card-bg: #ffffff;
    --text-color: #2a2a2a;
    --color-start: #ff8fab;
    --color-end: #a0c4ff;

    --radius: 18px;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

    font-family: "Inter", system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    font-weight: 400;

    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    color: var(--text-color);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 4rem 2rem;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;

    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    gap: 1rem;

    li {
        width: 100%;
    }

    a {
        display: block;
        text-decoration: none;

        padding: 1rem 1.5rem;
        border-radius: var(--radius);
        font-weight: 600;

        background: var(--color-start);
        color: white;

        transition: all 0.2s ease;

        &:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }

        &:active {
            transform: translateY(0);
            box-shadow: none;
        }
    }
}