.tg-widget {
    --tg-orange: #F97316;
    --tg-red: #EF4444;
    --tg-surface: rgba(255, 255, 255, 0.04);
    --tg-border: rgba(255, 120, 50, 0.15);
    --tg-muted: #6B7280;
    --tg-text: #F1F5F9;
    --tg-green: #10B981;
    --tg-yellow: #FBBF24;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    box-sizing: border-box;
    width: 100%;
}

.tg-widget *,
.tg-widget *::before,
.tg-widget *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.tg-widget .tg-panel {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #0f1012;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
}

.tg-widget .tg-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--tg-muted);
    margin-bottom: 20px;
}

.tg-widget .tg-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tg-muted);
}

.tg-widget .tg-card {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease;
}

.tg-widget .tg-card:hover {
    transform: translateY(-4px);
    border-color: var(--tg-border);
}

.tg-widget .tg-val {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--tg-text);
}

.tg-widget .tg-lbl {
    font-size: 10px;
    color: var(--tg-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.tg-widget .tg-row-player {
    margin-bottom: 12px;
}

.tg-widget .tg-row-player .tg-val {
    font-size: 40px;
}

.tg-widget .tg-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.tg-widget .tg-bar-track {
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    margin: 10px auto 0;
    overflow: hidden;
}

.tg-widget .tg-bar-fill {
    height: 100%;
    background: var(--tg-orange);
    width: 0%;
    border-radius: 99px;
    transition: width 1s ease-in-out;
}

.tg-widget .tg-dot-green {
    background: var(--tg-green) !important;
    box-shadow: 0 0 8px var(--tg-green);
}

.tg-widget .tg-dot-red {
    background: var(--tg-red) !important;
    box-shadow: 0 0 8px var(--tg-red);
}

.tg-widget .tg-dot-yellow {
    background: var(--tg-yellow) !important;
    box-shadow: 0 0 8px var(--tg-yellow);
}

.tg-widget .tg-timestamp {
    font-size: 11px;
    color: var(--tg-muted);
    opacity: .7;
    margin-top: 10px;
}