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

        body {
            background: #000;
            color: #fff;
            font-family: system-ui, sans-serif;
            height: 100vh;
            overflow: hidden;
        }

        #game-area {
            position: fixed;
            width: 100vw;
            height: 100vh;
            background: #000;
            overflow: hidden;
        }

        .target {
            position: absolute;
            width: 40px;
            height: 40px;
            transform: translate(-50%, -50%);
            pointer-events: none;
            transition: all 0.1s ease-out;
        }

        .target-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid red;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.5; }
            100% { transform: scale(1); opacity: 1; }
        }

        #reticle {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            transform: translate(-50%, -50%);
            z-index: 100;
        }

        .reticle-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #3b82f6;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .reticle-lines {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .reticle-line {
            position: absolute;
            background: #3b82f6;
            opacity: 0.6;
        }

        .horizontal {
            width: 20px;
            height: 1px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .vertical {
            width: 1px;
            height: 20px;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        #hud {
            position: fixed;
            top: 30px;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
            z-index: 200;
        }

        .stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        #stability-indicator {
            position: fixed;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            color: #3b82f6;
        }

        #start-button {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #3b82f6;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
        }

        .hidden {
            display: none !important;
        }
        /* Share and Contact Button Styles */
        .icon-container {
            position: fixed;
            top: 20px;
            left: 20px;
            display: flex;
            gap: 15px;
            z-index: 1000;
        }
        .icon-button {
            cursor: pointer;
            padding: 12px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
            background: rgba(0, 0, 0, 0.8);
            color: white;
        }
        .icon-button:hover {
            transform: scale(1.05);
        }
        .share-icon {
            width: 24px;
            height: 24px;
        }
        .share-options {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 8px;
            margin-top: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            min-width: 200px;
        }
        .share-options.active {
            display: block;
        }
        .share-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            cursor: pointer;
            transition: background-color 0.3s;
            border-radius: 6px;
            color: black;
            text-decoration: none;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }
        .share-option:hover {
            background: #f5f5f5;
        }
.icon-container {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
    z-index: 1000;
}
.icon-button {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    background: rgba(0, 0, 0, 0.8);
    color: white;
}
.share-icon {
    width: 20px;
    height: 20px;
}
.share-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    padding: 8px;
    margin-top: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 160px;
}
.share-options.active {
    display: block;
}
.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    color: black;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.share-option:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .icon-container {
        top: 10px;
        left: 10px;
        gap: 8px;
    }
    .icon-button {
        padding: 8px;
    }
    .share-icon {
        width: 20px;
        height: 20px;
    }
    .share-options {
        min-width: 160px;
    }}
