:root {
    --background: #0B0D19;
    --text: #ffffff;
    --accent: orange;
    --divider: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.profile-pic {
    width: 320px;
    height: 320px;
    border-radius: 00%;
    margin-bottom: 60px;
    margin-top: 80px;
}

.social-icon {
    width: 30px;
    height: 30px;
}

.social-icon:hover {
    background: orange;
    border-radius: 50%;
}

.links {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 4px solid var(--text);
}

.link {
    display: flex;
    align-items: center;
    padding: 25px 0;
    text-decoration: none;
    color: var(--text);
    font-size: 24px;
    border-bottom: 4px solid var(--text);
    transition: all 0.2s ease;
}

.link:hover {
    color: orange;
    font-weight: bold;
}

.emoji {
    margin-right: 8px;
    font-size: 28px;
}

.social {
    justify-content: center;
    font-size: 20px;
    border-bottom: 0px solid var(--text);
    margin-top: 20px;
}

.social a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 0 5px;
}

.social a:hover {
    color: orange;
    font-weight: bold;
}

footer {
    font-size: 12px;
    margin-top: auto;
    padding-bottom: 20px;
}

footer a {
    color: white;
    text-decoration: none;
}

.wunderpix {
    color: orange;
    text-decoration: none;
}

.wunderpix:hover {
    color: white;
}

.wunderpix-logo {
    width: 48px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;
}
.pepernoot-logo {
    width: 148px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .container {
        padding: 30px 40px 20px;
    }

    .profile-pic {
        width: 220px;
        height: 220px;
        border-radius: 00%;
        margin-bottom: 50px;
        margin-top: 30px;
    }

    .link {
        font-size: 20px;
        padding: 25px 0;
        border-bottom: 4px solid var(--text);
    }

    .emoji {
        font-size: 24px;
        margin-right: 8px;
    }

    .social {
        font-size: 18px;
        margin-top: 15px;
        border-bottom: 0px solid var(--text);
    }
    .social-icon {
    width: 28px;
    height: 28px;
}
    .social-icon:hover {
    background: orange;
    border-radius: 50%;
}
    .links {
        gap: 0px;
    }

    footer {
        font-size: 10px;
        margin-top: 30px;
    padding-bottom: 20px;
    }
    .wunderpix-logo {
        width: 48px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;
}
    .wunderpix:hover {
    color: white;
}
    .pepernoot-logo {
    width: 100px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;
}
}