
        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #f0f4f8;
            margin: 0;
            padding: 20px;
            text-align: center;
        }
        .container {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 90%;
            max-width: 600px;
        }
        #debug {
            font-size: 12px;
            background: #f5f5f5;
            padding: 10px;
            margin-top: 20px;
            text-align: left;
            white-space: pre-wrap;
            word-wrap: break-word;
            border: 1px solid #ddd;
            border-radius: 5px;
            height: 200px;
            overflow-y: auto;
        }
        .error { color: red; }
        .readings {
            margin: 10px 0;
            font-family: monospace;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin: 10px 0;
        }
        button:disabled { background: #ccc; }
        .level {
            font-size: 24px;
            font-weight: bold;
            margin: 15px 0;
            padding: 10px;
            border-radius: 5px;
        }
        .level-1 { background: #ff6b6b; color: white; } /* Flinch Fiesta */
        .level-2 { background: #ffd93d; color: black; } /* Bang and Hope */
        .level-3 { background: #6c757d; color: white; } /* Wobble Warrior */
        .level-4 { background: #4dabf7; color: white; } /* Center Mass Crusader */
        .level-5 { background: #51cf66; color: white; } /* Bullseye Buddha */
        .icon-container {
            position: fixed;
            top: 10px;
            left: 20px;
            display: flex;
            gap: 10px;
        }
        .icon-button {
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
            background: transparent;
            color: black;
        }
        .icon-button:hover {
            transform: scale(1.05);
        }
        .share-button {
            width: 24px;
            height: 24px;
        }
        .contact-button {
            width: 24px;
            height: 24px;
            color: black;
            text-decoration: none;
        }
        .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: 15px;
            cursor: pointer;
            transition: background-color 0.3s;
            border-radius: 6px;
            color: black;
            text-decoration: none;
        }
        .share-option:hover {
            background: #f5f5f5;
        }
        .share-icon {
            width: 20px;
            height: 20px;
        }