body {
    background: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.click-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.overlay-content {
    text-align: center;
    animation: pulse 2s infinite;
}

.overlay-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1DA1F2;
}

.overlay-content p {
    font-size: 20px;
    color: #888;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.card {
    background: #141414;
    border: 1px solid #333;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.header {
    padding: 60px 32px 32px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    color: black;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
}

.name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

h1 {
    font-size: 28px;
    margin: 0;
}

.verified-badge {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.role {
    color: #888;
    font-size: 15px;
}

.content {
    padding: 32px;
}

.section {
    margin-bottom: 32px;
}

.section:last-child {
    margin-bottom: 0;
}

h2 {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.item {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
    font-size: 14px;
}

.item:last-child {
    border-bottom: none;
}

.links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.btn {
    padding: 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 6px;
    color: #ccc;
    font-size: 14px;
    transition: background 0.2s;
}

.btn:hover {
    background: #222;
}

.icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 640px) {
    .card {
        border-radius: 0;
    }
    
    .header {
        padding: 48px 24px 24px;
    }
    
    .content {
        padding: 24px;
    }

    .links {
        grid-template-columns: 1fr;
    }
    
    .overlay-content h2 {
        font-size: 36px;
    }
    
    .overlay-content p {
        font-size: 16px;
    }
}
