Dynamic-Circle-Menu-3

by velo_ninja

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Next-Gen Radial Menu</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
    
    <!-- ============================================= -->
    <!-- =============== CSS STYLES ================== -->
    <!-- ============================================= -->
    <style>
        :root {
            --primary-color: #00d4ff; /* A brighter, more modern cyan */
            --secondary-color: #0099cc;
            --glow-color: rgba(0, 212, 255, 0.5);
            --text-color: #f0f8ff;
            --bg-dark: #0a0a0f;
            --bg-light: #16213e;
        }

        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: radial-gradient(circle at center, var(--bg-light) 0%, var(--bg-dark) 100%);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            cursor: default;
        }

        /* --- Accessibility: Reduced Motion --- */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .menu-container {
            position: relative;
            width: 80px;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* --- Dynamic Mouse-Tracking Glow --- */
        .ambient-glow {
            position: fixed; /* Use fixed to cover whole viewport */
            top: 0;
            left: 0;
            width: 100%;
 ...