/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #e5e7eb;
    background-color: #000;
}

.main-container {
    background-image: linear-gradient(to bottom, #0f0a1a, #000000);
    min-height: 100vh;
    padding: 3rem 0;
}

.profile-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Profile Header */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.profile-image-container {
    position: relative;
    margin-bottom: 1rem;
}

.profile-image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.7;
    animation: pulse-subtle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.profile-image {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.profile-name {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff; /* White */
}

.profile-tagline {
    color: #ffffff; /* White */
    text-align: center;
    margin-bottom: 0.5rem;
    max-width: 23.125rem;
    line-height: 1.5;
}

.profile-warning {
    color: #d1d5db; /* Light gray */
    text-align: center;
    margin-bottom: 1rem;
    max-width: 20rem;
    line-height: 1.5;
}

/* Promo Banner */
.promo-banner {
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background-image: linear-gradient(to bottom right, rgba(139, 92, 246, 0.2), #1e1b2a);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.promo-title {
    justify-content: center;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff; /* White */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.promo-title .social-icon {
    margin-right: 0.5rem;
}

.highlight-pink {
    color: #ec4899; /* Pink */
}

.promo-description {
    text-align: center;
    font-size: 0.875rem;
    color: #d1d5db; /* Light gray */
    margin-bottom: 1rem;
}

.promo-button {
    display: block;
    width: 100%;
    background-image: linear-gradient(to right, #8b5cf6, #ec4899);
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.3), 0 4px 6px -4px rgba(139, 92, 246, 0.3);
    border-radius: 0.375rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.promo-button:hover {
    background-image: linear-gradient(to right, #ec4899, #8b5cf6);
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.4), 0 4px 6px -4px rgba(236, 72, 153, 0.4);
}

.promo-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
}

.promo-button-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.promo-button:hover .promo-button-text {
    transform: scale(1.1);
}

.promo-button .social-icon {
    margin-left: 0.5rem;
    opacity: 0.7;
    animation: pulse 1.5s infinite;
}

.promo-button:hover .social-icon {
    opacity: 1;
}

/* Social Links */
.social-links-container {
    width: 100%;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-link.primary {
    margin-bottom: 1rem;
}

.social-link-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.5rem;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.social-link.primary .social-link-bg {
    background-image: linear-gradient(to right, #8b5cf6, #ec4899);
    opacity: 0.8;
}

.social-link.primary:hover .social-link-bg {
    opacity: 1;
}

.social-link.regular .social-link-bg {
    background-image: linear-gradient(to right, #1f2937, #1e1b2a);
    opacity: 0.7;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.social-link.regular:hover .social-link-bg {
    background-color: rgba(139, 92, 246, 0.3);
    opacity: 1;
}

.social-link-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link .social-icon {
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-link.regular .social-icon {
    color: #8b5cf6; /* Purple for regular link icons */
}

.social-link-text {
    font-weight: 500;
}

.social-link.primary .social-link-text {
    font-weight: 600;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.875rem;
    color: #a1a1aa;
    padding-top: 1rem;
    padding-bottom: 2.5rem;
}

/* Animations */
@keyframes pulse-subtle {
    50% { opacity: 0.5; }
}

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

/* SVG Icon Base Style */
.social-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    vertical-align: middle;
    stroke-width: 2;
    fill: none;
    stroke: currentColor;
}