* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #000, #000);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 0.6px solid #000;
}

.profile-pic {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #000;
}

h1 {
    font-size: 24px;
    color: #ff5000;
    margin-bottom: 25px;
}

.links a {
    display: block;
    background: #ff5000;
    margin: 12px 0;
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.links a:hover {
    background: #000;
    transform: translateY(-3px);
}

.footer {
    margin-top: 25px;
    font-size: 14px;
    color: #ff5000;
}