* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: #030712;
    overflow-x: hidden;
}

.page-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0, 255, 120, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 0, 100, 0.20), transparent 30%),
        radial-gradient(circle at center, rgba(0, 120, 255, 0.22), transparent 38%),
        linear-gradient(135deg, #020617, #050816 50%, #000);
    z-index: -2;
}

.page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 14px;
}

.profile-card {
    width: 100%;
    max-width: 460px;
    padding: 34px 22px 24px;
    text-align: center;
    border: 1px solid rgba(80, 160, 255, 0.25);
    border-radius: 28px;
    background: rgba(3, 7, 18, 0.72);
    backdrop-filter: blur(16px);
    box-shadow:
        0 0 40px rgba(0, 140, 255, 0.22),
        inset 0 0 30px rgba(255, 255, 255, 0.03);
}

.profile-image-wrap {
    width: 132px;
    height: 132px;
    margin: 0 auto 18px;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f5ff, #0066ff, #9b5cff);
    box-shadow: 0 0 34px rgba(0, 140, 255, 0.75);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #050816;
}

h1 {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-shadow: 0 0 18px rgba(0, 170, 255, 0.65);
}

.description {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 24px;
    line-height: 1.5;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    text-decoration: none;
    color: #fff;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
    transition: all 0.25s ease;
}

.link-button::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.25s ease;
}

.link-button:hover {
    transform: translateY(-3px) scale(1.015);
    color: #fff;
}

.link-button:hover::before {
    opacity: 1;
}

.link-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.08);
}

.link-text {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: left;
}

.link-text strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
}

.link-text span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #cbd5e1;
}

.link-arrow {
    position: relative;
    z-index: 2;
    font-size: 20px;
    opacity: 0.75;
}

/* Platform renkleri */

.kick {
    box-shadow: 0 0 18px rgba(83, 252, 24, 0.16);
}

.kick::before {
    background: linear-gradient(90deg, rgba(83, 252, 24, 0.22), transparent);
}

.kick .link-icon {
    color: #53fc18;
    box-shadow: 0 0 18px rgba(83, 252, 24, 0.35);
}

.youtube {
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.16);
}

.youtube::before {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.25), transparent);
}

.youtube .link-icon {
    color: #ff2d2d;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
}

.tiktok {
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.16);
}

.tiktok::before {
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.20), rgba(255, 0, 120, 0.16), transparent);
}

.tiktok .link-icon {
    color: #00f5ff;
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.35);
}

.instagram {
    box-shadow: 0 0 18px rgba(255, 0, 170, 0.16);
}

.instagram::before {
    background: linear-gradient(90deg, rgba(255, 120, 0, 0.18), rgba(255, 0, 170, 0.20), rgba(123, 92, 255, 0.15));
}

.instagram .link-icon {
    color: #ff4fd8;
    box-shadow: 0 0 18px rgba(255, 0, 170, 0.35);
}

.footer-text {
    margin-top: 24px;
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 480px) {
    .main-wrapper {
        padding: 24px 12px;
    }

    .profile-card {
        padding: 28px 16px 22px;
        border-radius: 24px;
    }

    .profile-image-wrap {
        width: 116px;
        height: 116px;
    }

    h1 {
        font-size: 25px;
    }

    .description {
        font-size: 14px;
    }

    .link-button {
        padding: 13px 14px;
    }

    .link-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 24px;
    }

    .link-text strong {
        font-size: 17px;
    }

    .link-text span {
        font-size: 12px;
    }
}