* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            user-select: none;
        }

        body, html {
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: #030712;
            color: #f3f4f6;
        }

        #webgl-container {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .hud-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 24px;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .title-box h1 {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #60a5fa, #c084fc, #f43f5e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .title-box p {
            font-size: 12px;
            color: #9ca3af;
            margin-top: 4px;
        }

        .status-panel {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            width: 320px;
            max-height: 75vh;
            display: flex;
            flex-direction: column;
            pointer-events: auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .status-panel h3 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #94a3b8;
            margin-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 6px;
        }

        /* English Informer Banner inside Verified Status Nodes */
        .panel-info-banner {
            background: rgba(251, 191, 36, 0.08);
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-left: 3px solid #fbbf24;
            border-radius: 6px;
            padding: 8px;
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .panel-info-banner .icon {
            font-size: 14px;
            line-height: 1;
        }

        .panel-info-banner p {
            font-size: 10px;
            color: #d1d5db;
            line-height: 1.35;
        }

        .panel-info-banner strong {
            color: #fbbf24;
        }

        .status-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow-y: auto;
            padding-right: 4px;
        }

        .status-list::-webkit-scrollbar { width: 4px; }
        .status-list::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
        }

        .region-group h4 {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #60a5fa;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .status-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            padding: 6px 8px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid transparent;
            margin-bottom: 4px;
        }

        .status-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(96, 165, 250, 0.4);
            transform: translateX(4px);
        }

        .status-item-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .brand-logo {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            object-fit: contain;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #22c55e;
            box-shadow: 0 0 8px #22c55e;
        }

        .bonus-table-container {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 12px 16px;
            width: 340px;
            pointer-events: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .bonus-table-container h4 {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #f43f5e;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
        }

        .bonus-card {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            text-decoration: none;
            color: #d1d5db;
            font-size: 11px;
            transition: all 0.2s;
        }

        .bonus-card:hover {
            background: rgba(244, 63, 94, 0.15);
            border-color: rgba(244, 63, 94, 0.4);
            color: #fff;
        }

        .controls-toolbar {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 30px;
            pointer-events: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #f3f4f6;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .nav-btn:hover {
            background: rgba(96, 165, 250, 0.2);
            border-color: #60a5fa;
            color: #60a5fa;
            transform: translateY(-2px);
        }

        .nav-btn.active {
            background: #2563eb;
            border-color: #60a5fa;
            color: #fff;
        }

        .modal-popup {
            position: absolute;
            z-index: 100;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid #60a5fa;
            backdrop-filter: blur(16px);
            border-radius: 10px;
            padding: 16px;
            width: 280px;
            box-shadow: 0 0 25px rgba(96, 165, 250, 0.3);
            display: none;
            pointer-events: auto;
            transform: translate(-50%, -120%);
        }

        .modal-popup h4 {
            color: #ffffff;
            font-size: 14px;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-popup .meta {
            font-size: 11px;
            color: #94a3b8;
            margin-bottom: 10px;
        }

        .modal-popup .status-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: #22c55e;
            background: rgba(34, 197, 94, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .modal-popup a {
            display: block;
            text-align: center;
            background: #2563eb;
            color: #ffffff;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }

        .modal-popup a:hover {
            background: #1d4ed8;
        }

        .modal-close {
            position: absolute;
            top: 8px;
            right: 10px;
            color: #94a3b8;
            cursor: pointer;
            font-size: 14px;
        }

        .hover-tooltip {
            position: absolute;
            z-index: 90;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            border-radius: 6px;
            padding: 6px 12px;
            pointer-events: none;
            display: none;
            transform: translate(-50%, -130%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
            white-space: nowrap;
        }

        .hover-tooltip .title {
            font-size: 12px;
            font-weight: 600;
            color: #f3f4f6;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hover-tooltip .subtitle {
            font-size: 10px;
            color: #9ca3af;
        }