diff --git a/static/css/styles.css b/static/css/styles.css index c940a9c..7943b28 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -37,19 +37,21 @@ body { .dot-cursor { position: fixed; - width: 8px; - height: 8px; + width: 12px; + height: 12px; background: #3b82f6; border-radius: 50%; pointer-events: none; z-index: 999999; - transition: transform 0.15s ease, background 0.2s ease; + transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease; will-change: transform; + box-shadow: 0 0 15px rgba(59, 130, 246, 0.6), 0 0 30px rgba(59, 130, 246, 0.3); } .dot-cursor.hover { - transform: scale(1.5); + transform: scale(2); background: #60a5fa; + box-shadow: 0 0 25px rgba(96, 165, 250, 0.8), 0 0 50px rgba(96, 165, 250, 0.5); } @media (max-width: 768px) {