body {
    font-family: sans-serif;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow: auto;
}

body, html {
    height: 100%;
    margin: 0;
}

canvas {
    display: block;
}

.profile-image-container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 90px;
    margin-bottom: 30px;
}

.profile-image {
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    height: 120px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text-on-image-bottom {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #FF8C00;
    font-weight: bold;
    font-family: 'Caveat', cursive;
    font-size: 1.3em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    padding: 2px 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.container {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 80%;
    max-width: 450px;
    margin-top: 30px;
}

#arkaPlanCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.link-button {
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    background-color: #fff;
    border: 4px solid #fff;
    box-sizing: border-box;
    transform-origin: center;
    animation: pulse 1s infinite alternate;
}

.link-button:hover {
    transform: scale(1.06);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.04);
    }
}

.link-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: space-between;
}

.link-button img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border-radius: 6px;
    object-fit: contain;
}

.link-button span {
    flex-grow: 1;
    font-family: 'Caveat', cursive;
    font-weight: bold;
    font-size: 2em;
    text-align: center;
}

.link-button .icon {
    width: 24px;
    height: 24px;
    margin-left: 20px;
    fill: #777;
    transition: transform 0.2s ease-in-out;
}

.link-button .sag-ikon {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    object-fit: contain;
    margin-right: 10px;
}

.link-button a:hover .icon {
    transform: scale(1.15);
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    .profile-image {
        width: 90px;
        height: 90px;
    }

    .profile-text-on-image-bottom {
        font-size: 1em;
    }

    .link-button span {
        font-size: 1.2em;
    }

    .link-button img,
    .link-button .sag-ikon {
        width: 30px;
        height: 30px;
    }

    .link-button a {
        padding-left: 10px;
        padding-right: 10px;
    }
}
