        /* Icon container styles */
        .icon-container {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            gap: 10px;
            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: #333;
            color: #4CAF50;
        }
        
        .icon-button:hover {
            transform: scale(1.05);
            background: #444;
        }
        
        .share-options {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: #333;
            border: 1px solid #4CAF50;
            border-radius: 8px;
            padding: 8px;
            margin-top: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            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: #fff;
            text-decoration: none;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 16px;
        }
        
        .share-option:hover {
            background: #444;
        }
        
        .share-icon {
            width: 24px;
            height: 24px;
            stroke: #4CAF50;
        }
        
        body {
            margin: 0;
            padding: 10px;
            font-family: Arial, sans-serif;
            background: #1a1a1a;
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
            user-select: none;
        }

        .status {
            font-size: 24px;
            text-align: center;
            margin: 10px 0;
            height: 40px;
            color: #4CAF50;
        }

        .target-area {
            width: 200px;
            height: 200px;
            border: 3px solid #4CAF50;
            border-radius: 50%;
            position: relative;
            margin: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #333;
            cursor: pointer;
        }

        .reticle {
            width: 60px;
            height: 60px;
            position: absolute;
            pointer-events: none;
            transition: transform 0.1s;
        }

        .reticle::before,
        .reticle::after {
            content: '';
            position: absolute;
            background: #4CAF50;
        }

        .reticle::before {
            width: 2px;
            height: 100%;
            left: 50%;
            transform: translateX(-50%);
        }

        .reticle::after {
            width: 100%;
            height: 2px;
            top: 50%;
            transform: translateY(-50%);
        }

        .metrics {
            background: #333;
            padding: 15px;
            border-radius: 12px;
            width: 90%;
            max-width: 300px;
            margin-top: 10px;
        }

        .metric {
            margin: 8px 0;
            font-size: 16px;
        }

        .feedback {
            color: #4CAF50;
            font-size: 18px;
            text-align: center;
            margin: 10px 0;
            min-height: 45px;
        }

        .start-btn {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 18px;
            margin-top: 10px;
            cursor: pointer;
        }

        .shots-remaining {
            font-size: 18px;
            margin: 5px 0;
        }

        .progress-ring {
            width: 140px;
            height: 140px;
            position: absolute;
            transform: rotate(-90deg);
        }

        .progress-ring circle {
            stroke: #4CAF50;
            stroke-width: 8;
            fill: transparent;
            r: 60;
            cx: 70;
            cy: 70;
            transition: stroke-dashoffset 0.35s;
        }
