:root {
    --primary-color: #ff66b3;
    --secondary-color: #ff99cc;
    --accent-color: #ff3385;
    --dark-bg: #1a001a;
    --card-bg: rgba(255, 102, 179, 0.1);
    --text-primary: #fff0f5;
    --text-secondary: #ffccdd;
    --gradient: linear-gradient(135deg, #ff66b3, #ff99cc, #ff3385);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.08;
    filter: blur(60px);
    animation: float 15s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.bg-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Main container */
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content-card {
    background: rgba(255, 102, 179, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 20px 40px rgba(255, 102, 179, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile section */
.profile-container {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ascii-art {
    margin: 0 auto 2rem;
    text-align: center;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255, 102, 179, 0.6));
}

.ascii-art pre {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    white-space: pre;
    overflow: visible;
}

.profile-name {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff66b3, #ff99cc, #ff3385);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.profile-tagline {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Special link */
.special-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff66b3, #ff3385);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin: 1rem 0 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 179, 0.4);
}

.special-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 179, 0.6);
    color: white;
}

/* Social icons */
.social-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover i {
    color: white;
}

/* Navigation */
.navbar-glass {
    background: rgba(255, 102, 179, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 182, 193, 0.3);
    border-radius: 20px;
    padding: 1rem;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 500px;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(255, 102, 179, 0.3);
}

.nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nav-link i {
    font-size: 1.2rem;
}

.nav-link span {
    font-size: 0.85rem;
    font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
    color: white;
    background: rgba(255, 102, 179, 0.3);
}

/* Decorative elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    animation: floatElement 25s infinite linear;
    filter: drop-shadow(0 0 10px rgba(255, 102, 179, 0.3));
}

@keyframes floatElement {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(1.2);
    }
    100% {
        transform: translateY(-80px) rotate(360deg) scale(1);
    }
}

/* Heartbeat animation for floating elements */
.floating-element:nth-child(odd) {
    animation: heartbeat 2s infinite ease-in-out, floatElement 25s infinite linear;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer */
.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .content-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .ascii-art {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .navbar-glass {
        bottom: 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .floating-element {
        font-size: 3rem;
    }
}