    /* ====== RESET ====== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
    }

    body {
        background: linear-gradient(135deg, #0f172a, #1e293b);
        color: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 20px;
    }

    .container {
        width: 100%;
        max-width: 420px;
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
    }

    .profile-img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #38bdf8;
        margin-bottom: 12px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    p {
        color: #94a3b8;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .link {
        display: block;
        text-decoration: none;
        color: #f1f5f9;
        padding: 14px 18px;
        margin: 10px 0;
        border-radius: 12px;
        font-weight: 500;
        background: linear-gradient(135deg, #1e40af, #2563eb);
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .link:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(37, 99, 235, 0.45);
    }

    .socials {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 30px;
    }

    .socials a {
        color: #94a3b8;
        font-size: 22px;
        transition: color 0.2s ease;
    }

    .socials a:hover {
        color: #38bdf8;
    }

    footer {
        margin-top: 30px;
        font-size: 12px;
        color: #64748b;
    }

    @media (max-width: 500px) {
        .container {
            padding: 22px;
        }
    }