/* src/styles.css */
:root {
  color-scheme: dark;
  --surface-page: oklch(0.16 0.006 250);
  --surface-card: oklch(0.205 0.007 250);
  --surface-2: oklch(0.245 0.009 250);
  --text-primary: oklch(0.96 0.004 250);
  --text-secondary: oklch(0.68 0.012 250);
  --muted: oklch(0.5 0.012 250);
  --border: oklch(1 0 0 / 9%);
  --border-soft: oklch(1 0 0 / 6%);
  --accent: oklch(0.79 0.19 152);
  --accent-bg: color-mix(in oklch, var(--accent) 14%, transparent);
  --accent-text: oklch(0.17 0.02 152);
  --score: oklch(0.96 0.004 250);
  --star: oklch(0.78 0.15 75);
  --danger: oklch(0.63 0.22 25);
  --danger-bg: color-mix(in oklch, var(--danger) 14%, transparent);
  --series-1: #3987e5;
  --series-2: #008300;
  --live: oklch(0.63 0.22 25);
  --status-good: #0ca30c;
  --status-critical: #d03b3b;
  --status-medium: #d69b1f;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 26px;
  --control-h: 34px;
}
:root[data-theme=amber] {
  --surface-page: oklch(0.16 0.008 95);
  --surface-card: oklch(0.205 0.01 95);
  --surface-2: oklch(0.245 0.012 95);
  --text-secondary: oklch(0.68 0.015 95);
  --muted: oklch(0.5 0.015 95);
  --border: oklch(1 0 0 / 9%);
  --border-soft: oklch(1 0 0 / 6%);
  --accent: oklch(0.83 0.17 97);
  --accent-bg: color-mix(in oklch, var(--accent) 16%, transparent);
  --accent-text: oklch(0.18 0.02 97);
  --star: oklch(0.96 0.008 95);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.upstream-notice {
  max-width: 420px;
  margin: 3rem auto;
  padding: 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.upstream-notice-icon {
  font-size: 2.75rem;
  color: var(--accent);
  animation: upstream-notice-pulse 1.8s ease-in-out infinite;
}
@keyframes upstream-notice-pulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
.upstream-notice-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}
.upstream-notice-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
@keyframes score-flip-down {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(-100deg);
    opacity: 0;
  }
}
.score-flip {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-card);
  color: var(--accent);
  font: inherit;
  font-variant-numeric: tabular-nums;
  transform-origin: center bottom;
  backface-visibility: hidden;
  pointer-events: none;
  animation: score-flip-down 0.55s cubic-bezier(0.4, 0, 1, 1) forwards;
}
.score-flip.cancelled {
  color: var(--danger);
}
[data-goal-fx] {
  position: relative;
}
.goal-fx-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
[data-goal-fx] .score-value,
[data-goal-fx] .match-header-score-value {
  position: relative;
}
[data-goal-fx=sweep] {
  overflow: hidden;
}
[data-goal-fx=sweep]::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 40%;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      transparent,
      color-mix(in oklch, var(--accent) 26%, transparent),
      transparent);
  animation: goal-fx-sweep 0.85s ease-in-out forwards;
}
@keyframes goal-fx-sweep {
  0% {
    translate: 0 0;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    translate: 380% 0;
    opacity: 0;
  }
}
[data-goal-fx=ripple] .goal-fx-layer::before,
[data-goal-fx=ripple] .goal-fx-layer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: goal-fx-ripple 0.9s ease-out forwards;
}
[data-goal-fx=ripple] .goal-fx-layer::after {
  animation-delay: 0.16s;
}
@keyframes goal-fx-ripple {
  0% {
    scale: 0.35;
    opacity: 0.9;
  }
  100% {
    scale: 3.4;
    opacity: 0;
  }
}
[data-goal-fx=trace]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      var(--accent),
      transparent) top left / 0% 1px no-repeat,
    linear-gradient(
      180deg,
      var(--accent),
      transparent) top right / 1px 0% no-repeat,
    linear-gradient(
      270deg,
      var(--accent),
      transparent) bottom right / 0% 1px no-repeat,
    linear-gradient(
      0deg,
      var(--accent),
      transparent) bottom left / 1px 0% no-repeat;
  animation: goal-fx-trace 1.1s ease-out forwards;
}
@keyframes goal-fx-trace {
  0% {
    opacity: 1;
    background-size:
      0% 1px,
      1px 0%,
      0% 1px,
      1px 0%;
  }
  50% {
    opacity: 1;
    background-size:
      100% 1px,
      1px 100%,
      100% 1px,
      1px 100%;
  }
  100% {
    opacity: 0;
    background-size:
      100% 1px,
      1px 100%,
      100% 1px,
      1px 100%;
  }
}
[data-goal-fx=spark] .goal-fx-layer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle 2.5px at 50% 0%,
      var(--accent) 95%,
      transparent),
    radial-gradient(
      circle 2.5px at 100% 50%,
      var(--accent) 95%,
      transparent),
    radial-gradient(
      circle 2.5px at 50% 100%,
      var(--accent) 95%,
      transparent),
    radial-gradient(
      circle 2.5px at 0% 50%,
      var(--accent) 95%,
      transparent),
    radial-gradient(
      circle 2px at 85% 15%,
      var(--accent) 95%,
      transparent),
    radial-gradient(
      circle 2px at 85% 85%,
      var(--accent) 95%,
      transparent),
    radial-gradient(
      circle 2px at 15% 85%,
      var(--accent) 95%,
      transparent),
    radial-gradient(
      circle 2px at 15% 15%,
      var(--accent) 95%,
      transparent);
  animation: goal-fx-spark 0.75s ease-out forwards;
}
@keyframes goal-fx-spark {
  0% {
    scale: 0.25;
    opacity: 1;
  }
  100% {
    scale: 1.6;
    opacity: 0;
  }
}
.goal-fx-select {
  max-width: 15rem;
}
@media (prefers-reduced-motion: reduce) {
  [data-goal-fx=sweep]::after,
  [data-goal-fx=trace]::before,
  [data-goal-fx=ripple] .goal-fx-layer::before,
  [data-goal-fx=ripple] .goal-fx-layer::after,
  [data-goal-fx=spark] .goal-fx-layer::before {
    animation: none;
    display: none;
  }
  .goal-fx-layer {
    animation: none !important;
    display: none;
  }
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
