.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.discord-gradient {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}
.feature-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
}
.feature-card {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
/* Animate section fade-in */
.animate-fadeInUp {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1) both;
}
/* Animate buttons on hover */
button, .copy-btn {
    transition: transform 0.15s cubic-bezier(0.4,0,0.2,1), box-shadow 0.15s cubic-bezier(0.4,0,0.2,1), background 0.2s, color 0.2s;
}
button:hover, .copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px 0 rgba(80,80,200,0.10);
}
/* Dark mode styles */
.dark .gradient-bg {
    background: linear-gradient(135deg, #23272a 0%, #36393f 100%);
}
.dark .discord-gradient {
    background: linear-gradient(135deg, #23272a 0%, #5865f2 100%);
}
.dark .feature-card {
    background: #23272a;
    border-color: #36393f;
}
.dark .bg-white {
    background-color: #23272a !important;
}
.dark .text-gray-900, .dark .text-discord-900 {
    color: #f0f2f5 !important;
}
.dark .text-gray-700, .dark .text-discord-700 {
    color: #bcc0c4 !important;
}
.dark .text-gray-600, .dark .text-discord-600 {
    color: #8e9297 !important;
}
.dark .text-gray-400 {
    color: #6d7175 !important;
}
.dark .border-gray-100, .dark .border-gray-200, .dark .border-discord-200 {
    border-color: #36393f !important;
}
.dark .bg-gray-50 {
    background-color: #202225 !important;
}
.dark .bg-gray-100 {
    background-color: #23272a !important;
}
.dark .bg-gray-200 {
    background-color: #36393f !important;
}
.dark .bg-gray-900 {
    background-color: #18191c !important;
}
.dark .bg-white\/80 {
    background-color: rgba(35,39,42,0.8) !important;
}
.dark .shadow-lg, .dark .shadow-xl, .dark .shadow-2xl {
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.7) !important;
}
/* Live Example bot tag */
.bot-tag {
    box-shadow: 0 2px 8px 0 rgba(30, 136, 229, 0.15);
    letter-spacing: 0.05em;
    border: 1.5px solid #2563eb;
}
/* Animate fadeInUp with delay for staggered effect */
[style*="animation-delay"] {
    opacity: 0;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}
[style*="animation-delay"] {
    animation-timing-function: cubic-bezier(0.4,0,0.2,1);
}
@keyframes heroTitle {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-heroTitle {
    animation: heroTitle 1.2s cubic-bezier(0.4,0,0.2,1) both;
}
/* Smooth background transition for body and main sections */
body, section, nav, footer {
transition: background 0.7s cubic-bezier(0.4,0,0.2,1), background-color 0.7s cubic-bezier(0.4,0,0.2,1), color 0.5s;
}
body.bg-transitioning, .bg-transitioning section, .bg-transitioning nav, .bg-transitioning footer {
transition: background 0.7s cubic-bezier(0.4,0,0.2,1), background-color 0.7s cubic-bezier(0.4,0,0.2,1), color 0.5s;
filter: brightness(1.03) saturate(1.05);
}
/* Blinking cursor for typing indicator */
.typing-dots::after {
content: '';
display: inline-block;
width: 8px;
height: 16px;
margin-left: 4px;
background: #2563eb;
border-radius: 2px;
opacity: 0.7;
animation: blink-cursor 1s steps(1) infinite;
vertical-align: middle;
}
@keyframes blink-cursor {
0%, 100% { opacity: 0.7; }
50% { opacity: 0; }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.8) translateY(40px); }
    60% { opacity: 1; transform: scale(1.05) translateY(-8px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.animate-bounceIn {
    animation: bounceIn 1s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes facePop {
    0% { transform: scale(0.7) rotate(-8deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(4deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
.animate-facePop {
    animation: facePop 0.9s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes navPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.12); }
    100% { transform: scale(1); }
}
.animate-navPop {
    animation: navPop 0.35s cubic-bezier(0.4,0,0.2,1);
}