/* ═══════════════════════════════════════════════════════════
   EXPERIENCE — FOR YOU (card hub)
═══════════════════════════════════════════════════════════ */
.exp-foryou {
  position: absolute;
  inset: 0;
  height: calc(100% - 80px);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.exp-foryou-left {
  width: 380px;
  flex-shrink: 0;
  padding: 80px 40px 160px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  box-sizing: border-box;
}
.exp-cards {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 2px;
  padding: 0;
  overflow: hidden;
}
.exp-card {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.exp-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.exp-card:active .exp-card-bg { transform: scale(1.03); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,25,29,0.1) 0%,
    rgba(12,25,29,0.15) 40%,
    rgba(12,25,29,0.7) 75%,
    rgba(12,25,29,0.95) 100%
  );
}
.exp-card-info {
  position: absolute;
  bottom: 200px;
  left: 40px;
  right: 40px;
}
.exp-card-eyebrow {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-quaternary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.exp-card-title {
  font-size: 36px;
  font-weight: 200;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.exp-card-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-tertiary);
  line-height: 1.6;
}
.exp-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.exp-card-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: dotBlink 2s ease infinite;
}
.exp-card:nth-child(1) { opacity: 0; animation: galFade 0.5s ease 0.1s forwards; }
.exp-card:nth-child(2) { opacity: 0; animation: galFade 0.5s ease 0.25s forwards; }

/* Bracket connectors */
.cup-connector {
  width: 36px;
  flex-shrink: 0;
  position: relative;
}
.cup-connector svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cup-connector line, .cup-connector path {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 0.5;
  fill: none;
}

/* Bracket entrance animations */
.cup-match {
  opacity: 0;
  transform: translateY(20px);
  animation: cupMatchIn 0.5s ease forwards;
}
@keyframes cupMatchIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   DYNAMIC ISLAND — LIVE SCORE
═══════════════════════════════════════════════════════════ */
.score-island {
  position: absolute;
  bottom: 157px;
  right: 48px;
  z-index: 510;
  height: 52px;
  border-radius: 26px;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  padding: 0 8px 0 18px;
  gap: 12px;
  cursor: pointer;
  transform: scale(0.7);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease, bottom 0.4s ease;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,0.1);
}
.score-island.visible {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}
@keyframes islandPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,125,134,0); }
  50%      { box-shadow: 0 0 24px 6px rgba(232,125,134,0.3); }
}
.score-island.pulse {
  animation: islandPulse 1s ease 2;
}
.cup-page.open ~ .score-island,
.markets-page.open ~ .score-island {
  bottom: 48px;
}
.island-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
}
.island-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.island-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: dotBlink 2s ease infinite;
}
@keyframes dotBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.island-teams {
  color: var(--text-primary);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.island-minute {
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.island-ticker {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.island-stock-change {
  font-size: 14px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.island-stock-change.up   { color: #4caf7d; }
.island-stock-change.down { color: var(--accent); }
.island-slot-close {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  margin-left: -2px;
}
