* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('adolf.jpg') no-repeat center/cover fixed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.container {
    background: rgba(16, 16, 16, 0.88);
    padding: 35px 32px 28px;
    border-radius: 32px;
    max-width: 390px;
    width: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge {
    color: #ff4444;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.7;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 14px;
    position: relative;
    overflow: hidden;
    border: 2.5px solid #ff2222;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #25D366;
    border-radius: 50%;
    border: 2.5px solid #101010;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3px;
}

.desc {
    color: #ff2222;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2222, transparent);
    margin: 18px auto;
    border-radius: 2px;
    opacity: 0.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    color: #fff;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn .icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn .btn-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s ease;
    font-size: 16px;
}

.btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.btn:active {
    transform: scale(0.97);
}

.btn-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 4px 25px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    box-shadow: 0 6px 35px rgba(255, 0, 0, 0.5);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1aad4f);
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.5);
}

.footer {
    color: #444;
    font-size: 10.5px;
    text-align: center;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .container {
        margin: 14px;
        padding: 28px 18px 22px;
        border-radius: 24px;
    }
    .avatar {
        width: 82px;
        height: 82px;
    }
    .name {
        font-size: 20px;
    }
    .desc {
        font-size: 13px;
        letter-spacing: 4px;
    }
    .btn {
        font-size: 12.5px;
        padding: 12px 14px;
    }
    .btn .icon-svg {
        width: 18px;
        height: 18px;
    }
}