        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-align: center;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            position: relative;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        /* Animated background particles */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        #preloader.hidden {
            opacity: 0;
            transform: scale(0.9);
            pointer-events: none;
        }

        .loader-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        .bow-loader {
            width: 120px;
            height: 120px;
            position: relative;
        }

        .bow-string {
            width: 100px;
            height: 100px;
            border: 5px solid transparent;
            border-left-color: #00d4ff;
            border-right-color: #00d4ff;
            border-radius: 50%;
            animation: bowSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
        }

        .arrow-loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 5px;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            animation: arrowShoot 1.2s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
        }

        .arrow-loader::before {
            content: '';
            position: absolute;
            right: -12px;
            top: -6px;
            width: 0;
            height: 0;
            border-left: 12px solid #ffd700;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
        }

        .arrow-loader::after {
            content: '';
            position: absolute;
            left: 0;
            top: -3px;
            width: 15px;
            height: 11px;
            background: #ff4444;
            clip-path: polygon(0 50%, 100% 0, 100% 100%);
        }

        @keyframes bowSpin {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @keyframes arrowShoot {
            0%, 100% { 
                transform: translate(-50%, -50%) translateX(0); 
                opacity: 1; 
            }
            50% { 
                transform: translate(-50%, -50%) translateX(40px); 
                opacity: 0.2; 
            }
        }

        .loading-text {
            color: white;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 5px;
            text-transform: uppercase;
            animation: pulse 1.5s ease-in-out infinite;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        }

        .loading-progress {
            width: 300px;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #00d4ff, #ffd700, #00d4ff);
            border-radius: 10px;
            animation: loading 2s ease-in-out infinite;
            background-size: 200% 100%;
            animation: loading 2s ease-in-out infinite, shimmer 1.5s linear infinite;
        }

        @keyframes loading {
            0% { width: 0%; }
            50% { width: 80%; }
            100% { width: 100%; }
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.05); }
        }

        /* Main Game Styles */
        #mainContainer {
            transform-origin: 0% 0%;
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 10;
        }

        #score {
            position: absolute;
            top: 15px;
            left: 0;
            width: 100%;
            text-align: center;
            font-size: 70px;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 0 30px rgba(0, 212, 255, 1),
                         0 0 60px rgba(0, 212, 255, 0.8),
                         0 6px 15px rgba(0, 0, 0, 0.5);
            animation: scoreGlow 2s ease-in-out infinite;
            z-index: 50;
            font-family: 'Impact', sans-serif;
            letter-spacing: 3px;
        }

        @keyframes scoreGlow {
            0%, 100% { 
                text-shadow: 0 0 30px rgba(0, 212, 255, 1),
                             0 0 60px rgba(0, 212, 255, 0.8),
                             0 6px 15px rgba(0, 0, 0, 0.5);
            }
            50% { 
                text-shadow: 0 0 40px rgba(255, 215, 0, 1),
                             0 0 80px rgba(255, 215, 0, 0.8),
                             0 8px 20px rgba(0, 0, 0, 0.6);
            }
        }

        #showPoint {
            position: absolute;
            top: 0;
            left: 0;
            background: transparent;
            margin: 0;
            pointer-events: none;
        }

        #showPoint .u {
            position: absolute;
            display: inline-block;
            top: 50%;
            left: 70%;
            font-size: 42px;
            font-family: 'Impact', Arial, sans-serif;
            font-weight: 900;
            opacity: 0;
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 1),
                         0 0 40px rgba(255, 215, 0, 0.8),
                         0 4px 8px rgba(0, 0, 0, 0.5);
            transition: top 0.1s linear, left 0.1s linear;
        }

        #animCanvas {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 100;
            pointer-events: auto;
            cursor: crosshair;
            touch-action: none;
        }

        #myCanvas {
            position: absolute;
            top: 0;
            left: 0;
        }

        #arrs {
            font-size: 28px;
            text-align: left;
            position: absolute;
            margin: 0;
            top: 90px;
            left: 10px;
            padding: 15px 20px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(118, 75, 162, 0.2));
            backdrop-filter: blur(15px);
            border-radius: 15px;
            border: 2px solid rgba(0, 212, 255, 0.5);
            color: #fff;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3),
                        inset 0 0 20px rgba(255, 255, 255, 0.1);
            animation: arrowBounce 2s ease-in-out infinite;
            max-width: calc(100vw - 30px);
            overflow: hidden;
        }

        @keyframes arrowBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        #startMenu {
            position: fixed;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            z-index: 1000;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 40px 20px;
        }

        .title-container {
            text-align: center;
            margin-bottom: 20px;
        }

        #title {
            font-size: 56px;
            color: #fff;
            text-shadow: 0 0 40px rgba(0, 212, 255, 0.8),
                         0 0 80px rgba(0, 212, 255, 0.6),
                         0 8px 20px rgba(0, 0, 0, 0.5);
            font-weight: 900;
            letter-spacing: 6px;
            animation: titleFloat 3s ease-in-out infinite;
            margin: 0;
            padding: 0;
            font-family: 'Impact', sans-serif;
            line-height: 1.4;
            text-align: center;
            word-spacing: 100vw;
        }

        @keyframes titleFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-15px) scale(1.02); }
        }

        #title span {
            color: #00d4ff;
            font-size: 1.3em;
            display: inline-block;
            text-shadow: 0 0 50px rgba(0, 212, 255, 1),
                         0 0 100px rgba(0, 212, 255, 0.8),
                         0 8px 20px rgba(0, 0, 0, 0.5);
            animation: letterPulse 2s ease-in-out infinite;
        }

        @keyframes letterPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        #startMenu button {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border: none;
            padding: 20px 55px;
            border-radius: 60px;
            color: #fff;
            cursor: pointer;
            outline: none;
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5),
                        0 0 0 5px rgba(255, 255, 255, 0.2),
                        inset 0 -5px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            overflow: hidden;
            font-family: 'Impact', sans-serif;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-height: 60px;
        }

        #startMenu button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        #startMenu button:hover::before {
            width: 400px;
            height: 400px;
        }

        #startMenu button:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 212, 255, 0.7),
                        0 0 0 6px rgba(255, 255, 255, 0.3),
                        inset 0 -5px 20px rgba(0, 0, 0, 0.3);
        }

        #startMenu button:active {
            transform: translateY(-2px) scale(0.98);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6),
                        0 0 0 5px rgba(255, 255, 255, 0.2),
                        inset 0 -5px 20px rgba(0, 0, 0, 0.3);
        }

        .best-score-container {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
            backdrop-filter: blur(15px);
            padding: 30px 50px;
            border-radius: 25px;
            border: 3px solid rgba(255, 215, 0, 0.5);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3),
                        inset 0 0 30px rgba(255, 255, 255, 0.1);
            text-align: center;
            min-width: 250px;
        }

        .best-score-container span {
            display: block;
            font-size: 72px;
            color: #ffd700;
            text-shadow: 0 0 30px rgba(255, 215, 0, 1),
                         0 0 60px rgba(255, 215, 0, 0.8);
            margin: 0 0 10px 0;
            font-weight: 900;
            animation: bestScorePulse 2s ease-in-out infinite;
            font-family: 'Impact', sans-serif;
            line-height: 1;
        }

        @keyframes bestScorePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .best-score-container h2 {
            font-size: 24px;
            color: #fff;
            font-weight: 700;
            margin: 0;
            font-family: 'Impact', sans-serif;
            letter-spacing: 2px;
        }

        #timerDiv {
            height: 14px;
            padding: 0;
            border: 3px solid rgba(0, 212, 255, 0.8);
            width: 50%;
            position: absolute;
            bottom: 40px;
            left: 25%;
            border-radius: 25px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 30px rgba(0, 212, 255, 0.4),
                        inset 0 0 20px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        .timer {
            height: 14px;
            width: 0%;
            background: linear-gradient(90deg, #00ff88, #ffd700, #ff4444);
            animation: countTime 4.5s linear 1;
            animation-delay: 0.5s;
            border-radius: 25px;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
                        inset 0 0 10px rgba(255, 255, 255, 0.5);
            position: relative;
        }

        .timer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
            border-radius: 25px 25px 0 0;
        }

        @keyframes countTime {
            0% {
                width: 100%;
                background: linear-gradient(90deg, #00ff88, #00ff88);
                box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
            }
            50% {
                background: linear-gradient(90deg, #ffd700, #ffd700);
                box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
            }
            100% {
                width: 0%;
                background: linear-gradient(90deg, #ff4444, #ff4444);
                box-shadow: 0 0 30px rgba(255, 68, 68, 0.8);
            }
        }

        /* Sound Toggle Button */
        .sound-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(118, 75, 162, 0.3));
            backdrop-filter: blur(15px);
            border: 3px solid rgba(0, 212, 255, 0.5);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            transition: all 0.3s ease;
            z-index: 2000;
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
        }

        .sound-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
        }

        .sound-toggle.muted {
            background: linear-gradient(135deg, rgba(255, 68, 68, 0.3), rgba(200, 0, 0, 0.3));
            border-color: rgba(255, 68, 68, 0.5);
        }

        /* Game Instructions */
        .game-instructions {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(118, 75, 162, 0.8));
            backdrop-filter: blur(20px);
            padding: 40px 60px;
            border-radius: 30px;
            border: 3px solid rgba(0, 212, 255, 0.5);
            color: #fff;
            font-size: 20px;
            text-align: center;
            z-index: 10001;
            display: none;
            box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
            max-width: 500px;
        }

        .game-instructions.show {
            display: block;
            animation: slideInScale 0.5s ease-out;
        }

        .game-instructions h3 {
            font-size: 36px;
            margin-bottom: 25px;
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
            font-family: 'Impact', sans-serif;
        }

        .game-instructions ul {
            list-style: none;
            padding: 0;
            text-align: left;
            line-height: 2;
        }

        .game-instructions li {
            padding: 10px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .game-instructions li:last-child {
            border-bottom: none;
        }

        .game-instructions li::before {
            content: '🎯 ';
            margin-right: 10px;
        }

        @keyframes slideInScale {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        /* Mobile Tap Indicator */
        .tap-indicator {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
            animation: tapPulse 2s ease-in-out infinite;
            z-index: 90;
            pointer-events: none;
            display: none;
        }

        .tap-indicator.show {
            display: block;
        }

        @keyframes tapPulse {
            0%, 100% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            50% {
                opacity: 0.5;
                transform: translateX(-50%) translateY(-10px);
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .tap-indicator {
                display: block;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            #title {
                font-size: 44px;
                letter-spacing: 5px;
            }
            
            #score {
                font-size: 55px;
                top: 10px;
            }
            
            #arrs {
                font-size: 24px;
                top: 75px;
                left: 8px;
                padding: 12px 18px;
            }
            
            #startMenu button {
                font-size: 22px;
                padding: 16px 40px;
            }

            .best-score-container {
                padding: 22px 35px;
                min-width: 200px;
            }

            .best-score-container span {
                font-size: 56px;
            }

            .best-score-container h2 {
                font-size: 20px;
            }

            .sound-toggle {
                width: 50px;
                height: 50px;
                font-size: 24px;
                top: 15px;
                right: 15px;
            }

            #timerDiv {
                bottom: 25px;
                height: 12px;
                width: 60%;
                left: 20%;
            }

            .timer {
                height: 12px;
            }
        }

        @media (max-width: 480px) {
            #title {
                font-size: 36px;
                letter-spacing: 4px;
            }

            #score {
                font-size: 48px;
                top: 8px;
            }

            #arrs {
                font-size: 20px;
                top: 65px;
                left: 6px;
                padding: 10px 15px;
            }

            #startMenu button {
                font-size: 20px;
                padding: 14px 35px;
            }

            .best-score-container {
                padding: 18px 30px;
                min-width: 180px;
            }

            .best-score-container span {
                font-size: 48px;
            }

            .best-score-container h2 {
                font-size: 18px;
            }

            .sound-toggle {
                width: 45px;
                height: 45px;
                font-size: 20px;
                top: 12px;
                right: 12px;
            }

            #timerDiv {
                bottom: 20px;
                height: 10px;
                width: 70%;
                left: 15%;
            }

            .timer {
                height: 10px;
            }

            .game-instructions {
                padding: 30px 40px;
                max-width: 90%;
            }

            .game-instructions h3 {
                font-size: 28px;
            }

            .game-instructions li {
                font-size: 16px;
            }
        }

        @media (max-width: 360px) {
            #title {
                font-size: 32px;
                letter-spacing: 3px;
            }

            #score {
                font-size: 42px;
            }

            #arrs {
                font-size: 18px;
                top: 60px;
                padding: 8px 12px;
            }

            #startMenu button {
                font-size: 18px;
                padding: 12px 30px;
            }

            .best-score-container {
                padding: 15px 25px;
                min-width: 160px;
            }

            .best-score-container span {
                font-size: 42px;
            }

            .best-score-container h2 {
                font-size: 16px;
            }
        }

        @media (orientation: landscape) and (max-height: 700px) {
            #startMenu {
                gap: 20px;
                padding: 15px;
            }

            #title {
                font-size: 38px;
                letter-spacing: 4px;
            }

            #startMenu button {
                padding: 12px 35px;
                font-size: 20px;
            }

            .best-score-container {
                padding: 15px 30px;
                min-width: 180px;
            }

            .best-score-container span {
                font-size: 42px;
            }

            .best-score-container h2 {
                font-size: 16px;
            }

            #score {
                font-size: 50px;
                top: 10px;
            }

            #arrs {
                font-size: 22px;
                top: 65px;
                padding: 10px 15px;
            }

            #timerDiv {
                bottom: 15px;
            }
        }

        @media (orientation: landscape) and (max-height: 500px) {
            #startMenu {
                gap: 15px;
                padding: 10px;
            }

            #title {
                font-size: 32px;
            }

            #startMenu button {
                padding: 10px 30px;
                font-size: 18px;
            }

            .best-score-container {
                padding: 12px 25px;
            }

            .best-score-container span {
                font-size: 36px;
            }

            .best-score-container h2 {
                font-size: 14px;
            }

            .game-instructions {
                padding: 20px 30px;
            }

            .game-instructions h3 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .game-instructions li {
                font-size: 14px;
                padding: 5px 0;
            }
        }