/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Body ===== */
body {
    font-family: "Georgia", serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0c0c;
    overflow: hidden;
    position: relative;
}

/* ===== Background Glow Effect ===== */
.bg-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.25), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(184, 134, 11, 0.2), transparent 50%);
    z-index: 0;
    filter: blur(60px);
}

/* ===== Main Card ===== */
.main-card {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 420px;
    padding: 45px 25px;
    border-radius: 28px;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow:
        0 0 50px rgba(212, 175, 55, 0.15),
        inset 0 0 25px rgba(212, 175, 55, 0.05);
    text-align: center;
    color: #f5f5f5;
}

/* ===== Avatar ===== */
.avatar-frame {
    width: 180px;
    height: 180px;
    margin: auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #d4af37, #ffb347);
}

.avatar-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #111;
}

/* ===== Name ===== */
.nam {
    margin-top: 30px;
    margin-bottom: 35px;
}

.nam h1 {
    font-size: 30px;
    letter-spacing: 1px;
}

.nam p {
    margin-top: 8px;
    color: #d4af37;
    letter-spacing: 2px;
}

/* ===== Buttons ===== */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.btn {
    text-decoration: none;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.7);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
}

/* Hover */
.btn:hover {
    background: linear-gradient(135deg, #d4af37, #ffb347);
    color: #111;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 480px) {

    .avatar-frame {
        width: 150px;
        height: 150px;
    }

    .nam h1 {
        font-size: 24px;
    }
}
 