:root {
    /* Color Palette */
    --bg-dark: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Neons/Accents */
    --accent-pink: #ec4899;
    --accent-purple: #8b5cf6;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 40px 20px;
}

/* Background Animations */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: float 15s infinite ease-in-out alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.container {
    width: 100%;
    max-width: 650px;
    position: relative;
    z-index: 10;
}

/* Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Header & Profile */
.profile-header {
    text-align: center;
}

.profile-img-container {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
}

.name {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Bio */
.bio-section {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.motto {
    margin-top: 15px;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

/* Links / Buttons */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-btn {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    width: 50px;
    display: flex;
    justify-content: flex-start;
    transition: color 0.3s ease;
}

.glass-btn:hover .btn-icon {
    color: var(--accent-pink);
}

.btn-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.btn-title {
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.btn-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.glass-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent-purple);
}

/* Special Primary Button */
.primary-btn {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(236, 72, 153, 0.3);
}
.primary-btn .btn-icon {
    color: var(--accent-pink);
}

/* Highlight Rainbow Button */
.highlight-btn:hover {
    border-color: var(--accent-purple);
}

/* WhatsApp Button */
.whatsapp-btn:hover {
    border-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
.whatsapp-btn:hover .btn-icon {
    color: #25D366;
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-pink);
}

/* Responsive */
@media (max-width: 600px) {
    .glass-panel {
        padding: 40px 20px;
    }
    
    .name {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 0.85rem;
    }
    
    .btn-icon {
        width: 40px;
        font-size: 1.2rem;
    }
}
