* { cursor: none !important; }

body {
    background-color: #FFF9FB;
    color: #5E5E5E;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    background: #FF9AA2;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

#cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid #FF9AA2;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: scale(1.02) translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 25px 50px rgba(255, 154, 162, 0.15);
}

.nav-link { 
    position: relative; 
    cursor: pointer; 
    transition: color 0.3s; 
}

.nav-link:after {
    content: '✨';
    position: absolute;
    font-size: 10px;
    top: -10px;
    right: -12px;
    opacity: 0;
    transition: all 0.3s;
}

.nav-link.active:after, .nav-link:hover:after { 
    opacity: 1; 
    transform: rotate(20deg); 
}

.nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #FF9AA2, #FFDAC1);
    transition: width 0.3s;
    border-radius: 10px;
}

.nav-link.active:before, .nav-link:hover:before { 
    width: 100%; 
}

#three-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.page-section { 
    display: none; 
    opacity: 0; 
    transform: translateY(20px); 
}

.page-section.active { 
    display: block; 
    opacity: 1; 
    transform: translateY(0); 
}

.bouncy-icon {
    display: inline-block;
    animation: bounce-soft 3s infinite ease-in-out;
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.avatar-ring {
    position: absolute;
    border: 2px dashed #FF9AA2;
    border-radius: 50%;
    animation: rotate-slow 15s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#three-container { 
    width: 100%; 
    height: 450px; 
}

#mobile-overlay {
    display: none;
    opacity: 0;
    backdrop-filter: blur(8px);
    background: rgba(255, 154, 162, 0.1);
}

#mobile-sidebar {
    transform: translateX(100%);
    box-shadow: -10px 0 30px rgba(255, 154, 162, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}
