body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #e0e5ec;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: #e0e5ec;
    border-radius: 20px;
    padding: 30px 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 9px 9px 16px #b8b9be,
        -9px -9px 16px #ffffff;
}

.container a .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    border: 4px solid #e0e5ec;
    box-shadow: inset 4px 4px 8px #babecc,
        inset -4px -4px 8px #ffffff;
    transition: transform 0.3s ease;
}

.container a:hover .profile-img {
    transform: scale(1.05);
}

h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #333;
}

.info-msg {
    font-size: 0.95rem;
    color: #d9534f;
    margin-bottom: 20px;
}

.links a {
    display: block;
    background: #e0e5ec;
    color: #333;
    padding: 14px 16px;
    border-radius: 12px;
    margin: 12px 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 6px 6px 12px #b8b9be,
        -6px -6px 12px #ffffff;
    transition: all 0.3s ease;
}

.links a i {
    margin-right: 8px;
}

.links a:hover {
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: inset 2px 2px 5px #babecc,
        inset -2px -2px 5px #ffffff;
}

.links a.disabled {
    color: #888;
    background: #d3d6db;
    box-shadow: inset 2px 2px 5px #babecc,
        inset -2px -2px 5px #ffffff;
    pointer-events: none;
    cursor: default;
}

.footer {
    margin: 40px auto 20px;
    padding: 18px 24px;
    max-width: 400px;
    background: #e0e5ec;
    border-radius: 16px;
    box-shadow: 8px 8px 16px #babecc, -8px -8px 16px #ffffff;
    text-align: center;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.footer p {
    margin: 0;
}

.footer .insta-link {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: all 0.4s ease;
    padding-left: 4px;
    position: relative;
}

.footer .insta-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background 0.4s ease;
}

.footer .insta-link:hover {
    background: linear-gradient(to right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer .insta-link:hover::after {
    background: linear-gradient(to right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    height: 2px;
    border-radius: 10px;
}
