:root {
    --gbd-bg: #1f1f1f;
    --gbd-border: #333;
    --gbd-text: #eee;
    --gbd-muted: #bbb;
    --gbd-accent: #00ff99;
  }
  
  /* Container */
  .gbd-wrapper {
    max-width: 720px;
    margin: 20px auto 30px;
    padding: 0 10px;
    color: var(--gbd-text);
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  
  /* Title */
  .gbd-title {
    font-weight: 600;
    font-size: 20px;
    background: #1e1e1e;
    border: 1px solid var(--gbd-border);
    border-radius: 10px;
    text-align: center;
    padding: 10px 16px;
    margin-bottom: 12px;
  }
  
  /* List */
  .gbd-dates-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--gbd-border);
    border-radius: 10px;
    overflow: hidden;
    background: #121212;
  }
  
  /* List item */
  .gbd-date-item {
    padding: 0; /* handled by .gbd-row */
    border-bottom: 1px solid var(--gbd-border);
    background: #151515;
    font-size: 15px;
  }
  
  .gbd-date-item:last-child {
    border-bottom: none;
  }
  
  /* --- Improvement: row layout with logos --- */
  .gbd-row {
    display: grid;
    grid-template-columns: 110px 1fr; /* time | teams */
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    transition: background-color .18s ease, border-color .18s ease;
  }
  
  .gbd-row:hover,
  .gbd-row:focus-visible {
    background: #181818;
    outline: none;
  }
  
  /* Left time cell */
  .gbd-when {
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  
  /* Right teams cell */
  .gbd-teams {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0; /* allow text truncation */
  }
  
  /* Team logos */
  .gbd-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    flex: 0 0 auto;
  }
  
  /* Team names */
  .gbd-team-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42%;
  }
  
  .gbd-vs {
    opacity: 0.75;
  }
  
  /* Subtle divider accent on hover */
  .gbd-row:hover .gbd-when {
    color: var(--gbd-accent);
  }
  
  /* Accessibility: focus styles */
  .gbd-row:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(0, 255, 153, 0.15);
    border-radius: 6px;
  }
  
  /* Muted text utility */
  .gbd-muted { color: var(--gbd-muted); }
  
  /* Responsive */
  @media (max-width: 640px) {
    .gbd-row {
      grid-template-columns: 84px 1fr;
      gap: 8px;
      padding: 10px 12px;
    }
    .gbd-team-name {
      max-width: 46%;
    }
    .gbd-logo {
      width: 20px;
      height: 20px;
    }
  }
  
  /* Reduce motion preference */
  @media (prefers-reduced-motion: reduce) {
    .gbd-row {
      transition: none;
    }
  }
  