* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    --theme-color: #000000;
    --theme-text-color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.18), transparent 50%),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.14), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.2), transparent 55%),
        linear-gradient(to bottom, var(--theme-color) 55%, #f5f4f4 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    background-attachment: fixed;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.9;
}

body::before {
    background-image:
        radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.22) 0, transparent 45%),
        radial-gradient(circle at 75% 60%, rgba(255, 255, 255, 0.18) 0, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 0, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(0, 0, 0, 0.25) 0, transparent 45%);
    filter: blur(0.5px);
    animation: watermarkGlow 18s ease-in-out infinite;
}

body::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 260'%3E%3Ccircle cx='40' cy='40' r='22' fill='%23ffffff' fill-opacity='0.12'/%3E%3Ccircle cx='190' cy='60' r='30' fill='%23ffffff' fill-opacity='0.08'/%3E%3Ccircle cx='130' cy='190' r='26' fill='%23ffffff' fill-opacity='0.1'/%3E%3Ccircle cx='60' cy='200' r='18' fill='%23ffffff' fill-opacity='0.07'/%3E%3Ccircle cx='220' cy='200' r='14' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='120' cy='70' r='12' fill='%23ffffff' fill-opacity='0.09'/%3E%3Ccircle cx='200' cy='150' r='18' fill='%23ffffff' fill-opacity='0.08'/%3E%3Ccircle cx='30' cy='140' r='14' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 230px;
    background-repeat: repeat;
    mix-blend-mode: screen;
    animation: watermarkDrift 26s linear infinite;
    opacity: 0.55;
}

@keyframes watermarkGlow {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-25px, -30px, 0) scale(1.05);
    }
    100% {
        transform: translate3d(20px, 30px, 0) scale(1.02);
    }
}

@keyframes watermarkDrift {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -35px, 0) rotate(3deg);
    }
    100% {
        transform: translate3d(-20px, 0, 0) rotate(-2deg);
    }
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}

.container {
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.brand-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.avatar-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    border-radius: 10px;
    background: #f2f2f2;
    border: 2px solid var(--theme-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    border: none;
    transition: transform 0.3s ease;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
}


.logo-placeholder {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.logo-placeholder-svg {
    width: 40px;
    height: 40px;
    fill: var(--theme-color);
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.profile-bio {
    font-size: 16px;
    color: #718096;
    margin: 0 auto 35px;
    line-height: 1.6;
    width: 100%;
    max-width: 520px;
    text-align: center;
    word-break: break-word;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.status-indicator {
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2d3748;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-flex;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: var(--theme-color);
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    color: var(--theme-text-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.35);
    color: var(--theme-text-color);
    border-color: var(--theme-text-color);
}

.social-link i:first-child {
    font-size: 24px;
    width: 30px;
    text-align: center;
    color: inherit;
}

.social-link span {
    flex: 1;
    text-align: center;
    margin-left: 15px;
    color: inherit;
}

.arrow-icon {
    font-size: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: inherit;
}

.social-link:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

.footer {
    text-align: center;
    margin: 30px auto 0;
    max-width: 320px;
    color: #718096;
    font-size: 14px;
    font-weight: 500;
}

.footer a {
    color: rgb(91, 107, 138);;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .profile-card {
        padding: 40px 25px;
        border-radius: 10px;
    }
    
    .profile-name {
        font-size: 26px;
    }
    
    .profile-bio {
        font-size: 14px;
    }
    
    .social-link {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .social-link i:first-child {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .profile-card {
        padding: 30px 20px;
        border-radius: 10px;
    }
    
    
    .profile-name {
        font-size: 24px;
    }
    
    .social-link {
        padding: 14px 18px;
    }
}
