:root {
    --primary-glow: rgba(136, 99, 251, 0.5);
    --secondary-glow: rgba(251, 99, 153, 0.5);
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050214;
    color: #E0E0E0;
    overflow-x: hidden;
}
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gradient-text {
    background: linear-gradient(90deg, #A881FF, #FF74A4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; background: #050214; }
.animated-blob { position: absolute; border-radius: 50%; filter: blur(100px); will-change: transform; }
.blob-1 { width: 400px; height: 400px; background: var(--primary-glow); top: -150px; left: -150px; animation: float 15s ease-in-out infinite; }
.blob-2 { width: 300px; height: 300px; background: var(--secondary-glow); bottom: -100px; right: -100px; animation: float 12s ease-in-out infinite reverse; }
.section-glow::before { content: ''; position: absolute; top: 50%; left: 50%; width: 100%; max-width: 800px; height: 800px; background-image: radial-gradient(circle, rgba(136, 99, 251, 0.15), transparent 60%); transform: translate(-50%, -50%); pointer-events: none; z-index: -1; }
.template-carousel { display: flex; perspective: 1000px; transition: transform 0.5s ease-out; }
.template-card { min-width: 300px; margin: 0 10px; transition: transform 0.5s, box-shadow 0.5s; transform-style: preserve-3d; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.template-card:hover { transform: translateY(-10px) rotateY(0deg) scale(1.05); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.faq-item .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.faq-item.open .faq-content { max-height: 200px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.3s ease-in-out; }
.showcase-visual { min-height: 400px; }
.portfolio-card { animation: portfolioFloat 8s ease-in-out infinite; }
.resume-line { animation: line-pulse 2s ease-in-out infinite; }
.resume-icon { animation: icon-float 6s ease-in-out infinite; }
#support-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 3s infinite ease-in-out;
}
#support-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary-glow);
    animation-play-state: paused;
}
.template-carousel-container::-webkit-scrollbar { height: 8px; }
.template-carousel-container::-webkit-scrollbar-track { background: #0A051D; }
.template-carousel-container::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 9999px; }
.template-carousel-container::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.4); }
.template-carousel-container { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) #0A051D; }
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(136, 99, 251, 0.3); }
    50% { box-shadow: 0 0 35px rgba(136, 99, 251, 0.6); }
}
@keyframes portfolioFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes line-pulse { 0%, 100% { background-color: rgba(168, 129, 255, 0.5); } 50% { background-color: rgba(168, 129, 255, 0.2); } }
@keyframes icon-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(15px) rotate(10deg); } }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(50px, 80px) scale(1.2); } 100% { transform: translate(0, 0) scale(1); } }