/*
Theme Name: Senior SEO Custom Theme
Theme URI: https://seniorseo.ir
Description: ????? ??????? ? ???? ????? ????? ??? ?? ?????????? ??????? ? ???? Tailwind CSS.
Version: 1.0.0
Author: Senior SEO Team
Text Domain: senior-seo
*/

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #08070b;
    color: #ffffff;
    scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #08070b;
}
::-webkit-scrollbar-thumb {
    background: #00FF66;
    border-radius: 4px;
}
/* Glow animations */
.neon-glow {
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
}
.neon-text-glow {
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}
.bento-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 102, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.1);
}
/* Chart line animation */
@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}
.animate-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-out forwards;
}