/* ============================================================
   DailyDraft.lol — styles
   Extracted from index.html to keep the markup file manageable.
   Loaded via <link rel="stylesheet" href="styles.css"> in index.html.
   ============================================================ */

/* ============================================================
   Base reset — equivalent to Tailwind's "Preflight" reset, which
   used to come bundled with the CDN script. Every visual property
   Tailwind's utility classes set was always set ON TOP of this base
   normalization; removing Tailwind without also keeping this part
   left browsers falling back to their own inconsistent default
   stylesheet (default margins on headings/lists/paragraphs,
   content-box sizing instead of border-box, default button/input
   chrome, etc.) — which is what broke the layout after Tailwind was
   removed. This restores that same baseline in plain CSS.
   ============================================================ */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}
body {
  margin: 0;
  line-height: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
p, blockquote, dl, dd, figure, hr {
  margin: 0;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
img, svg, video, canvas {
  display: block;
  vertical-align: middle;
}
img, video {
  max-width: 100%;
  height: auto;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button {
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}
button, [type='button'], [type='submit'] {
  -webkit-appearance: button;
}
a {
  color: inherit;
  text-decoration: inherit;
}
input::placeholder, textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

    body {
      background-color: #04070d;
      background-image:
        radial-gradient(circle at 50% 0%, rgba(10, 200, 185, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(200, 170, 110, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(6, 10, 18, 0.90), rgba(4, 7, 13, 0.98));
      font-family: 'Inter', sans-serif;
      user-select: none;
    }

    /* Hextech Golden Frame Glow */
    .hextech-border {
      position: relative;
      border: 1px solid #c8aa6e;
      box-shadow: 0 0 15px rgba(200, 170, 110, 0.15), inset 0 0 15px rgba(200, 170, 110, 0.08);
    }

    /* Corner accents for Hextech styling */
    .hex-corner {
      position: relative;
    }
    .hex-corner::before, .hex-corner::after {
      content: '';
      position: absolute;
      width: 6px;
      height: 6px;
      border-color: #f0e6d2;
      pointer-events: none;
      z-index: 10;
    }
    .hex-corner::before {
      top: -1px;
      left: -1px;
      border-top: 2px solid #f0e6d2;
      border-left: 2px solid #f0e6d2;
    }
    .hex-corner::after {
      bottom: -1px;
      right: -1px;
      border-bottom: 2px solid #f0e6d2;
      border-right: 2px solid #f0e6d2;
    }

    /* Pulse Glows */
    @keyframes goldPulse {
      0%, 100% { box-shadow: 0 0 12px rgba(200, 170, 110, 0.3); border-color: #c8aa6e; }
      50% { box-shadow: 0 0 28px rgba(240, 230, 210, 0.7); border-color: #f0e6d2; }
    }
    .animate-gold-pulse {
      animation: goldPulse 2s infinite ease-in-out;
    }

    /* ===== Champion Select splash panels ===== */
    .splash-panel {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .splash-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      background-color: #0a1220;
      opacity: 0;
      transform: scale(1.06);
      transition: opacity 0.5s ease, transform 3s ease;
      z-index: 0;
    }
    .splash-bg.is-loaded {
      opacity: 1;
      transform: scale(1);
    }
    .splash-fallback {
      position: absolute;
      inset: 0;
      z-index: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 42px;
      opacity: 0.25;
    }
    /* Scrim sits only behind the text block (bottom) so the portrait itself stays vivid up top,
       matching how the League client keeps splash art clear and only darkens near labels. */
    .splash-scrim-blue {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to top, rgba(3,8,16,0.95) 0%, rgba(3,8,16,0.78) 22%, rgba(3,8,16,0.25) 48%, rgba(3,8,16,0.15) 65%, rgba(3,8,16,0.35) 100%),
        linear-gradient(105deg, rgba(3,8,16,0.55) 0%, rgba(3,8,16,0.05) 55%);
    }
    .splash-scrim-red {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to top, rgba(18,4,7,0.95) 0%, rgba(18,4,7,0.78) 22%, rgba(18,4,7,0.25) 48%, rgba(18,4,7,0.15) 65%, rgba(18,4,7,0.35) 100%),
        linear-gradient(255deg, rgba(18,4,7,0.55) 0%, rgba(18,4,7,0.05) 55%);
    }

    /* Phase bar team-tinted backdrop */
    .phase-bar {
      background:
        linear-gradient(90deg, rgba(10,40,70,0.55) 0%, rgba(10,20,30,0.4) 45%, rgba(10,20,30,0.4) 55%, rgba(70,15,20,0.55) 100%),
        #0a1220;
    }

    /* Role select icon buttons (mimics client position-select) */
    .role-icon-btn {
      width: 38px;
      height: 38px;
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.15s ease;
      border: 1px solid #1e282d;
      background: #0a1220;
    }
    .role-icon-btn img {
      width: 19px;
      height: 19px;
      opacity: 0.7;
    }
    .role-icon-btn:hover {
      border-color: rgba(200,170,110,0.5);
    }
    .role-icon-btn:hover img { opacity: 1; }
    .role-icon-btn.active {
      background: linear-gradient(180deg, #c8aa6e, #785a28);
      border-color: #f0e6d2;
      box-shadow: 0 0 12px rgba(200,170,110,0.5);
    }
    .role-icon-btn.active img {
      opacity: 1;
      filter: brightness(0) saturate(100%);
    }
    .role-icon-btn .all-badge {
      font-size: 9px;
      font-weight: 900;
      color: #8a97a8;
    }
    .role-icon-btn.active .all-badge { color: #04070d; }

    /* Champion-select team columns (Top / Jungle / Mid / Bot / Support rows per side) */
    .team-column {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 4px;
    }
    .team-slot {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 4px 2px;
      border-radius: 8px;
      opacity: 0.3;
      filter: grayscale(85%);
      transition: opacity 0.35s ease, filter 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    }
    .team-slot.active-lane {
      opacity: 1;
      filter: grayscale(0%);
    }
    .team-slot-blue.active-lane {
      background: rgba(10, 45, 75, 0.4);
      box-shadow: inset 0 0 0 1px rgba(10, 200, 185, 0.5);
    }
    .team-slot-red.active-lane {
      background: rgba(65, 12, 16, 0.4);
      box-shadow: inset 0 0 0 1px rgba(232, 64, 87, 0.5);
    }
    .team-slot-avatar {
      width: 34px;
      height: 34px;
      border-radius: 6px;
      background: #0a1220;
      border: 1px solid #1e282d;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }
    .team-slot-blue.active-lane .team-slot-avatar { border-color: #0ac8b9; }
    .team-slot-red.active-lane .team-slot-avatar { border-color: #e84057; }
    .team-slot-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .team-slot-qmark { font-size: 12px; color: #4b5563; font-weight: 800; }
    .team-slot-role-icon {
      width: 15px;
      height: 15px;
      filter: brightness(0) saturate(100%) invert(60%);
      opacity: 0.7;
    }
    .team-slot.active-lane .team-slot-role-icon { opacity: 1; }
    @media (min-width: 1024px) {
      .team-slot-avatar { width: 42px; height: 42px; }
      .team-slot-role-icon { width: 17px; height: 17px; }
    }

    /* Champion grid icon size — set here directly (not as a Tailwind
       arbitrary-value class) since the browser-based Tailwind JIT compiler
       doesn't reliably parse bracket syntax containing commas like
       grid-cols-[repeat(auto-fill,36px)]. Change the 36px below to resize
       every icon in the selection grid. */
    #champion-grid {
      grid-template-columns: repeat(auto-fill, 52px);
    }

    /* Tight champ-select style grid cells */
    .champ-cell {
      aspect-ratio: 1 / 1;
      border-radius: 6px;
      position: relative;
      cursor: pointer;
      overflow: hidden;
      transition: transform 0.12s ease, box-shadow 0.12s ease;
      border: 1px solid #1e282d;
      background: #0a1220;
    }
    .champ-cell:not(.locked):hover {
      transform: translateY(-2px) scale(1.04);
      border-color: #c8aa6e;
      z-index: 5;
    }
    .champ-cell.selected {
      border-color: #0ac8b9;
      box-shadow: 0 0 0 2px rgba(10,200,185,0.6), 0 0 14px rgba(10,200,185,0.45);
    }
    .champ-cell.locked {
      opacity: 0.28;
      cursor: not-allowed;
      filter: grayscale(60%);
    }
    .champ-cell .champ-name-tag {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      font-size: 8.5px;
      text-align: center;
      padding: 1.5px 1px;
      background: linear-gradient(to top, rgba(0,0,0,0.92), transparent);
      color: #e8e2d4;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    ::-webkit-scrollbar-track {
      background: #060a12;
    }
    ::-webkit-scrollbar-thumb {
      background: #1e282d;
      border: 1px solid #785a28;
      border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #c8aa6e;
    }

    /* ===== Battle Simulation (lane-by-lane pre-result animation) ===== */
    /* An original schematic map — not a reproduction of Riot's actual
       Summoner's Rift art — used purely as a backdrop so each lane's duel
       appears roughly where that lane actually sits. */
    .map-stage {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      max-width: 560px;
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(200, 170, 110, 0.35);
      box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
    }
    .map-stage svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .battle-duel {
      position: absolute;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }
    .battle-lane-label {
      font-size: 8px;
      font-weight: 800;
      color: #d6c7a1;
      background: rgba(4, 7, 13, 0.75);
      padding: 1px 5px;
      border-radius: 4px;
      letter-spacing: 0.06em;
    }
    .battle-pair {
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .battle-portrait-wrap {
      display: flex;
      position: relative;
    }
    .battle-portrait-ring {
      width: 34px;
      height: 34px;
      border-radius: 9999px;
      overflow: hidden;
      border: 2px solid #2a3548;
      background: #060a12;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
      transition: border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
      flex-shrink: 0;
    }
    .battle-portrait-ring img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .battle-ring-win {
      border-color: #c8aa6e;
      box-shadow: 0 0 10px rgba(200, 170, 110, 0.8);
    }
    .battle-ring-lose {
      opacity: 0.4;
      filter: grayscale(70%);
    }
    .battle-result-badge {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: 0.05em;
      min-height: 11px;
      background: rgba(4, 7, 13, 0.75);
      padding: 0 4px;
      border-radius: 3px;
    }
    .battle-vs-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 16px;
    }
    .battle-vs-label {
      position: relative;
      z-index: 1;
      font-size: 8px;
      font-weight: 800;
      color: #d6c7a1;
    }

    /* The brief golden flash at the moment of "impact", centered behind the VS label. */
    .battle-impact-flash {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.6);
      width: 26px;
      height: 26px;
      border-radius: 9999px;
      background: radial-gradient(circle, rgba(240, 230, 210, 0.95) 0%, rgba(200, 170, 110, 0.5) 45%, transparent 75%);
      opacity: 0;
      pointer-events: none;
    }
    .battle-row-active .battle-impact-flash {
      animation: battleFlash 0.5s ease-in-out;
    }
    /* ===== Enemy "deciding" indicator — a slow, gentle pulse on the
       thinking icon while the (simulated) enemy deliberates over their pick ===== */
    @keyframes thinkingPulse {
      0%, 100% { opacity: 0.55; transform: scale(0.94); }
      50%      { opacity: 1;    transform: scale(1.08); }
    }
    .thinking-pulse {
      animation: thinkingPulse 0.9s ease-in-out infinite;
    }

    /* ===== Lock-in flash — plays on a champion's avatar box the moment
       it's confirmed: for the user right when they hit "Lock In", and for
       the enemy right when their pick for this lane is revealed. ===== */
    @keyframes lockInPulse {
      0%   { transform: scale(1);    box-shadow: 0 0 0 rgba(200, 170, 110, 0); }
      35%  { transform: scale(1.1);  box-shadow: 0 0 28px rgba(200, 170, 110, 0.95); }
      100% { transform: scale(1);    box-shadow: 0 0 0 rgba(200, 170, 110, 0); }
    }
    .lock-in-anim {
      animation: lockInPulse 0.55s ease-out;
    }

    @keyframes battleFlash {
      0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
      45%, 60% { opacity: 1; transform: translate(-50%, -50%) scale(1.7); }
    }

    @keyframes battleClashUser {
      0% { transform: translateX(0); }
      40% { transform: translateX(8px); }
      55% { transform: translateX(-2px); }
      100% { transform: translateX(0); }
    }
    @keyframes battleClashEnemy {
      0% { transform: translateX(0); }
      40% { transform: translateX(-8px); }
      55% { transform: translateX(2px); }
      100% { transform: translateX(0); }
    }
    .battle-clash-user .battle-portrait-ring { animation: battleClashUser 0.5s ease-in-out; }
    .battle-clash-enemy .battle-portrait-ring { animation: battleClashEnemy 0.5s ease-in-out; }

/* ============================================================
   Plain-CSS equivalents of the Tailwind utility classes used
   throughout index.html — generated to replace the Tailwind CDN
   script, which ran its compiler at runtime in every visitor's
   browser rather than as a build step. Class names in the HTML are
   UNCHANGED; these rules just give the exact same class names real
   CSS definitions instead of relying on Tailwind's JIT engine.
   ============================================================ */
.-bottom-1 { bottom: -0.25rem; }
.-left-1 { left: -0.25rem; }
.-mt-2 { margin-top: -0.5rem; }
.-right-1 { right: -0.25rem; }
.-rotate-90 { transform: rotate(-90deg); }
.-top-1 { top: -0.25rem; }
.absolute { position: absolute; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.bg-amber-500\/10 { background-color: rgba(245,158,11,0.1); }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-950 { background-color: #172554; }
.bg-blue-950\/80 { background-color: rgba(23,37,84,0.8); }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.bg-hextech-gold { background-color: #c8aa6e; }
.bg-red-950 { background-color: #450a0a; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-900\/80 { background-color: rgba(15,23,42,0.8); }
.bg-slate-900\/90 { background-color: rgba(15,23,42,0.9); }
.bg-slate-950 { background-color: #020617; }
.bg-slate-950\/70 { background-color: rgba(2,6,23,0.7); }
.bg-slate-950\/90 { background-color: rgba(2,6,23,0.9); }
.bg-slate-950\/95 { background-color: rgba(2,6,23,0.95); }
.bg-slate-950\/97 { background-color: rgba(2,6,23,0.97); }
.bg-teal-950\/80 { background-color: rgba(4,47,46,0.8); }
.bg-transparent { background-color: transparent; }
.block { display: block; }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-blue-400 { border-color: #60a5fa; }
.border-blue-500\/60 { border-color: rgba(59,130,246,0.6); }
.border-blue-800 { border-color: #1e40af; }
.border-blue-900\/40 { border-color: rgba(30,58,138,0.4); }
.border-dashed { border-style: dashed; }
.border-hextech-border\/80 { border-color: rgba(30,40,45,0.8); }
.border-hextech-cyan\/40 { border-color: rgba(10,200,185,0.4); }
.border-hextech-gold { border-color: #c8aa6e; }
.border-hextech-gold\/30 { border-color: rgba(200,170,110,0.3); }
.border-hextech-gold\/40 { border-color: rgba(200,170,110,0.4); }
.border-hextech-gold\/50 { border-color: rgba(200,170,110,0.5); }
.border-hextech-gold\/60 { border-color: rgba(200,170,110,0.6); }
.border-hextech-goldLight { border-color: #f0e6d2; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-red-500\/80 { border-color: rgba(239,68,68,0.8); }
.border-red-600\/60 { border-color: rgba(220,38,38,0.6); }
.border-red-700 { border-color: #b91c1c; }
.border-red-800\/60 { border-color: rgba(153,27,27,0.6); }
.border-red-900\/40 { border-color: rgba(127,29,29,0.4); }
.border-slate-700 { border-color: #334155; }
.border-slate-800 { border-color: #1e293b; }
.border-slate-800\/80 { border-color: rgba(30,41,59,0.8); }
.border-slate-900 { border-color: #0f172a; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-teal-500\/50 { border-color: rgba(20,184,166,0.5); }
.border-teal-800 { border-color: #115e59; }
.bottom-0 { bottom: 0rem; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-pointer { cursor: pointer; }
.drop-shadow { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }
.fixed { position: fixed; }
.flex { display: flex; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-cinzel { font-family: 'Cinzel', serif; }
.font-extrabold { font-weight: 800; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }
.font-sans { font-family: 'Inter', sans-serif; }
.font-semibold { font-weight: 600; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.h-0\.5 { height: 0.125rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-full { height: 100%; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.inset-0 { top: 0rem; right: 0rem; bottom: 0rem; left: 0rem; }
.italic { font-style: italic; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.leading-relaxed { line-height: 1.625; }
.left-0 { left: 0rem; }
.left-2\.5 { left: 0.625rem; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.max-h-52 { max-height: 13rem; }
.max-h-\[360px\] { max-height: 360px; }
.max-h-\[92vh\] { max-height: 92vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.max-w-xl { max-width: 36rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.min-h-0 { min-height: 0; }
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-auto { margin-left: auto; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.object-cover { object-fit: cover; }
.opacity-0 { opacity: 0.0; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.pb-2\.5 { padding-bottom: 0.625rem; }
.pl-8 { padding-left: 2rem; }
.pr-1 { padding-right: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-0\.2 { padding-top: 0.05rem; padding-bottom: 0.05rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.relative { position: relative; }
.right-0 { right: 0rem; }
.right-3 { right: 0.75rem; }
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,0.55); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.4); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.4); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,0.45); }
.sticky { position: sticky; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[8px\] { font-size: 8px; }
.text-\[9px\] { font-size: 9px; }
.text-amber-300 { color: #fcd34d; }
.text-amber-400 { color: #fbbf24; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-blue-300 { color: #93c5fd; }
.text-blue-400 { color: #60a5fa; }
.text-center { text-align: center; }
.text-hextech-cyan { color: #0ac8b9; }
.text-hextech-gold { color: #c8aa6e; }
.text-hextech-goldLight { color: #f0e6d2; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-red-300 { color: #fca5a5; }
.text-red-400 { color: #f87171; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-800 { color: #1e293b; }
.text-slate-950 { color: #020617; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-teal-300 { color: #5eead4; }
.text-teal-400 { color: #2dd4bf; }
.text-transparent { color: transparent; }
.text-white { color: #ffffff; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.top-0 { top: 0rem; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.transform { transform: translateX(var(--tw-tx,0)) translateY(var(--tw-ty,0)) rotate(var(--tw-rot,0)) scale(var(--tw-scale,1)); }
.transition { transition: all 0.15s ease; }
.transition-all { transition: all 0.15s ease; }
.transition-opacity { transition: opacity 0.15s ease; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uppercase { text-transform: uppercase; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-14 { width: 3.5rem; }
.w-20 { width: 5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-full { width: 100%; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.hover\:bg-amber-300:hover { background-color: #fcd34d; }
.hover\:bg-slate-700:hover { background-color: #334155; }
.hover\:bg-slate-800:hover { background-color: #1e293b; }
.hover\:border-hextech-gold\/50:hover { border-color: rgba(200,170,110,0.5); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:text-hextech-gold:hover { color: #c8aa6e; }
.hover\:text-slate-200:hover { color: #e2e8f0; }
.hover\:text-white:hover { color: #ffffff; }
.focus\:border-hextech-gold:focus { border-color: #c8aa6e; }
.focus\:outline-none:focus { outline: none; }
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:inline { display: inline; }
  .sm\:w-80 { width: 20rem; }
}
@media (min-width: 768px) {
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:flex { display: flex; }
  .md\:flex-1 { flex: 1 1 0%; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:h-22 { height: 5.5rem; }
  .md\:h-screen { height: 100vh; }
  .md\:max-h-none { max-height: none; }
  .md\:min-h-0 { min-height: 0; }
  .md\:min-h-\[220px\] { min-height: 220px; }
  .md\:overflow-y-auto { overflow-y: auto; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:py-0 { padding-top: 0rem; padding-bottom: 0rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .md\:w-22 { width: 5.5rem; }
  .md\:w-56 { width: 14rem; }
  .md\:w-auto { width: auto; }
}
@media (min-width: 1024px) {
  .lg\:w-24 { width: 6rem; }
}

/* ===== Gradient combinations (explicit, since Tailwind's from/via/to system needs variable-length stop lists) ===== */
.bg-gradient-to-b.from-blue-950\/50.to-slate-950\/60 { background-image: linear-gradient(to bottom, rgba(23,37,84,0.5), rgba(2,6,23,0.6)); }
.bg-gradient-to-b.from-red-950\/50.to-slate-950\/60 { background-image: linear-gradient(to bottom, rgba(69,10,10,0.5), rgba(2,6,23,0.6)); }
.bg-gradient-to-br.from-blue-600\/40.via-teal-500\/20.to-amber-500\/40 { background-image: linear-gradient(to bottom right, rgba(37,99,235,0.4), rgba(20,184,166,0.2), rgba(245,158,11,0.4)); }
.bg-gradient-to-r.from-amber-950\/60.via-slate-900.to-amber-950\/60 { background-image: linear-gradient(to right, rgba(69,26,3,0.6), #0f172a, rgba(69,26,3,0.6)); }
.bg-gradient-to-r.from-blue-500\/60.via-hextech-gold.to-red-500\/60 { background-image: linear-gradient(to right, rgba(59,130,246,0.6), #c8aa6e, rgba(239,68,68,0.6)); }
.bg-gradient-to-r.from-hextech-gold.to-amber-400 { background-image: linear-gradient(to right, #c8aa6e, #fbbf24); }
.bg-gradient-to-r.from-hextech-gold.to-amber-400.hover\:from-hextech-goldLight.hover\:to-amber-300:hover { background-image: linear-gradient(to right, #f0e6d2, #fcd34d); }
.bg-gradient-to-r.from-hextech-gold.via-amber-400.to-hextech-gold { background-image: linear-gradient(to right, #c8aa6e, #fbbf24, #c8aa6e); }
.bg-gradient-to-r.from-hextech-goldLight.via-hextech-gold.to-amber-500 { background-image: linear-gradient(to right, #f0e6d2, #c8aa6e, #f59e0b); }

/* ===== Tailwind's space-y-*, divide-x/divide-color utilities apply to CHILDREN, not the element itself ===== */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.divide-x.divide-slate-800 > * + * { border-left-width: 1px; border-left-style: solid; border-color: #1e293b; }

/* ===== Keyframes referenced by animate-pulse ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
