* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #03070b;

    overflow: hidden;
    position: relative;
}

.bg-effect {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 10% 15%, rgba(0, 180, 255, 0.28), transparent 38%),
        radial-gradient(circle at 90% 80%, rgba(0, 90, 255, 0.22), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(0, 220, 255, 0.12), transparent 45%);

    filter: blur(70px);
}

.main-card {
    position: relative;
    z-index: 2;

    width: 95%;
    max-width: 420px;

    padding: 45px 25px;

    border-radius: 28px;

    background: rgba(5, 13, 20, 0.78);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(0, 190, 255, 0.45);

    box-shadow:
        0 0 60px rgba(0, 160, 255, 0.13),
        0 25px 70px rgba(0, 0, 0, 0.8);

    text-align: center;
    color: white;
}

.avatar-frame {
    width: 180px;
    height: 180px;

    margin: auto;
    padding: 5px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #00c6ff,
        #0072ff,
        #00eaff
    );

    box-shadow:
        0 0 30px rgba(0, 200, 255, 0.35);
}

.avatar-frame img {
    width: 100%;
    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #03080d;
}

.nam {
    margin-top: 30px;
    margin-bottom: 35px;
}

.nam h1 {
    font-size: 30px;
    letter-spacing: 1px;

    color: white;

    text-shadow:
        0 0 20px rgba(0, 190, 255, 0.3);
}

.nam p {
    margin-top: 8px;

    color: #54d9ff;

    letter-spacing: 2px;
    font-size: 14px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.btn {
    text-decoration: none;

    padding: 14px;

    border-radius: 14px;

    border: 1px solid rgba(0, 190, 255, 0.4);

    background: rgba(0, 100, 160, 0.08);

    color: #f4faff;

    font-size: 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    transition: 0.35s ease;
}

.btn i {
    color: #00c8ff;
    transition: 0.35s ease;
}

.btn:hover {
    background: linear-gradient(
        135deg,
        #0072ff,
        #00c6ff
    );

    transform: translateY(-5px);

    border-color: #54e5ff;

    box-shadow:
        0 12px 35px rgba(0, 170, 255, 0.35);
}

.btn:hover i {
    color: white;
    transform: scale(1.15);
}

@media (max-width: 480px) {
    .main-card {
        padding: 40px 20px;
    }

    .avatar-frame {
        width: 150px;
        height: 150px;
    }

    .nam h1 {
        font-size: 24px;
    }
}
.site-footer {
    margin-top: 35px;
    padding-top: 20px;

    border-top: 1px solid rgba(0, 190, 255, 0.15);

    text-align: center;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 9px 18px;

    border-radius: 10px;

    border: 1px solid rgba(0, 190, 255, 0.25);

    background: rgba(0, 100, 160, 0.06);

    color: #54d9ff;

    text-decoration: none;

    font-size: 12px;

    transition: 0.3s ease;
}

.contact-btn i {
    font-size: 11px;
}

.contact-btn:hover {
    background: rgba(0, 180, 255, 0.12);

    border-color: rgba(0, 190, 255, 0.55);

    transform: translateY(-2px);

    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.15);
}