  /* ===================================================================
     ORIENTAL ONLINE STATUS
     Namespace: gos-
     =================================================================== */
  
  .gos-wrapper {
    /* Palette */
    --gos-bg-dark: #0a0a0a;
    --gos-gold-main: #f9dd80;
    --gos-gold-light: #ffffff;
    --gos-gold-dark: #ffda6b;
    --gos-text: #ffffff;
    --gos-text-muted: #e0e0e0;
    --gos-success: #27ae60; /* Emerald Green */
    
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
  }

  /* Block: The Badge Container */
  .gos-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    border-radius: 50px; /* Luxury Capsule */
    
    /* [แก้ไข] เปลี่ยนเป็นพื้นหลังสีแดงเลือดหมูไล่เฉดดำ */
    background: linear-gradient(180deg, #a61111 0%, #3b1d07 100%);
    
    /* Double Border Effect using Box Shadow */
    box-shadow: 
      0 0 0 1px #2b0505,             /* Inner dark red border */
      0 0 0 3px var(--gos-gold-dark), /* Middle gold border */
      0 10px 20px rgba(0,0,0,0.8),   /* Drop shadow */
      inset 0 1px 0 rgba(255,255,255,0.1); /* Inner highlight */
      
    transition: all 0.3s ease;
    cursor: default;
    overflow: hidden;
  }

  /* Shine Effect */
  .gos-badge::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 245, 194, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .gos-badge:hover {
    transform: translateY(-2px);
    /* ปรับเงาตอน Hover ให้เข้ากับสีแดง */
    background: linear-gradient(180deg, #520e0e 0%, #1a0505 100%);
    box-shadow: 
      0 0 0 1px #333,
      0 0 0 3px var(--gos-gold-main), /* Brighter Gold */
      0 15px 30px rgba(0,0,0,0.9),
      0 0 15px rgba(212, 175, 55, 0.2); /* Gold Glow */
  }

  .gos-badge:hover::before {
    opacity: 1;
  }

  /* Element: Pulse Indicator */
  .gos-indicator {
    position: relative;
    width: 10px;
    height: 10px;
    background-color: var(--gos-success);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--gos-success);
    border: 2px solid #000; /* Cutout effect */
  }

  .gos-indicator::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    animation: gosPulse 2s infinite;
    z-index: -1;
  }

  /* Element: Text Label */
  .gos-label {
    font-size: 14px;
    color: var(--gos-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  /* Element: Number Count */
  .gos-count {
    font-family: "Pridi", serif;
    font-size: 18px;
    font-weight: 700;
    
    /* Gold Gradient Text */
    background: linear-gradient(180deg, var(--gos-gold-light) 20%, var(--gos-gold-main) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    min-width: 8%;
    text-align: right;
    font-variant-numeric: tabular-nums;
  }

  /* Element: Unit */
  .gos-unit {
    font-size: 14px;
    color: var(--gos-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  @keyframes gosPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
  }