@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;900&display=swap');

/* Reset & Base */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Wrapper - The Stage */
.wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1f35 0%, #050505 70%);
    overflow: hidden;
}

/* Decorative Background Elements */
.wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiIHN0cm9rZS13aWR0aD0iMSI+PHBhdGggZD0iTTAgNDBMODAgME0wIDBMODAgNDAiLz48L3N2Zz4=') repeat;
    opacity: 0.5;
    z-index: 0;
    animation: rotateBackground 100s linear infinite;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Main Card Container */
.profile-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    padding: 60px 40px;
    text-align: center;
    /* Clean, modern borderless look */
}

/* Content Styling */
.profile-card__cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.profile-card__name {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    text-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

.profile-card__txt {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.profile-card-loc {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: -10px;
}

.profile-card-loc__icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: #3b82f6; /* Brand Blue */
}

/* Buttons */
.profile-card-ctr {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.profile-card__button {
    position: relative;
    border: none;
    background: #3b82f6;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 60px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    overflow: hidden;
}

.profile-card__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.profile-card__button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5), 0 8px 10px -6px rgba(59, 130, 246, 0.5);
}

.profile-card__button:hover::before {
    left: 100%;
}

.profile-card__button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-card__name {
        font-size: 2.5rem;
    }
    
    .profile-card {
        padding: 40px 20px;
    }
    
    .profile-card__button {
        width: 100%;
    }
}

/* SVG Icon Style */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}
