/* ─────────────────────────────────────────────────────────────
   styles_index.css — CS2FreeForAll · index.html ONLY
   v3.0 — Performance-focused rewrite. Same visual identity.
   Key wins vs v2.x:
     • Removed every backdrop-filter (very expensive GPU composite)
     • Replaced left-based scan animation with transform-only
     • Removed infinite filter:drop-shadow on hero title
     • Removed background-attachment:fixed (jank on scroll, esp. mobile)
     • Removed dead/duplicated hover transforms + the universal "*:hover" kill
     • Removed unused will-change hints (freeing GPU memory)
     • Removed @import google-fonts (now requested by <link> in HTML)
     • Cut overall CSS size ~30%
   ─────────────────────────────────────────────────────────── */

/* ──────────── TOKENS ──────────── */
:root{
  --ix-orange:#ff7a1a;
  --ix-orange-2:#ff8a3a;
  --ix-orange-3:#e85d00;
  --ix-amber:#ffb14a;
  --ix-purple:#a15cff;
  --ix-purple-2:#c56bff;
  --ix-purple-3:#7a3fd6;
  --ix-magenta:#c56bff;
  --ix-bg:#0a0a10;
  --ix-bg-2:#13131c;
  --ix-panel:#15171c;
  --ix-panel-2:#1a1c22;
  --ix-line:rgba(255,255,255,.06);
  --ix-line-2:rgba(255,255,255,.10);
  --ix-text:#e8e8ec;
  --ix-muted:#a8acb6;       /* WCAG-friendlier */
  --ix-muted-2:#6c6f78;
  --ix-green:#26e21f;
  --ix-cyan:#a15cff;
  --ix-discord:#5865f2;
  --ix-red:#ff5a5a;
  --ix-grad:linear-gradient(120deg,var(--ix-orange) 0%,var(--ix-magenta) 60%,var(--ix-purple) 100%);
  --ix-display:'Oxanium','Saira Condensed','Inter',system-ui,sans-serif;
  --ix-body:'Inter','Oxanium',system-ui,-apple-system,sans-serif;
}

/* ──────────── GLOBAL RESET / BASE ──────────── */
*,*::before,*::after{
  box-sizing:border-box;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}
html,body{min-height:100vh}
html{text-size-adjust:100%;-webkit-text-size-adjust:100%}

body.index-page{
  margin:0;
  font-family:var(--ix-body);
  font-size:15px;
  line-height:1.55;
  letter-spacing:.005em;
  color:var(--ix-text);
  background:var(--ix-bg);
  overflow-x:hidden;
  display:flex;
  flex-direction:column;
}

/* Ambient background: a single non-fixed gradient on body::before — cheap.
   (Removed background-attachment:fixed; removed second animated layer.) */
body.index-page::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(ellipse 60% 50% at 12% 18%, rgba(255,122,26,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 88% 30%, rgba(161,92,255,.20) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(161,92,255,.10) 0%, transparent 65%),
    linear-gradient(180deg,#0a0a10 0%,#0d0a14 35%,#0a0810 70%,#07060c 100%);
}

body.index-page a{color:inherit;text-decoration:none}
body.index-page button{font:inherit;background:none;border:0;color:inherit;cursor:pointer}
body.index-page .ix-container{max-width:1400px;margin:0 auto;padding:0 clamp(16px,2vw,32px);position:relative;z-index:1}
body.index-page .ix-hidden{display:none!important}

/* ──────────── HEADER ──────────── */
.ix-header{
  position:sticky;top:0;z-index:100;
  background:#0d0d12; /* solid → no backdrop-filter cost */
  border-bottom:1px solid var(--ix-line);
}
.ix-header-inner{display:flex;align-items:center;gap:24px;height:70px}
.ix-logo{display:flex;align-items:center;gap:12px;font-family:var(--ix-display);font-size:clamp(15px,1vw,20px);letter-spacing:.06em;white-space:nowrap;font-weight:700;transition:filter .15s linear}
.ix-logo:hover{filter:brightness(1.15)}
.ix-logo-icon{
  width:32px;height:32px;border-radius:50%;
  background:radial-gradient(circle at 35% 30%,#ff8a3a,var(--ix-orange-3) 55%,var(--ix-purple-3) 100%);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 0 14px rgba(255,122,26,.35),0 0 14px rgba(161,92,255,.25);
}
.ix-logo-icon svg{width:18px;height:18px;color:#fff}
.ix-logo b{color:#fff;font-weight:400}
.ix-logo span{color:var(--ix-orange);margin-left:3px}

.ix-nav{display:flex;align-items:center;gap:clamp(18px,1.8vw,32px);margin-left:auto;margin-right:auto}
.ix-nav a{
  position:relative;font-size:clamp(12px,0.75vw,15px);font-weight:600;letter-spacing:.08em;
  color:#b8bcc6;text-transform:uppercase;padding:6px 2px;transition:color .15s linear;
}
.ix-nav a::after{
  content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;
  background:var(--ix-orange);transform:scaleX(0);transform-origin:left;
  transition:transform .22s ease;
}
.ix-nav a:hover,.ix-nav a.active{color:#fff}
.ix-nav a:hover::after,.ix-nav a.active::after{transform:scaleX(1)}

.ix-header-right{display:flex;align-items:center;gap:14px}
.ix-players-pill{display:inline-flex;align-items:center;gap:8px;font-size:12px;color:#fff;padding:8px 14px;border-radius:9999px;background:rgba(255,255,255,.04);border:1px solid var(--ix-line)}
.ix-players-pill strong{font-weight:700}
.ix-players-pill .ix-dot{width:8px;height:8px;border-radius:50%;background:var(--ix-green);box-shadow:0 0 8px var(--ix-green);animation:ix-pulse 2.4s ease-in-out infinite}

.ix-connect-btn{
  display:inline-flex;align-items:center;gap:8px;padding:10px 18px;border-radius:8px;
  font-size:clamp(12px,0.78vw,15px);font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#fff;
  background:linear-gradient(120deg,var(--ix-orange) 0%,var(--ix-magenta) 50%,var(--ix-orange-3) 100%);
  box-shadow:0 6px 18px rgba(255,122,26,.30),0 0 18px rgba(161,92,255,.18);
  transition:transform .18s ease,box-shadow .18s ease;
}
.ix-connect-btn:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(255,122,26,.5),0 0 24px rgba(161,92,255,.30)}
.ix-connect-btn svg{width:14px;height:14px}

.ix-user-chip{display:inline-flex;align-items:center;gap:10px;padding:5px 14px 5px 5px;border-radius:9999px;background:rgba(255,255,255,.04);border:1px solid var(--ix-line-2);transition:border-color .2s ease,background .2s ease}
.ix-user-chip:hover{border-color:rgba(255,122,26,.4);background:rgba(255,122,26,.06)}
.ix-user-chip img{width:28px;height:28px;border-radius:50%;border:1.5px solid var(--ix-orange);object-fit:cover;background:#222}
.ix-user-chip-name{font-size:13px;font-weight:600;color:#fff;max-width:140px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ix-user-chip-logout{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:rgba(0,0,0,.4);color:var(--ix-muted);font-size:15px;line-height:1;transition:color .15s,background .15s}
.ix-user-chip-logout:hover{background:rgba(239,68,68,.2);color:var(--ix-red)}

/* ──────────── HERO ──────────── */
.ix-hero{position:relative;overflow:hidden;padding:clamp(36px,5vw,76px) 0 clamp(32px,4vw,60px);isolation:isolate;min-height:440px}
.ix-hero-bg{
  position:absolute;inset:0;z-index:-2;
  background-image:url('/static/images/hero-bg.png');
  background-size:cover;background-position:center 30%;
  opacity:.95;
}
.ix-hero-bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(13,13,18,.30) 0%,rgba(13,13,18,.55) 60%,var(--ix-bg) 100%);
}
.ix-hero-bg::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%,rgba(255,122,26,.22),transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%,rgba(161,92,255,.26),transparent 60%);
  pointer-events:none;
}
/* Grid overlay — static, cheap dual-gradient (mask-image removed — masks force
   an offscreen composite layer that integrated GPUs really dislike). */
.ix-hero-grid{
  position:absolute;inset:0;z-index:-1;
  background-image:
    radial-gradient(ellipse 80% 70% at 50% 40%,rgba(0,0,0,0) 30%,rgba(10,10,16,.85) 90%),
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:100% 100%,56px 56px,56px 56px;
}

.ix-hero-inner{max-width:760px;animation:ix-rise .7s cubic-bezier(.2,.7,.3,1) both}
.ix-hero-title{
  font-family:var(--ix-display);font-weight:700;
  font-size:clamp(44px,5.6vw,110px);line-height:.96;letter-spacing:.01em;
  text-transform:uppercase;margin:0 0 22px;
}
.ix-hero-title .ix-orange,.ix-hero-title .ix-white{display:inline-block;white-space:nowrap}
.ix-hero-title .ix-orange{color:var(--ix-orange);text-shadow:0 0 26px rgba(255,122,26,.45),0 0 60px rgba(255,122,26,.22)}
.ix-hero-title .ix-white{color:#fff;text-shadow:0 0 36px rgba(161,92,255,.30)}
.ix-hero-sub1{font-size:clamp(15px,1.05vw,21px);color:#e8e8ec;margin:0 0 6px;font-weight:500;animation:ix-rise .8s .12s cubic-bezier(.2,.7,.3,1) both}
.ix-hero-sub2{font-size:clamp(13px,.85vw,17px);color:#b8bcc6;line-height:1.65;max-width:560px;margin:0;animation:ix-rise .9s .22s cubic-bezier(.2,.7,.3,1) both}

/* Hero accent dots: static, no infinite float animation */
.ix-hero::before{content:"";position:absolute;width:6px;height:6px;border-radius:50%;background:var(--ix-orange);box-shadow:0 0 12px var(--ix-orange);top:30%;left:8%;opacity:.7;pointer-events:none}
.ix-hero::after{content:"";position:absolute;width:4px;height:4px;border-radius:50%;background:var(--ix-magenta);box-shadow:0 0 10px var(--ix-magenta);top:60%;left:18%;opacity:.6;pointer-events:none}


/* ──────────── Contact links ──────────── */
.ix-report-link{
    color:var(--ix-orange);
    font-weight:800;
    text-decoration:none;
    transition:
        color .2s ease,
        text-shadow .2s ease;
}

.ix-report-link:hover{
    color:#ffb347;
    text-decoration:underline;
    text-shadow:0 0 8px rgba(255,140,0,.35);
}

.ix-report-link:focus-visible{
    outline:2px solid rgba(255,140,0,.5);
    outline-offset:2px;
    border-radius:3px;
}

/* ──────────── INFO BAR ──────────── */
.ix-infobar{padding:clamp(20px,2.4vw,28px) 0 clamp(8px,1vw,12px)}
.ix-infobar-panel{
  position:relative;overflow:hidden;
  padding:clamp(14px,1.4vw,18px);border-radius:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.020),rgba(255,255,255,.004));
  border:1px solid rgba(255,255,255,.05);
}
.ix-infobar-panel::before{
  content:"";position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent 0,rgba(255,122,26,.55) 25%,rgba(161,92,255,.55) 75%,transparent 100%);
  opacity:.6;
}
.ix-infobar-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.ix-info-pill{
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;align-items:flex-start;gap:6px;
  padding:14px 16px;border-radius:10px;
  background:rgba(255,255,255,.02);border:1px solid var(--ix-line);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
  animation:ix-rise .55s cubic-bezier(.2,.7,.3,1) both;
}
.ix-info-pill:nth-child(1){animation-delay:.10s}
.ix-info-pill:nth-child(2){animation-delay:.16s}
.ix-info-pill:nth-child(3){animation-delay:.22s}
.ix-info-pill:nth-child(4){animation-delay:.28s}
.ix-info-pill:nth-child(5){animation-delay:.34s}
.ix-info-pill:hover{transform:translateY(-3px);border-color:rgba(161,92,255,.40);box-shadow:0 8px 22px rgba(161,92,255,.16)}
.ix-info-icon{width:40px;height:40px;border-radius:10px;background:linear-gradient(135deg,rgba(255,122,26,.2),rgba(255,122,26,.05));border:1px solid rgba(255,122,26,.35);display:flex;align-items:center;justify-content:center;color:var(--ix-orange);flex-shrink:0;transition:transform .25s ease}
.ix-info-pill:hover .ix-info-icon{transform:rotate(-6deg) scale(1.05)}
.ix-info-icon svg{width:22px;height:22px}
.ix-info-title{font-family:var(--ix-display);font-size:clamp(12px,.78vw,15px);font-weight:700;color:#fff;letter-spacing:.08em;text-transform:uppercase;line-height:1.25;overflow-wrap:anywhere}
.ix-info-sub{font-size:clamp(12px,.72vw,14px);color:var(--ix-muted);line-height:1.45}
.ix-info-value{font-family:var(--ix-display);font-size:clamp(16px,1.1vw,22px);font-weight:600;color:#fff;letter-spacing:.02em;margin-top:2px}

/* ──────────── SECTION SCAFFOLD ──────────── */
.ix-section{padding:clamp(14px,1.6vw,22px) 0;position:relative}
.ix-section-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;margin-bottom:clamp(14px,1.6vw,20px)}
.ix-section-tag{
  display:block;color:var(--ix-orange);font-family:var(--ix-display);
  font-size:clamp(12px,.78vw,15px);font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  margin-bottom:6px;
}
.ix-section-tag::before{
  content:"";display:inline-block;width:6px;height:6px;border-radius:50%;
  background:var(--ix-grad);box-shadow:0 0 6px rgba(161,92,255,.5);
  margin-right:8px;vertical-align:1px;
  animation:ix-pulse 2.4s ease-in-out infinite;
}
.ix-section-title{
  position:relative;display:inline-block;padding-right:14px;
  font-family:var(--ix-display);font-weight:700;
  font-size:clamp(18px,1.5vw,30px);color:#fff;letter-spacing:.06em;text-transform:uppercase;line-height:1;margin:0;
}
.ix-section-title::after{
  content:"";position:absolute;left:0;bottom:-8px;width:50px;height:2px;
  background:var(--ix-grad);
}
.ix-section-title .ix-accent{color:var(--ix-orange)}
.ix-link-arrow{
  display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:6px;
  font-family:var(--ix-display);font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  background:var(--ix-grad);-webkit-background-clip:text;background-clip:text;color:transparent;
  transition:gap .18s ease,background-color .18s ease;
}
.ix-link-arrow::after{content:"›";font-size:18px;line-height:1;color:var(--ix-magenta);-webkit-text-fill-color:initial}
.ix-link-arrow:hover{gap:10px}

/* ──────────── PANEL / CARD ──────────── */
.ix-panel,.ix-card{
  position:relative;overflow:hidden;
  padding:clamp(18px,2vw,26px);border-radius:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.024),rgba(255,255,255,.005));
  border:1px solid var(--ix-line);
  transition:border-color .25s ease,box-shadow .25s ease;
}
.ix-card{padding:clamp(18px,1.8vw,24px);border-radius:14px;display:flex;flex-direction:column}
.ix-panel::before,.ix-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent 0,rgba(255,122,26,.55) 25%,rgba(161,92,255,.55) 75%,transparent 100%);
  opacity:.65;
}
/* Scan line: ONLY on the big shared support panel (1 element on the whole page)
   instead of every card. Eliminates ~5 continuous compositor animations. */
.ix-panel::after{
  content:"";position:absolute;top:0;left:0;width:100%;height:1px;
  background:linear-gradient(90deg,transparent,var(--ix-purple) 50%,transparent);
  pointer-events:none;
  transform:translateX(-100%);
  animation:ix-scan 8s linear infinite;
}
.ix-panel:hover,.ix-card:hover{border-color:rgba(255,122,26,.22);box-shadow:0 12px 28px rgba(0,0,0,.35)}

/* ──────────── PROGRESS ──────────── */
.ix-progress-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.ix-progress-grid[data-cols="3"]{grid-template-columns:repeat(3,1fr)}
.ix-prog-card{
  position:relative;overflow:hidden;
  padding:18px 20px;border-radius:14px;
  background:linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.005));
  border:1px solid var(--ix-line);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
  display:flex;flex-direction:column;
}
.ix-prog-card:hover{transform:translateY(-3px);border-color:rgba(255,122,26,.30);box-shadow:0 8px 22px rgba(0,0,0,.35)}
.ix-prog-card.featured{
  background:linear-gradient(135deg,rgba(255,122,26,.10) 0%,rgba(161,92,255,.08) 100%);
  border-color:rgba(161,92,255,.35);
}
.ix-prog-label{font-family:var(--ix-display);font-size:11px;font-weight:700;letter-spacing:.16em;color:var(--ix-orange);text-transform:uppercase;margin-bottom:4px}
.ix-prog-sub{font-size:11px;color:var(--ix-muted);margin-bottom:14px}
.ix-prog-big{font-family:var(--ix-display);font-weight:700;font-size:clamp(28px,2.4vw,48px);color:#fff;letter-spacing:.02em;line-height:1.1;margin-bottom:8px}
.ix-prog-hint{font-size:11px;color:var(--ix-muted);line-height:1.55;margin-top:0;padding-top:10px}

/* Compact completed state for daily / weekly / monthly progress */
.ix-prog-label{
  display:flex;
  align-items:center;
  gap:7px;
}

.ix-prog-label.is-qualified::after{
  content:"✓";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  border-radius:50%;
  color:#091009;
  background:#67f36d;
  box-shadow:0 0 9px rgba(38,226,31,.30);
  font-family:var(--ix-body);
  font-size:10px;
  font-weight:900;
  letter-spacing:0;
}

.ix-prog-label.is-pending::after{
  content:"⏳";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  font-family:var(--ix-body);
  font-size:13px;
  line-height:1;
  letter-spacing:0;
  filter:drop-shadow(0 0 5px rgba(255,177,74,.22));
}

.ix-prog-hint-pending{
  padding-top:8px;
}

.ix-prog-hint-complete{
  padding-top:8px;
}

.ix-prog-card:not([data-card="available"]) .ix-prog-hint{
  min-height:96px;
}

.ix-eligibility-copy{
  display:flex;
  flex-direction:column;
  gap:6px;
  width:100%;
}

.ix-eligibility-line{
  display:flex;
  align-items:flex-start;
  gap:7px;
  color:#d7d9e0;
  font-size:10.5px;
  line-height:1.42;
}

.ix-eligibility-line strong{
  color:#fff;
  font-weight:700;
}

.ix-eligibility-line-icon{
  flex:0 0 auto;
  width:14px;
  text-align:center;
  font-weight:900;
  line-height:1.42;
}

.ix-eligibility-line-icon.is-valid{
  color:#67f36d;
}

.ix-eligibility-line-icon.is-draw{
  color:var(--ix-orange);
  font-size:9px;
  transform:translateY(1px);
}

.ix-eligibility-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  min-height:34px;
  margin-top:2px;
  padding:8px 12px;
  border:1px solid rgba(255,122,26,.42);
  border-radius:8px;
  font-family:var(--ix-display);
  font-size:10px;
  font-weight:700;
  letter-spacing:.09em;
  line-height:1;
  text-transform:uppercase;
  color:#fff!important;
  background:linear-gradient(120deg,var(--ix-orange) 0%,var(--ix-magenta) 100%);
  box-shadow:0 5px 14px rgba(255,122,26,.18),0 4px 14px rgba(161,92,255,.14);
  text-decoration:none!important;
  transition:transform .16s ease,box-shadow .16s ease,filter .16s ease;
}

.ix-eligibility-btn-arrow{
  font-size:15px;
  line-height:1;
  transition:transform .16s ease;
}

.ix-eligibility-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.08);
  box-shadow:0 8px 18px rgba(255,122,26,.27),0 7px 18px rgba(161,92,255,.22);
}

.ix-eligibility-btn:hover .ix-eligibility-btn-arrow{
  transform:translateX(3px);
}

.ix-eligibility-btn:focus-visible{
  outline:2px solid rgba(197,107,255,.85);
  outline-offset:2px;
}

.ix-participants-btn{
  background:linear-gradient(
    120deg,
    rgba(255,122,26,.16),
    rgba(161,92,255,.18)
  );
  border-color:rgba(197,107,255,.34);
  box-shadow:none;
}

.ix-participants-btn:hover{
  background:linear-gradient(
    120deg,
    rgba(255,122,26,.28),
    rgba(161,92,255,.30)
  );
  box-shadow:0 6px 15px rgba(161,92,255,.16);
}

.ix-prog-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.ix-prog-row > div:first-child{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:4px;
  min-width:0;
}

.ix-prog-cur{
  font-family:var(--ix-display);
  font-weight:700;
  font-size:clamp(18px,1.7vw,26px);
  color:#fff;
  white-space:nowrap;
}

.ix-prog-goal{
  font-family:var(--ix-display);
  font-size:10px;
  color:var(--ix-muted);
  letter-spacing:.04em;
  white-space:nowrap;
}

.ix-prog-pct{
  font-family:var(--ix-display);
  font-weight:700;
  font-size:clamp(16px,1.2vw,24px);
  color:var(--ix-orange);
  white-space:nowrap;
}
.ix-prog-bar{position:relative;height:10px;border-radius:5px;background:rgba(255,255,255,.05);border:1px solid var(--ix-line);overflow:hidden;margin-bottom:12px}
.ix-prog-fill{
  position:absolute;top:0;left:0;bottom:0;
  background:linear-gradient(90deg,var(--ix-orange-3) 0%,var(--ix-orange) 50%,var(--ix-magenta) 100%);
  border-radius:4px;
  box-shadow:0 0 8px rgba(255,122,26,.35);
  transition:width 1s cubic-bezier(.2,.7,.3,1);
}
/* Shimmer only on hover, not infinite — saves continuous paint */
.ix-prog-bar:hover .ix-prog-fill::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  animation:ix-shimmer 1.8s ease-in-out;
}

.ix-btn-validate{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:38px;
  padding:10px 13px;
  border:1px solid rgba(255,122,26,.48);
  border-radius:8px;
  font-family:var(--ix-display);
  font-size:clamp(11px,.74vw,14px);
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(
    120deg,
    rgba(255,122,26,.28),
    rgba(197,107,255,.30)
  );
  box-shadow:0 5px 14px rgba(255,122,26,.13);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease;
}
.ix-btn-validate:hover:not(:disabled){
  transform:translateY(-1px);
  border-color:rgba(197,107,255,.58);
  background:linear-gradient(
    120deg,
    rgba(255,122,26,.42),
    rgba(197,107,255,.44)
  );
  box-shadow:0 7px 17px rgba(161,92,255,.20);
}
.ix-btn-validate:disabled{opacity:.45;cursor:not-allowed;background:linear-gradient(135deg,#444,#222);box-shadow:none}

/* ──────────── TWO-COL ──────────── */
.ix-two-col{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:14px;align-items:stretch}

/* ── HOW IT WORKS ── */
.ix-steps-intro{
  max-width:780px;
  margin:18px 0 0;
  color:#c4c7cf;
  line-height:1.65;
}

.ix-steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  margin-top:30px;
  padding:0 4px;
}

.ix-steps::before{
  content:"";
  position:absolute;
  top:48px;
  left:12.5%;
  right:12.5%;
  height:2px;
  background:linear-gradient(90deg,var(--ix-orange),var(--ix-magenta));
  opacity:.45;
}

.ix-step{
  position:relative;
  min-width:0;
  text-align:center;
}

.ix-step-marker{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.ix-step-num{
  margin-bottom:7px;
  font-family:var(--ix-display);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  color:var(--ix-orange);
}

.ix-step-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ix-orange);
  background:#17121d;
  border:1px solid rgba(255,122,26,.5);
  box-shadow:0 0 0 7px #111018,0 8px 22px rgba(0,0,0,.28);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.ix-step:hover .ix-step-icon{
  transform:translateY(-3px);
  border-color:rgba(197,107,255,.75);
  box-shadow:0 0 0 7px #111018,0 10px 26px rgba(161,92,255,.24);
}

.ix-step-icon svg{width:25px;height:25px}

.ix-step-body{padding-top:16px}

.ix-step-title{
  font-family:var(--ix-display);
  font-weight:700;
  font-size:clamp(13px,.88vw,16px);
  color:#fff;
  letter-spacing:.05em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.ix-step-text{
  max-width:170px;
  margin:0 auto;
  font-size:clamp(12px,.76vw,14px);
  color:var(--ix-muted);
  line-height:1.5;
}

.ix-support-box{
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.07);
}

.ix-support-title{
  margin-bottom:12px;
  text-align:center;
  font-family:var(--ix-display);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  color:var(--ix-muted);
}

/* ── RECENT WINNERS ── */
.ix-winners-head{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:6px}
.ix-winners-list{display:flex;flex-direction:column;gap:10px;margin-top:14px;flex:1}
.ix-winner{
  position:relative;display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:10px;
  background:rgba(255,255,255,.02);border:1px solid var(--ix-line);
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.ix-winner::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--ix-orange);
  transform:scaleY(0);transform-origin:center;transition:transform .22s ease;
  border-radius:0 3px 3px 0;
}
.ix-winner:hover{transform:translateX(3px);border-color:rgba(255,122,26,.4);background:rgba(255,122,26,.04)}
.ix-winner:hover::before{transform:scaleY(1)}
.ix-winner-avatar{width:40px;height:40px;border-radius:8px;background:linear-gradient(135deg,#22252e,#15171c);overflow:hidden;flex-shrink:0;border:1px solid var(--ix-line)}
.ix-winner-avatar img{width:100%;height:100%;object-fit:cover}
.ix-winner-body{flex:1;min-width:0}
.ix-winner-name{font-family:var(--ix-display);font-weight:700;font-size:clamp(12px,.85vw,15px);color:#fff;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ix-winner-won{font-family:var(--ix-display);font-size:clamp(11px,.75vw,14px);font-weight:700;color:var(--ix-orange);letter-spacing:.08em;text-transform:uppercase;margin-right:6px}
.ix-winner-item{font-size:clamp(11px,.75vw,14px);color:#cfd1d8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ix-winner-price{font-size:clamp(11px,.75vw,14px);color:#cfd1d8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ix-winner-date{font-size:clamp(11px,.7vw,13px);color:var(--ix-muted-2);margin-top:2px}
.ix-empty{padding:20px;text-align:center;color:var(--ix-muted);font-size:12px}

/* ── SERVER PANEL ── */
.ix-srv-ip{color:var(--ix-muted);font-family:'Courier New',monospace;font-size:12px}
.ix-srv-ip .ix-vpn{color:var(--ix-cyan);margin-left:6px;font-weight:600;font-family:var(--ix-display);font-size:10px;letter-spacing:.1em}
.ix-live{display:inline-flex;align-items:center;gap:6px;padding:5px 11px;border-radius:9999px;background:rgba(38,226,31,.10);border:1px solid rgba(38,226,31,.4);color:var(--ix-green);font-family:var(--ix-display);font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase}
.ix-live .ix-dot{width:6px;height:6px;border-radius:50%;background:var(--ix-green);box-shadow:0 0 6px var(--ix-green);animation:ix-pulse 2.4s ease-in-out infinite}
.ix-live.off{background:rgba(239,68,68,.1);border-color:rgba(239,68,68,.4);color:var(--ix-red)}
.ix-live.off .ix-dot{background:var(--ix-red);box-shadow:0 0 6px var(--ix-red)}

.ix-server-list{display:flex;flex-direction:column;gap:10px}
.ix-server-loading,.ix-server-empty{padding:18px;text-align:center;color:var(--ix-muted);border:1px solid var(--ix-line);border-radius:10px;background:rgba(0,0,0,.2)}
.ix-server-item{overflow:hidden;border:1px solid var(--ix-line);border-radius:11px;background:rgba(0,0,0,.22);transition:border-color .2s ease,background .2s ease}
.ix-server-item:hover,.ix-server-item.is-open{border-color:rgba(255,122,26,.38);background:rgba(255,122,26,.035)}
.ix-server-summary{display:grid!important;grid-template-columns:auto minmax(0,1fr) auto auto;align-items:center;gap:12px;width:100%;padding:14px 15px!important;text-align:left}
.ix-server-status-dot{width:8px;height:8px;border-radius:50%;background:var(--ix-green);box-shadow:0 0 7px var(--ix-green)}
.ix-server-item.is-offline .ix-server-status-dot{background:var(--ix-red);box-shadow:0 0 7px var(--ix-red)}
.ix-server-summary-name{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-family:var(--ix-display);font-size:clamp(12px,.84vw,15px);font-weight:700;color:#fff;letter-spacing:.055em;text-transform:uppercase}
.ix-server-summary-players{font-family:var(--ix-display);font-size:clamp(15px,1vw,19px);font-weight:700;color:#fff;white-space:nowrap}
.ix-server-summary-players .ix-unit{font-size:.7em;color:var(--ix-orange);margin-left:3px}
.ix-server-chevron{width:18px;height:18px;color:var(--ix-muted);transition:transform .2s ease,color .2s ease}
.ix-server-item.is-open .ix-server-chevron{transform:rotate(180deg);color:var(--ix-orange)}
.ix-server-details{padding:0 14px 14px;border-top:1px solid var(--ix-line)}
.ix-server-details[hidden]{display:none}
.ix-server-details .ix-srv-ip{padding:12px 0}
.ix-srv-map-value{font-size:clamp(13px,1vw,18px);overflow-wrap:anywhere;line-height:1.25}
.ix-launch.is-disabled{opacity:.5;cursor:not-allowed;pointer-events:none;filter:saturate(.35)}
.ix-srv-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:16px}
.ix-srv-stat{position:relative;padding:14px;border-radius:10px;background:rgba(0,0,0,.30);border:1px solid var(--ix-line);transition:border-color .2s ease}
.ix-srv-stat:hover{border-color:rgba(255,122,26,.35)}
.ix-srv-stat-label{font-family:var(--ix-display);font-size:10px;color:var(--ix-muted);letter-spacing:.14em;text-transform:uppercase;margin-bottom:6px}
.ix-srv-stat-val{font-family:var(--ix-display);font-weight:700;font-size:clamp(20px,1.45vw,30px);color:#fff;letter-spacing:.02em}
.ix-srv-stat-val .ix-unit{font-size:.55em;color:var(--ix-orange);margin-left:4px}

.ix-launch{
  display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:16px;
  font-family:var(--ix-display);font-size:clamp(12px,.78vw,15px);font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#fff;
  background:linear-gradient(135deg,var(--ix-orange),var(--ix-orange-3));
  border-radius:10px;
  box-shadow:0 8px 22px rgba(255,122,26,.32),0 0 0 1px rgba(161,92,255,.18);
  transition:transform .18s ease,box-shadow .22s ease;
}
.ix-launch:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(255,122,26,.5),0 0 0 1px rgba(161,92,255,.3)}
.ix-launch svg{width:16px;height:16px}

.ix-report{margin-top:12px;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px 14px;border-radius:10px;background:rgba(255,255,255,.02);border:1px solid var(--ix-line);font-size:11.5px;color:var(--ix-muted)}
.ix-report-btn{padding:7px 13px;font-family:var(--ix-display);font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;border-radius:6px;color:var(--ix-orange);border:1px solid rgba(255,122,26,.5);background:rgba(255,122,26,.05);transition:background .18s ease,border-color .18s ease;white-space:nowrap}
.ix-report-btn:hover{background:rgba(255,122,26,.15);border-color:var(--ix-orange)}

/* ── CURRENT DROPS ── */
.ix-drops-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:14px;
  flex:1;
  align-items:stretch;
}

.ix-drops-grid[data-cols="2"]{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.ix-drop{
  position:relative;
  isolation:isolate;
  overflow:hidden;

  display:flex;
  flex-direction:column;

  min-width:0;
  height:100%;

  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.025),
      rgba(255,255,255,.006)
    );

  box-shadow:
    0 10px 24px rgba(0,0,0,.26);

  transition:
    border-color .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

.ix-drop:hover{
  filter:brightness(1.04);
}

.ix-drop::before{
  content:"";
  position:absolute;
  inset:-45%;
  z-index:-2;
  pointer-events:none;
  opacity:.42;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.12),
      transparent 68%
    );
}

.ix-drop::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.22;

  transform:translateX(-100%);

  background:
    linear-gradient(
      120deg,
      transparent 24%,
      rgba(255,255,255,.10) 50%,
      transparent 76%
    );

  transition:
    transform .65s ease,
    opacity .3s ease;
}

.ix-drop:hover::after{
  transform:translateX(100%);
  opacity:.55;
}

.ix-drop-head{
  padding:10px 12px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.ix-drop-type{
  display:block;

  font-family:var(--ix-display);
  font-size:10px;
  font-weight:700;
  letter-spacing:.10em;
  text-transform:uppercase;

  color:#fff;
}

.ix-drop-max{
  display:block;
  margin-top:2px;

  font-family:var(--ix-display);
  font-size:10px;
  font-weight:700;
  letter-spacing:.05em;

  color:var(--ix-orange);
}

.ix-drop-body{
  position:relative;

  display:flex;
  flex:1;
  flex-direction:column;

  height:100%;

  padding:12px;
  text-align:center;
}

.ix-drop-showcase{
  display:flex;
  flex-direction:column;

  height:230px;
  min-height:230px;

  padding:12px 10px 10px;

  border:1px solid rgba(255,255,255,.10);
  border-radius:11px;

  background:
    linear-gradient(
      180deg,
      rgba(7,10,16,.68),
      rgba(13,17,25,.44)
    );

  box-shadow:
    inset 0 0 24px rgba(0,0,0,.25),
    0 8px 18px rgba(0,0,0,.18);

  transition:
    border-color .22s ease,
    box-shadow .22s ease;
}

.ix-drop-name{
  width:100%;
  height:62px;
  min-height:62px;

  display:flex;
  align-items:flex-start;
  justify-content:center;

  margin:0 0 8px;
  padding:0 5px;

  font-family:var(--ix-display);
  font-weight:700;
  font-size:clamp(12px,.82vw,15px);
  line-height:1.28;
  text-align:center;

  color:#fff;

  overflow:hidden;
  overflow-wrap:anywhere;

  text-shadow:
    0 2px 8px rgba(0,0,0,.55);
}

.ix-drop-img{
  width:100%;
  height:148px;
  min-height:148px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin:0;
  overflow:hidden;
}

.ix-drop-img img{
  display:block;

  width:auto;
  max-width:95%;

  height:auto;
  max-height:128px;

  object-fit:contain;
  object-position:center;

  image-rendering:auto;

  animation:
    ix-drop-image-float
    3.4s
    ease-in-out
    infinite;

  filter:
    drop-shadow(
      0 8px 14px
      rgba(0,0,0,.42)
    );

  transition:
    transform .24s ease,
    filter .24s ease;
}

.ix-drop:nth-child(2n) .ix-drop-img img{
  animation-delay:-.8s;
}

.ix-drop:nth-child(3n) .ix-drop-img img{
  animation-delay:-1.6s;
}

.ix-drop:hover .ix-drop-img img{
  animation-play-state:paused;

  transform:scale(1.055);

  filter:
    drop-shadow(
      0 12px 20px
      rgba(0,0,0,.55)
    );
}

.ix-drop-img-placeholder{
  color:var(--ix-orange);

  font-family:var(--ix-display);
  font-size:13px;
  letter-spacing:.07em;

  opacity:.55;
}

.ix-drop-foot{
  margin-top:auto;

  padding:14px 4px 4px;

  display:flex;
  flex-direction:column;
  gap:10px;
}

.ix-drop-price{
  font-family:var(--ix-display);
  font-weight:800;
  font-size:clamp(16px,1.12vw,21px);

  color:#ffd166;

  text-shadow:
    0 2px 8px rgba(0,0,0,.5);
}

.ix-drop-reset{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;

  width:100%;
  min-height:52px;

  padding:8px 10px;

  border-radius:8px;

  font-family:var(--ix-display);
  text-align:center;

  color:#fff;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.085),
      rgba(255,255,255,.045)
    );

  border:
    1px solid rgba(255,255,255,.13);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 4px 12px rgba(0,0,0,.18);

  text-shadow:
    0 1px 5px rgba(0,0,0,.65);
}

.ix-drop-reset-date{
  display:block;
  font-size:clamp(11px,.76vw,13px);
  font-weight:800;
  line-height:1.15;
  letter-spacing:.03em;
  color:#fff;
}

.ix-drop-reset-time{
  display:block;
  font-size:clamp(10px,.68vw,12px);
  font-weight:700;
  line-height:1.15;
  letter-spacing:.05em;
  color:var(--ix-orange);
}

/* Common */
.ix-tier-common{
  background:
    linear-gradient(
      180deg,
      rgba(101,106,116,.32),
      rgba(36,39,46,.74)
    );

  border-color:
    rgba(174,181,193,.32);

  box-shadow:
    0 12px 28px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.ix-tier-common .ix-drop-showcase{
  border-color:rgba(190,196,207,.34);
}

.ix-tier-common:hover{
  border-color:#9ca3af;

  box-shadow:
    0 15px 32px rgba(0,0,0,.38),
    0 0 20px rgba(156,163,175,.26);
}

/* Rare */
.ix-tier-rare{
  background:
    linear-gradient(
      145deg,
      rgba(37,99,235,.42),
      rgba(23,37,84,.76)
    );

  border-color:
    rgba(96,165,250,.48);

  box-shadow:
    0 12px 30px rgba(37,99,235,.24),
    inset 0 1px 0 rgba(147,197,253,.08);
}

.ix-tier-rare .ix-drop-showcase{
  border-color:rgba(96,165,250,.52);
}

.ix-tier-rare:hover{
  border-color:#60a5fa;

  box-shadow:
    0 16px 34px rgba(0,0,0,.32),
    0 0 28px rgba(59,130,246,.46);
}

/* Jackpot */
.ix-tier-jackpot{
  background:
    linear-gradient(
      135deg,
      rgba(220,38,38,.44),
      rgba(168,85,247,.36),
      rgba(88,28,135,.76)
    );

  border-color:
    rgba(244,114,182,.55);

  box-shadow:
    0 14px 36px rgba(168,85,247,.30),
    inset 0 1px 0 rgba(253,164,175,.10);
}

.ix-tier-jackpot .ix-drop-showcase{
  border-color:rgba(244,114,182,.62);
}

.ix-tier-jackpot:hover{
  border-color:#f472b6;

  box-shadow:
    0 18px 38px rgba(0,0,0,.34),
    0 0 32px rgba(236,72,153,.52),
    0 0 46px rgba(168,85,247,.26);
}

@keyframes ix-drop-image-float{
  0%,
  100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-6px);
  }
}


/* ──────────── SUPPORT ──────────── */
.ix-support-panel{padding:clamp(20px,2.2vw,28px)}
.ix-support{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:14px}
.ix-supp{
  position:relative;overflow:hidden;
  padding:22px 20px;border-radius:14px;
  background:linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.005));
  border:1px solid var(--ix-line);text-align:left;
  display:flex;flex-direction:column;gap:12px;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.ix-supp:hover{transform:translateY(-4px);box-shadow:0 12px 26px rgba(0,0,0,.35)}
.ix-supp-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform .25s ease}
.ix-supp:hover .ix-supp-icon{transform:rotate(-6deg) scale(1.06)}
.ix-supp-icon svg{width:24px;height:24px}
.ix-supp-title{font-family:var(--ix-display);font-weight:700;font-size:clamp(14px,.95vw,18px);color:#fff;letter-spacing:.06em;text-transform:uppercase}
.ix-supp-text{font-size:clamp(12px,.8vw,15px);color:var(--ix-muted);line-height:1.6;flex:1}
.ix-supp-btn{
  margin-top:auto;display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;
  border-radius:8px;font-family:var(--ix-display);font-size:clamp(12px,.78vw,15px);font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#fff;
  transition:transform .18s ease,box-shadow .18s ease;
}
.ix-supp-btn:hover{transform:translateY(-2px)}

.ix-supp[data-tone="donate"]{color:#ff5a5a}
.ix-supp[data-tone="donate"]:hover{border-color:rgba(239,68,68,.5);box-shadow:0 12px 26px rgba(255,122,26,.18)}
.ix-supp[data-tone="donate"] .ix-supp-icon{background:linear-gradient(135deg,rgba(239,68,68,.22),rgba(239,68,68,.05));border:1px solid rgba(239,68,68,.4);color:#ff5a5a}
.ix-supp[data-tone="donate"] .ix-supp-btn{background:linear-gradient(120deg,var(--ix-orange) 0%,var(--ix-magenta) 60%,var(--ix-purple) 100%);box-shadow:0 4px 12px rgba(255,122,26,.36)}

.ix-supp[data-tone="slot"]{color:#ffc27a}
.ix-supp[data-tone="slot"]:hover{border-color:rgba(255,176,32,.55);box-shadow:0 12px 26px rgba(255,176,32,.22)}
.ix-supp[data-tone="slot"] .ix-supp-icon{background:linear-gradient(135deg,rgba(255,176,32,.22),rgba(255,176,32,.05));border:1px solid rgba(255,176,32,.4);color:#ffc27a}
.ix-supp[data-tone="slot"] .ix-supp-btn{background:linear-gradient(135deg,#ffb020,#ff7a1a);box-shadow:0 4px 12px rgba(255,176,32,.36)}

.ix-supp[data-tone="auto"]{color:#b98cff}
.ix-supp[data-tone="auto"]:hover{border-color:rgba(161,92,255,.55);box-shadow:0 12px 26px rgba(161,92,255,.22)}
.ix-supp[data-tone="auto"] .ix-supp-icon{background:linear-gradient(135deg,rgba(161,92,255,.22),rgba(161,92,255,.05));border:1px solid rgba(161,92,255,.4);color:#b98cff}
.ix-supp[data-tone="auto"] .ix-supp-btn{background:linear-gradient(135deg,#a15cff,#7a3fd6);box-shadow:0 4px 12px rgba(161,92,255,.36)}

.ix-supp[data-tone="discord"]{color:#8a96ff}
.ix-supp[data-tone="discord"]:hover{border-color:rgba(88,101,242,.6);box-shadow:0 12px 26px rgba(88,101,242,.25)}
.ix-supp[data-tone="discord"] .ix-supp-icon{background:linear-gradient(135deg,rgba(88,101,242,.25),rgba(88,101,242,.05));border:1px solid rgba(88,101,242,.4);color:#8a96ff}
.ix-supp[data-tone="discord"] .ix-supp-btn{background:linear-gradient(135deg,#5865f2,#4654d8);box-shadow:0 4px 12px rgba(88,101,242,.36)}

/* "Help our community" buttons inside steps card */
.ix-support-buttons{display:flex;justify-content:center;gap:15px;flex-wrap:wrap}
.ix-support-buttons .ix-supp-btn{
  width:220px;padding:14px 20px;text-align:center;border-radius:12px;
  background:linear-gradient(135deg,#ff7a1a 0%,#ff6a3d 40%,#a15cff 100%);
  box-shadow:0 4px 14px rgba(161,92,255,.28);
}
.ix-support-buttons .ix-supp-btn:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(255,140,0,.32)}

/* ──────────── FOOTER ──────────── */
.ix-footer{
  margin-top:auto;
  background:#0a0a0e;
  border-top:1px solid rgba(255,255,255,.06);
  padding:clamp(28px,3vw,48px) 0 0;
  position:relative;z-index:2;
}
.ix-footer-grid{display:grid;grid-template-columns:minmax(220px,1.4fr) 1fr 1fr 1.2fr;gap:36px;padding-bottom:30px}
.ix-foot-brand p{color:var(--ix-muted);font-size:clamp(13px,.8vw,15px);line-height:1.7;margin:10px 0 14px;max-width:260px}
.ix-socials{display:flex;gap:8px}
.ix-soc{
  display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:8px;
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);color:#9498a2;
  transition:transform .18s ease,color .18s ease,border-color .18s ease,background .18s ease;
}
.ix-soc:hover{color:#fff;border-color:rgba(255,255,255,.25);background:rgba(255,255,255,.06);transform:translateY(-2px)}
.ix-soc svg{width:16px;height:16px}
.ix-foot-col h4{font-family:var(--ix-display);font-weight:700;font-size:clamp(13px,.85vw,16px);letter-spacing:.1em;color:#fff;text-transform:uppercase;margin:0 0 14px}
.ix-foot-col a,.ix-foot-col p{display:block;color:#9498a2;font-size:clamp(13px,.8vw,15px);line-height:1.75;margin:0;transition:color .15s ease}
.ix-foot-col a:hover{color:#fff}
.ix-foot-col .ix-online{color:#5ee260;font-weight:700}
.ix-foot-col .ix-online.off{color:#ff7a7a}
.ix-footer-bottom{border-top:1px solid rgba(255,255,255,.05);padding:18px 0;text-align:center;font-size:clamp(12px,.72vw,14px);color:var(--ix-muted-2);letter-spacing:.06em}

/* ──────────── TICKER ──────────── */
.ix-ticker-wrap{position:relative;padding:14px 0 0}
.ix-ticker-wrap.ix-ticker--hide,.ix-ticker--empty{display:none!important}
.ix-ticker{
  position:relative;overflow:hidden;width:100%;
  border-block:1px solid rgba(255,255,255,.05);
  background:linear-gradient(180deg,rgba(255,122,26,.025),rgba(255,122,26,0) 60%),rgba(10,10,14,.6);
}
.ix-ticker-edge{position:absolute;top:0;bottom:0;width:clamp(60px,8vw,160px);z-index:2;pointer-events:none}
.ix-ticker-edge--l{left:0;background:linear-gradient(90deg,#06060a 5%,rgba(6,6,10,0) 100%)}
.ix-ticker-edge--r{right:0;background:linear-gradient(-90deg,#06060a 5%,rgba(6,6,10,0) 100%)}
.ix-ticker-track{display:flex;align-items:center;gap:0;width:max-content;animation:ix-ticker-scroll 40s linear infinite}
.ix-ticker:hover .ix-ticker-track{animation-play-state:paused}

.ix-tick{
  display:inline-flex;align-items:center;gap:12px;padding:12px 22px;
  border-right:1px solid rgba(255,255,255,.04);color:#c8ccd6;white-space:nowrap;
  font-family:var(--ix-body);font-size:clamp(12px,.78vw,14px);
  transition:background .18s ease,color .18s ease;
}
.ix-tick:hover{background:rgba(255,122,26,.06);color:#fff}
.ix-tick-dot{
  width:7px;height:7px;border-radius:50%;background:var(--ix-orange);
  box-shadow:0 0 6px rgba(255,122,26,.55);flex-shrink:0;
  animation:ix-pulse 2.2s ease-in-out infinite;
}
.ix-tick-avatar{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.05);overflow:hidden;display:inline-grid;place-items:center;border:1px solid rgba(255,255,255,.08);flex-shrink:0}
.ix-tick-avatar img{width:100%;height:100%;object-fit:cover}
.ix-tick-text{display:inline-flex;align-items:baseline;gap:6px;font-weight:500}
.ix-tick-name{font-family:var(--ix-display);font-weight:700;letter-spacing:.03em;color:#fff}
.ix-tick-won{color:#8a8d96;font-size:.9em;letter-spacing:.05em;text-transform:uppercase}
.ix-tick-item{color:#ff8a3c;font-weight:600;letter-spacing:.02em}
.ix-tick-date{color:var(--ix-muted-2);font-size:.85em;margin-left:4px;font-variant-numeric:tabular-nums}

/* Winner value shown in the live ticker */
.ix-tick-price{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
  margin-left:6px;
  padding:2px 7px;
  border-radius:999px;
  font-family:var(--ix-display);
  font-size:clamp(10px,.68vw,12px);
  font-weight:700;
  line-height:1.2;
  color:#ffd166;
  background:rgba(255,209,102,.11);
  border:1px solid rgba(255,209,102,.24);
  white-space:nowrap;
}

/* Keep the useful live ticker moving even in light/performance mode. */
body.ix-lite .ix-ticker-track,
body.cx-lite .ix-ticker-track,
body.ix-paused .ix-ticker-track{
  animation-name:ix-ticker-scroll !important;
  animation-play-state:running !important;
}

/* Mobile ticker: keep text readable without overflowing the screen. */
@media (max-width:600px){
  .ix-tick{
    padding:10px 13px;
    gap:7px;
  }

  .ix-tick-text{
    gap:5px;
  }

  .ix-tick-name,
  .ix-tick-item{
    max-width:145px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .ix-tick-price{
    margin-left:3px;
    padding:2px 6px;
    font-size:10px;
  }
}


/* ──────────── CELEBRATION ──────────── */
.ix-hero.ix-celebrate::after{
  content:"";position:absolute;inset:0;pointer-events:none;z-index:3;
  background:
    radial-gradient(circle at 50% 40%,rgba(255,122,26,.20),rgba(255,122,26,0) 55%),
    radial-gradient(circle at 50% 40%,rgba(255,140,40,.10),rgba(255,140,40,0) 70%);
  animation:ix-celebrate-flash 2.4s ease-out forwards;
}
.ix-win-toast{
  position:fixed;bottom:24px;right:24px;z-index:9999;
  display:flex;align-items:center;gap:12px;
  min-width:280px;max-width:360px;padding:12px 16px;
  background:linear-gradient(135deg,rgba(20,12,8,.96),rgba(10,10,14,.96));
  border:1px solid rgba(255,122,26,.35);border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.55),0 0 18px rgba(255,122,26,.18);
  opacity:0;transform:translateY(20px) scale(.96);
  transition:opacity .3s ease,transform .3s cubic-bezier(.22,1,.36,1);
  pointer-events:none;font-family:var(--ix-body);
}
.ix-win-toast--show{opacity:1;transform:translateY(0) scale(1)}
.ix-win-toast-dot{width:10px;height:10px;border-radius:50%;background:var(--ix-orange);box-shadow:0 0 10px rgba(255,122,26,.7);flex-shrink:0;animation:ix-pulse 1.8s ease-in-out infinite}
.ix-win-toast-body{display:flex;flex-direction:column;gap:2px;min-width:0}
.ix-win-toast-title{font-family:var(--ix-display);font-size:11px;font-weight:700;letter-spacing:.18em;color:#ff8a3c;text-transform:uppercase}
.ix-win-toast-msg{font-size:14px;color:#d8dce6;line-height:1.4}
.ix-win-toast-msg strong{color:#fff;font-family:var(--ix-display);font-weight:700;letter-spacing:.02em}
.ix-win-toast-item{color:#ff8a3c;font-weight:600}

/* ──────────── ANIMATIONS ──────────── */
@keyframes ix-rise{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
@keyframes ix-pulse{0%,100%{opacity:1}50%{opacity:.55}}
@keyframes ix-shimmer{0%{transform:translateX(-120%)}100%{transform:translateX(220%)}}
/* transform-only scan: compositor-only, no layout/paint */
@keyframes ix-scan{0%{transform:translateX(-100%)}60%,100%{transform:translateX(120%)}}
@keyframes ix-ticker-scroll{0%{transform:translate3d(0,0,0)}100%{transform:translate3d(-50%,0,0)}}
@keyframes ix-celebrate-flash{
  0%{opacity:0;transform:scale(.97)}
  18%{opacity:1;transform:scale(1)}
  100%{opacity:0;transform:scale(1.03)}
}

/* ──────────── HEADER PERFORMANCE TOGGLE ──────────── */
.ix-perf-toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:9999px;
  font-family:var(--ix-display);
  font-size:clamp(11px,.72vw,13px);
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ix-muted);
  background:rgba(255,255,255,.04);
  border:1px solid var(--ix-line);
  cursor:pointer;
  transition:color .15s ease,background .15s ease,border-color .15s ease,box-shadow .2s ease;
  white-space:nowrap;
}
.ix-perf-toggle svg{width:14px;height:14px;flex-shrink:0}
.ix-perf-toggle:hover{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.15);
}
.ix-perf-toggle[aria-pressed="true"]{
  color:#fff;
  background:linear-gradient(120deg,var(--ix-orange) 0%,var(--ix-magenta) 100%);
  border-color:rgba(255,122,26,.5);
  box-shadow:0 0 12px rgba(255,122,26,.30),0 0 14px rgba(161,92,255,.18);
}
.ix-perf-toggle[aria-pressed="true"]:hover{
  box-shadow:0 0 16px rgba(255,122,26,.45),0 0 18px rgba(161,92,255,.30);
}
.ix-perf-toggle:focus-visible{outline:2px solid var(--ix-orange);outline-offset:2px}

/* On narrower laptops, drop the text label and keep only the icon (compact) */
@media (max-width:1180px){
  .ix-perf-toggle-text{display:none}
  .ix-perf-toggle{padding:8px 10px;gap:0}
}

/* ──────────── GLOBAL DOT FIX ──────────── */
/* All status dots: keep them perfectly round even when their flex parent
   tries to shrink them. (This was squashing the green "Players Online" dot.) */
.ix-dot{
  flex-shrink:0;
  aspect-ratio:1;
  border-radius:50%;
  line-height:0;
}

.ix-players-pill-text{
  white-space:nowrap;
  font-size:clamp(11px,.72vw,13px);
}

/* ──────────── RESPONSIVE ──────────── */
/* 1366–1440 (HD+ laptops / 720p when the OS scales) — tighter gaps so content
   doesn't feel cramped, but full multi-col layout stays. */
@media (max-width:1440px){
  .ix-container{max-width:1280px}
  .ix-two-col{gap:12px}
  .ix-support{gap:12px}
}
@media (max-width:1240px){
  .ix-infobar-grid{grid-template-columns:repeat(3,1fr)}
  .ix-progress-grid,.ix-progress-grid[data-cols="3"]{grid-template-columns:repeat(2,1fr)}
  .ix-two-col{grid-template-columns:1fr}
  .ix-support{grid-template-columns:repeat(2,1fr)}
  .ix-drops-grid{grid-template-columns:repeat(3,1fr)}
  .ix-steps{grid-template-columns:repeat(2,minmax(0,1fr));gap:26px 18px}
  .ix-steps::before{display:none}
}
@media (max-width:900px){
  .ix-nav{display:none}
  .ix-players-pill{display:none}
  .ix-footer-grid{grid-template-columns:repeat(2,1fr)}
  .ix-hero{min-height:380px;padding:clamp(28px,4vw,52px) 0 clamp(24px,3vw,40px)}
}
@media (max-width:600px){
  body,body.index-page{font-size:15px}
  .ix-hero-title{font-size:clamp(36px,9vw,56px)}
  .ix-hero{min-height:320px}
  .ix-infobar-grid{grid-template-columns:1fr 1fr}
  .ix-progress-grid,.ix-progress-grid[data-cols="3"]{grid-template-columns:1fr}
  .ix-steps{grid-template-columns:1fr;gap:0;padding:0;margin-top:24px}
  .ix-steps::before{display:block;top:24px;bottom:24px;left:29px;right:auto;width:2px;height:auto;background:linear-gradient(180deg,var(--ix-orange),var(--ix-magenta))}
  .ix-step{display:grid;grid-template-columns:60px minmax(0,1fr);gap:16px;text-align:left;padding-bottom:24px}
  .ix-step:last-child{padding-bottom:0}
  .ix-step-marker{display:block}
  .ix-step-num{position:absolute;top:20px;left:-2px;transform:translateX(-100%);margin:0;font-size:9px}
  .ix-step-icon{width:58px;height:58px;box-shadow:0 0 0 6px #111018}
  .ix-step:hover .ix-step-icon{box-shadow:0 0 0 6px #111018,0 10px 24px rgba(161,92,255,.22)}
  .ix-step-body{padding-top:8px}
  .ix-step-text{max-width:none;margin:0}
  .ix-support{grid-template-columns:1fr}
  .ix-footer-grid{grid-template-columns:1fr;gap:24px}
  .ix-srv-stats{grid-template-columns:1fr}
  .ix-server-summary{grid-template-columns:auto minmax(0,1fr) auto auto;gap:9px;padding:13px 12px!important}
  .ix-server-summary-name{font-size:12px}
  .ix-server-details{padding:0 11px 11px}
  .ix-drops-grid,.ix-drops-grid[data-cols="2"]{grid-template-columns:1fr}
  .ix-tick{padding:10px 14px;gap:8px;font-size:12px}
  .ix-tick-avatar{width:22px;height:22px}
  .ix-tick-date{display:none}
  .ix-win-toast{left:12px;right:12px;bottom:12px;min-width:0;max-width:none}
}
/* Mobile / small tablet LANDSCAPE — phones in landscape are ~360–500px tall.
   Compress the hero so the title + first sub-line are visible without scroll. */
@media (max-height:500px) and (orientation:landscape){
  .ix-hero{min-height:auto;padding:18px 0 22px}
  .ix-hero-title{font-size:clamp(28px,5vw,48px);margin:0 0 10px}
  .ix-hero-sub1{font-size:14px;margin:0 0 4px}
  .ix-hero-sub2{font-size:12px;line-height:1.5}
  .ix-hero-inner{max-width:none}
  .ix-section{padding:10px 0}
  .ix-infobar{padding:14px 0 6px}
  .ix-header-inner{height:54px}
  .ix-nav{gap:18px}
  .ix-infobar-grid{grid-template-columns:repeat(5,1fr)}
  .ix-footer{padding-top:24px}
}

/* ──────────── HIGH-DPI / LARGE SCREENS ──────────── */
/* 2K (≥2560) and 4K (≥3840) — keep content from sprawling to viewport edges */
@media (min-width:2560px){
  .ix-container{max-width:2000px}
  .ix-section{padding:clamp(20px,1.4vw,30px) 0}
}
@media (min-width:3840px){
  .ix-container{max-width:2800px;padding:0 32px}
  .ix-header-inner{height:84px}
}

/* ──────────── CONTENT-VISIBILITY (huge scroll-perf win) ──────────── */
/* Tells the browser to skip rendering work for these sections while they're
   off-screen. Has zero visual effect; just saves paint/layout each scroll tick.
   Browsers that don't support it (Safari <18) simply ignore the property. */
#how-it-works,
#support,
#ix-progress-section,
.ix-section:not(.ix-hero){
  content-visibility:auto;
  contain-intrinsic-size:0 600px;
}

/* ──────────── LOW-POWER / BACKGROUND-TAB KILLSWITCHES ──────────── */
/* When body has .ix-lite (set by JS for low-end devices) OR .ix-paused
   (set when tab is hidden / ticker offscreen), stop ALL infinite animations.
   One-shot entrance animations are unaffected (they've already finished). */
body.ix-lite .ix-panel::after,
body.ix-lite .ix-tick-dot,
body.ix-lite .ix-players-pill .ix-dot,
body.ix-lite .ix-live .ix-dot,
body.ix-lite .ix-section-tag::before,
body.ix-lite .ix-win-toast-dot,
body.ix-lite .ix-drop-img img,
body.ix-paused .ix-panel::after,
body.ix-paused .ix-tick-dot,
body.ix-paused .ix-players-pill .ix-dot,
body.ix-paused .ix-live .ix-dot,
body.ix-paused .ix-section-tag::before,
body.ix-paused .ix-win-toast-dot,
body.ix-paused .ix-drop-img img{
  animation:none!important;
}

/* When the ticker scrolls offscreen, JS adds .ix-ticker--idle → pause only it */
.ix-ticker-wrap.ix-ticker--idle .ix-ticker-track{animation-play-state:running}

/* ──────────── REDUCED MOTION ──────────── */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms!important;
    animation-iteration-count:1!important;
    transition-duration:.001ms!important;
  }
  .ix-ticker-track{animation:none!important}
  .ix-hero.ix-celebrate::after,.ix-win-toast--show{animation:none!important}
}

.ix-trade-close{
    position:absolute;
    top:14px;
    right:14px;

    width:34px;
    height:34px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.06);
    color:#fff;

    cursor:pointer;
}

.ix-trade-close:hover{
    background:rgba(255,122,26,.2);
}



/* ─────────────────────────────────────────────
   Buttons of recent winners
   ───────────────────────────────────────────── */

.ix-winner-filters{
    display:inline-grid;
    grid-template-columns:repeat(4,minmax(76px,1fr));
    gap:3px;
    margin-top:18px;
    padding:4px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:11px;
    background:rgba(5,5,10,.48);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.035),
      0 8px 20px rgba(0,0,0,.20);
}

.ix-filter{
    position:relative;
    min-height:36px;
    padding:8px 14px;
    border:1px solid transparent;
    border-radius:7px;
    color:#aeb2bd;
    font-family:var(--ix-display);
    font-size:12px;
    font-weight:700;
    line-height:1;
    letter-spacing:.035em;
    white-space:nowrap;
    cursor:pointer;
    transition:
      color .18s ease,
      background .18s ease,
      border-color .18s ease,
      transform .18s ease,
      box-shadow .18s ease;
}

.ix-filter:hover:not(.active){
    color:#fff;
    background:rgba(255,255,255,.055);
    border-color:rgba(255,255,255,.08);
}

.ix-filter:active{
    transform:translateY(1px);
}

.ix-filter:focus-visible{
    outline:2px solid rgba(255,122,26,.75);
    outline-offset:2px;
}

.ix-filter.active{
    color:#fff;
    border-color:rgba(255,255,255,.12);
    background:
      linear-gradient(
        120deg,
        var(--ix-orange) 0%,
        #ee6b53 48%,
        var(--ix-purple) 100%
      );
    box-shadow:
      0 5px 14px rgba(255,122,26,.20),
      0 4px 16px rgba(161,92,255,.18),
      inset 0 1px 0 rgba(255,255,255,.20);
    text-shadow:0 1px 4px rgba(0,0,0,.34);
}

@media (max-width:560px){
    .ix-winner-filters{
        display:grid;
        width:100%;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .ix-filter{
        min-width:0;
        padding-inline:10px;
    }
}










/* ─────────────────────────────────────────────
   STEAM TRADE URL MODAL
   Matches CS2FreeForAll theme
   ───────────────────────────────────────────── */

.ix-trade-modal-backdrop{
  position:fixed;
  inset:0;
  z-index:99999;
  background:rgba(5,5,10,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.ix-trade-modal{
  position:relative;
  overflow:hidden;

  width:min(540px,92vw);

  padding:28px;
  border-radius:16px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.024),
      rgba(255,255,255,.005)
    );

  border:1px solid var(--ix-line);

  box-shadow:
    0 20px 40px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.03);

  animation:ix-rise .35s cubic-bezier(.2,.7,.3,1);
}

.ix-trade-modal::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent 0,
      rgba(255,122,26,.55) 25%,
      rgba(161,92,255,.55) 75%,
      transparent 100%
    );
}

.ix-trade-title{
  margin:0 0 10px;

  font-family:var(--ix-display);
  font-size:26px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.1;

  color:#fff;
}

.ix-trade-title span{
  color:var(--ix-orange);
}

.ix-trade-desc{
  margin-bottom:22px;

  color:var(--ix-muted);
  line-height:1.7;
  font-size:14px;
}

.ix-trade-label{
  display:block;

  margin-bottom:10px;

  font-family:var(--ix-display);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;

  color:var(--ix-orange);
}

.ix-trade-input{
  width:100%;

  padding:15px 16px;

  border-radius:10px;

  background:rgba(255,255,255,.03);

  border:1px solid var(--ix-line);

  color:#fff;

  font-size:14px;

  outline:none;

  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.ix-trade-input::placeholder{
  color:var(--ix-muted-2);
}

.ix-trade-input:focus{
  border-color:rgba(255,122,26,.5);

  background:rgba(255,122,26,.03);

  box-shadow:
    0 0 0 1px rgba(255,122,26,.25),
    0 0 15px rgba(255,122,26,.15);
}

.ix-trade-help{
  margin-top:12px;

  color:var(--ix-muted);

  font-size:13px;
  line-height:1.6;
}

.ix-trade-help a{
  color:var(--ix-orange);
  text-decoration:none;
}

.ix-trade-help a:hover{
  color:#fff;
}

.ix-trade-error{
  min-height:20px;

  margin-top:12px;

  color:var(--ix-red);

  font-size:13px;
  line-height:1.5;
}

.ix-trade-save{
  margin-top:20px;

  width:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:15px;

  border-radius:10px;

  font-family:var(--ix-display);
  font-size:14px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;

  color:#fff;

  background:
    linear-gradient(
      135deg,
      var(--ix-orange),
      var(--ix-magenta)
    );

  box-shadow:
    0 6px 18px rgba(255,122,26,.3),
    0 8px 20px rgba(161,92,255,.2);

  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.ix-trade-save:hover:not(:disabled){
  transform:translateY(-2px);

  box-shadow:
    0 10px 28px rgba(255,122,26,.45),
    0 10px 32px rgba(161,92,255,.3);
}

.ix-trade-save:disabled{
  cursor:not-allowed;
  opacity:.5;
  background:linear-gradient(135deg,#444,#222);
  box-shadow:none;
}

.ix-trade-spinner{
  width:18px;
  height:18px;

  margin-right:10px;

  border:2px solid rgba(255,255,255,.25);
  border-top-color:#fff;
  border-radius:50%;

  animation:ix-trade-spin .8s linear infinite;
}

@keyframes ix-trade-spin{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

@media (max-width: 768px) {
    .ix-winners-head {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .ix-link-arrow {
        align-self: center;
    }
}


/* ─────────────────────────────────────────────
   TABLET
   ───────────────────────────────────────────── */

@media (max-width:900px){

  .ix-trade-modal{
    width:min(520px,94vw);
    padding:24px;
  }

  .ix-trade-title{
    font-size:22px;
  }

}

/* ─────────────────────────────────────────────
   MOBILE
   ───────────────────────────────────────────── */

@media (max-width:600px){

  .ix-trade-modal-backdrop{
    padding:14px;
  }

  .ix-trade-modal{
    width:100%;
    padding:20px;
    border-radius:14px;
  }

  .ix-trade-title{
    font-size:19px;
    line-height:1.2;
  }

  .ix-trade-desc{
    font-size:13px;
    margin-bottom:18px;
  }

  .ix-trade-input{
    font-size:13px;
    padding:14px;
  }

  .ix-trade-save{
    padding:14px;
    font-size:13px;
  }

  .ix-trade-help{
    font-size:12px;
  }

}

/* ─────────────────────────────────────────────
   LANDSCAPE PHONES
   ───────────────────────────────────────────── */

@media (max-height:500px) and (orientation:landscape){

  .ix-trade-modal-backdrop{
    align-items:flex-start;
    overflow-y:auto;
    padding:20px 0;
  }

  .ix-trade-modal{
    width:min(700px,94vw);

    margin:auto;

    padding:18px 24px;
  }

  .ix-trade-title{
    font-size:18px;
    margin-bottom:6px;
  }

  .ix-trade-desc{
    margin-bottom:14px;
    font-size:13px;
  }

}

/* ─────────────────────────────────────────────
   2K MONITORS
   ───────────────────────────────────────────── */

@media (min-width:2560px){

  .ix-trade-modal{
    width:620px;
  }

  .ix-trade-title{
    font-size:30px;
  }

}

/* ─────────────────────────────────────────────
   4K MONITORS
   ───────────────────────────────────────────── */

@media (min-width:3840px){

  .ix-trade-modal{
    width:720px;
    padding:36px;
  }

  .ix-trade-title{
    font-size:34px;
  }

}

.ix-trade-help a{
    color:var(--ix-orange);
    text-decoration:none;
}

.ix-trade-help a:hover{
    text-decoration:underline;
}


.ix-trade-modal-backdrop{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;

    background:rgba(7,10,15,.88);
    backdrop-filter:blur(14px);
    z-index:9999;
}

.ix-trade-modal{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
}



/* ─────────────────────────────────────────────
   Reward history tab
   ───────────────────────────────────────────── */


/*════════════════ WINNING HISTORY ════════════════*/

.ix-winning-history-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:20px;
}

.ix-reward-card{
  position:relative;
  overflow:hidden;
  min-width:0;
  min-height:390px;
  padding:16px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:16px;
  background:
    radial-gradient(circle at 50% 35%,rgba(161,92,255,.10),transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
  display:flex;
  flex-direction:column;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.ix-reward-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--ix-orange),var(--ix-purple),transparent);
  opacity:.6;
}

.ix-reward-card:hover{
  transform:translateY(-3px);
  border-color:rgba(197,107,255,.28);
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}

.ix-reward-card--accepted{
  border-color:rgba(38,226,31,.16);
  background:
    radial-gradient(circle at 50% 35%,rgba(38,226,31,.075),transparent 44%),
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
}

.ix-reward-card--expired{
  border-color:rgba(239,68,68,.14);
  background:
    radial-gradient(circle at 50% 35%,rgba(239,68,68,.06),transparent 44%),
    linear-gradient(180deg,rgba(255,255,255,.028),rgba(255,255,255,.009));
}

.ix-reward-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  min-width:0;
}

.ix-reward-card-head > div{
  min-width:0;
}

.ix-reward-type,
.ix-reward-date{
  display:block;
  font-family:var(--ix-display);
  text-transform:uppercase;
}

.ix-reward-type{
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
}

.ix-reward-date{
  margin-top:3px;
  color:var(--ix-muted);
  font-size:9px;
  font-weight:700;
  letter-spacing:.07em;
}

.ix-reward-status-pill{
  flex:0 0 auto;
  max-width:50%;
  padding:5px 8px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  font-family:var(--ix-display);
  font-size:8px;
  font-weight:800;
  letter-spacing:.07em;
  line-height:1.15;
  text-align:center;
  text-transform:uppercase;
  color:#d7dae2;
  background:rgba(255,255,255,.04);
}

.ix-reward-status-pill--ready{color:#ffbf72;border-color:rgba(255,122,26,.24);background:rgba(255,122,26,.08)}
.ix-reward-status-pill--pending,
.ix-reward-status-pill--processing{color:#7dbbff;border-color:rgba(59,130,246,.24);background:rgba(59,130,246,.08)}
.ix-reward-status-pill--accepted{color:#79ee85;border-color:rgba(38,226,31,.24);background:rgba(38,226,31,.08)}
.ix-reward-status-pill--expired{color:#ff8b8b;border-color:rgba(239,68,68,.24);background:rgba(239,68,68,.08)}
.ix-reward-status-pill--retry{color:#ffc46b;border-color:rgba(245,158,11,.24);background:rgba(245,158,11,.08)}

.ix-reward-expiry{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:14px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.065);
  border-radius:9px;
  background:rgba(0,0,0,.16);
  font-size:10px;
}

.ix-reward-expiry span{
  color:var(--ix-muted);
  text-transform:uppercase;
  letter-spacing:.07em;
}

.ix-reward-expiry strong{
  color:#6ff07a;
  font-family:var(--ix-display);
  font-size:10px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.ix-reward-expiry.is-expired strong{color:#ff6868}

.ix-reward-visual{
  position:relative;
  display:grid;
  place-items:center;
  min-height:155px;
  margin:8px 0 2px;
}

.ix-reward-visual::before{
  content:"";
  position:absolute;
  width:150px;
  height:54px;
  bottom:22px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,122,26,.23),rgba(161,92,255,.10),transparent 72%);
  filter:blur(12px);
}

.ix-reward-img{
  position:relative;
  z-index:1;
  width:170px;
  height:125px;
  display:grid;
  place-items:center;
}

.ix-reward-img img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  filter:drop-shadow(0 12px 16px rgba(0,0,0,.58));
  transition:transform .2s ease;
}

.ix-reward-card:hover .ix-reward-img img{transform:scale(1.035)}

.ix-reward-info{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  min-height:58px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.065);
}

.ix-reward-name{
  min-width:0;
  color:#fff;
  font-size:13px;
  font-weight:750;
  line-height:1.35;
  text-align:left;
}

.ix-reward-price{
  flex:0 0 auto;
  color:#ffc44d;
  font-family:var(--ix-display);
  font-size:17px;
  font-weight:900;
  letter-spacing:.02em;
  text-shadow:0 0 12px rgba(255,176,32,.22);
}

.ix-reward-footer{
  margin-top:auto;
  padding-top:14px;
}

.ix-reward-action,
.ix-reward-state{
  width:100%;
  min-height:48px;
  border-radius:10px;
}

.ix-reward-action{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:11px;
  padding:9px 12px;
  text-align:left;
  border:1px solid rgba(255,122,26,.34)!important;
  color:#fff!important;
  background:linear-gradient(135deg,rgba(255,122,26,.16),rgba(197,107,255,.10))!important;
  box-shadow:inset 0 0 18px rgba(255,122,26,.025),0 7px 18px rgba(0,0,0,.16);
  transition:transform .16s ease,filter .16s ease,box-shadow .16s ease,border-color .16s ease,background .16s ease;
}

.ix-reward-action .ix-reward-state-icon{
  color:#fff;
  background:linear-gradient(135deg,var(--ix-orange),var(--ix-purple-2));
  box-shadow:0 0 13px rgba(255,122,26,.24),0 0 12px rgba(161,92,255,.18);
}

.ix-reward-action .ix-reward-state-copy strong{
  color:#ffb56f;
}

.ix-reward-action .ix-reward-state-copy small{
  color:#c7c9d1;
}

.ix-reward-action:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
  border-color:rgba(255,122,26,.58)!important;
  background:linear-gradient(135deg,rgba(255,122,26,.24),rgba(197,107,255,.16))!important;
  box-shadow:0 10px 22px rgba(255,122,26,.12),0 9px 22px rgba(161,92,255,.10);
}

.ix-reward-action.is-retry{
  border-color:rgba(245,158,11,.30)!important;
  background:linear-gradient(135deg,rgba(245,158,11,.15),rgba(255,122,26,.08))!important;
}

.ix-reward-action.is-retry .ix-reward-state-icon{
  background:linear-gradient(135deg,#f59e0b,var(--ix-orange));
  box-shadow:0 0 13px rgba(245,158,11,.24);
}

.ix-reward-action.is-retry .ix-reward-state-copy strong{
  color:#ffc46b;
}

.ix-reward-state{
  display:flex;
  align-items:center;
  gap:11px;
  padding:9px 12px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.025);
}

.ix-reward-state-icon{
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  flex:0 0 30px;
  border-radius:50%;
  font-size:15px;
  font-weight:900;
}

.ix-reward-state-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
  text-align:left;
}

.ix-reward-state-copy strong{
  font-family:var(--ix-display);
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ix-reward-state-copy small{
  margin-top:2px;
  color:var(--ix-muted);
  font-size:9px;
  line-height:1.25;
}

.ix-reward-state--accepted{border-color:rgba(38,226,31,.20);background:rgba(38,226,31,.055)}
.ix-reward-state--accepted .ix-reward-state-icon{color:#071007;background:#67f36d;box-shadow:0 0 12px rgba(38,226,31,.22)}
.ix-reward-state--accepted strong{color:#79ee85}

.ix-reward-state--expired{border-color:rgba(239,68,68,.20);background:rgba(239,68,68,.055)}
.ix-reward-state--expired .ix-reward-state-icon{color:#fff;background:#dc3f3f}
.ix-reward-state--expired strong{color:#ff8b8b}

.ix-reward-state--pending,
.ix-reward-state--processing{border-color:rgba(59,130,246,.20);background:rgba(59,130,246,.055)}
.ix-reward-state--pending .ix-reward-state-icon,
.ix-reward-state--processing .ix-reward-state-icon{color:#07111f;background:#65aefb}
.ix-reward-state--pending strong,
.ix-reward-state--processing strong{color:#86c3ff}

@media (max-width:1100px){
  .ix-winning-history-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width:780px){
  .ix-winning-history-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
}

@media (max-width:520px){
  .ix-winning-history-grid{grid-template-columns:1fr}
  .ix-reward-card{min-height:370px}
  .ix-reward-img{width:180px;height:130px}
}

/* ============================================================
   PERMANENT LOW-POWER MODE
   Decorative animations are disabled globally.
   Functional loading spinners and one-time feedback remain.
   ============================================================ */

/* The site now always runs in the optimized mode, so hide the toggle. */
.ix-perf-toggle,
.cx-perf-toggle {
  display: none !important;
}

/* Avoid a permanently composited fixed full-screen background layer. */
body.index-page::before {
  position: absolute !important;
}

/* Stop all decorative infinite animations. */
.ix-players-pill .ix-dot,
.ix-live .ix-dot,
.ix-section-tag::before,
.ix-tick-dot,
.ix-win-toast-dot,
.ix-panel::after,
.ix-drop-img img,
.ix-reward-img img {
  animation: none !important;
}

/* Keep status dots visible without pulsing. */
.ix-players-pill .ix-dot,
.ix-live .ix-dot,
.ix-section-tag::before,
.ix-tick-dot,
.ix-win-toast-dot {
  opacity: 1 !important;
}

/* Keep drop and reward images stationary. */
.ix-drop-img img,
.ix-reward-img img {
  transform: none;
}


/* A reward-card sweep may run once on hover, never indefinitely. */
.ix-reward-card:hover::before {
  animation: rewardSweep .65s ease-out 1 !important;
}

/* Preserve useful hover scaling after disabling image float animations. */
.ix-drop:hover .ix-drop-img img {
  transform: scale(1.055);
}

.ix-reward-card:hover .ix-reward-img img {
  transform: scale(1.06);
}

/* Never start decorative motion when a light-mode class is absent.
   The live winners ticker remains active. */
@media (prefers-reduced-motion: no-preference) {
  .ix-panel::after,
  .ix-drop-img img,
  .ix-reward-img img {
    animation: none !important;
  }
}

/* ============================================================
   BUTTON BACKGROUND OVERRIDE
   Keep homepage action buttons consistent even when a stylesheet
   loaded after styles_index.css applies a generic button reset.
   ============================================================ */
body.index-page .ix-btn-validate:not(:disabled),
body.index-page .ix-trade-save:not(:disabled) {
  background: linear-gradient(
    135deg,
    var(--ix-orange) 0%,
    var(--ix-magenta) 100%
  ) !important;
  color: #fff !important;
  border: 0 !important;
}

body.index-page .ix-btn-validate:not(:disabled) {
  box-shadow:
    0 4px 12px rgba(255,122,26,.28),
    0 4px 16px rgba(161,92,255,.18) !important;
}

body.index-page .ix-trade-save:not(:disabled) {
  box-shadow:
    0 6px 18px rgba(255,122,26,.30),
    0 8px 20px rgba(161,92,255,.20) !important;
}

body.index-page .ix-btn-validate:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(255,122,26,.46),
    0 8px 24px rgba(161,92,255,.36) !important;
}

body.index-page .ix-trade-save:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(255,122,26,.45),
    0 10px 32px rgba(161,92,255,.30) !important;
}

/* === Community CTA readability fix === */
body.index-page .ix-supp .ix-supp-btn{
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
    font-weight:800;
    text-shadow:0 1px 3px rgba(0,0,0,.55);
}

body.index-page .ix-supp[data-tone="donate"] .ix-supp-btn{
    background:linear-gradient(135deg,#ff7a1a 0%,#ff5a7a 58%,#c56bff 100%) !important;
}

body.index-page .ix-supp[data-tone="slot"] .ix-supp-btn{
    background:linear-gradient(135deg,#ffb020 0%,#ff7a1a 100%) !important;
}

body.index-page .ix-supp[data-tone="auto"] .ix-supp-btn{
    background:linear-gradient(135deg,#a15cff 0%,#7a3fd6 100%) !important;
}

body.index-page .ix-supp[data-tone="discord"] .ix-supp-btn{
    background:linear-gradient(135deg,#5865f2 0%,#4654d8 100%) !important;
}



/* Available-time card refinements */
.ix-prog-card[data-card="available"] .ix-prog-hint:not(.ix-available-validation-status){
  margin-top:2px;
  padding-top:4px;
  line-height:1.4;
}

.ix-prog-card[data-card="available"] .ix-btn-validate{
  width:100%;
}


/* Compact bottom spacing inside progress cards */
.ix-prog-card .ix-eligibility-btn,
.ix-prog-card .ix-btn-validate{
  margin-bottom:0;
}

.ix-prog-card[data-card="available"] .ix-available-validation-status.is-summary{
  display:flex;
  flex-direction:column;
}


/* Active available-time panel */
.ix-prog-card[data-card="available"] .ix-available-active-panel .ix-prog-hint{
  margin:0;
  padding:2px 0 0;
  text-align:center;
  line-height:1.4;
}

.ix-prog-card[data-card="available"] .ix-available-active-panel .ix-btn-validate{
  margin-top:10px;
}


/* === INDEX PHONE UX OVERRIDES — 2026-08-12 ===
   Scoped to body.index-page and <= 600px only.
   Desktop/tablet rules remain unchanged.
   ============================================================ */
@media (max-width:600px){
  /* Page rhythm */
  body.index-page .ix-container{
    width:100%;
    padding-left:16px;
    padding-right:16px;
  }
  body.index-page .ix-section{
    padding:18px 0;
  }
  body.index-page .ix-panel,
  body.index-page .ix-card{
    padding:16px;
    border-radius:14px;
  }
  body.index-page .ix-section-head{
    gap:12px;
    margin-bottom:16px;
  }
  body.index-page .ix-section-tag{
    margin-bottom:7px;
    font-size:10px;
    letter-spacing:.14em;
  }
  body.index-page .ix-section-title{
    max-width:100%;
    padding-right:0;
    font-size:20px;
    line-height:1.12;
    letter-spacing:.035em;
  }
  body.index-page .ix-section-title::after{
    bottom:-7px;
    width:42px;
  }

  /* Hero: compact, readable and intentionally mobile rather than desktop-scaled */
  body.index-page .ix-hero{
    min-height:300px;
    padding:42px 0 34px;
    display:flex;
    align-items:center;
  }
  body.index-page .ix-hero-bg{
    background-position:58% 30%;
  }
  body.index-page .ix-hero-bg::after{
    background:linear-gradient(180deg,rgba(7,7,12,.38) 0%,rgba(7,7,12,.56) 58%,var(--ix-bg) 100%);
  }
  body.index-page .ix-hero-grid{
    background-size:100% 100%,36px 36px,36px 36px;
  }
  body.index-page .ix-hero-inner{
    max-width:100%;
  }
  body.index-page .ix-hero-title{
    margin:0 0 17px;
    font-size:clamp(34px,10.7vw,46px);
    line-height:.98;
    letter-spacing:0;
  }
  body.index-page .ix-hero-sub1{
    margin-bottom:6px;
    font-size:15px;
    line-height:1.35;
  }
  body.index-page .ix-hero-sub2{
    max-width:340px;
    font-size:12.5px;
    line-height:1.5;
  }
  body.index-page .ix-hero-sub2 + .ix-hero-sub2{
    margin-top:3px;
  }

  /* Recent drop ticker */
  body.index-page .ix-ticker-wrap{
    padding-top:8px;
  }
  body.index-page .ix-ticker{
    min-height:46px;
  }
  body.index-page .ix-ticker-edge{
    width:32px;
  }
  body.index-page .ix-tick{
    padding:9px 12px;
    gap:7px;
    font-size:11px;
  }

  /* Drop summary: 3 draw cards full width, two utility cards side-by-side */
  body.index-page .ix-infobar{
    padding:14px 0 6px;
  }
  body.index-page .ix-infobar-panel{
    padding:10px;
    border-radius:14px;
  }
  body.index-page .ix-infobar-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
  body.index-page .ix-info-pill{
    min-width:0;
    gap:5px;
    padding:12px;
    border-radius:10px;
  }
  body.index-page .ix-info-pill:nth-child(-n+3){
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:38px minmax(0,1fr);
    column-gap:11px;
    align-items:center;
  }
  body.index-page .ix-info-pill:nth-child(-n+3) .ix-info-icon{
    grid-row:1 / span 4;
  }
  body.index-page .ix-info-pill:nth-child(-n+3) .ix-info-title,
  body.index-page .ix-info-pill:nth-child(-n+3) .ix-info-sub{
    grid-column:2;
  }
  body.index-page .ix-info-icon{
    width:36px;
    height:36px;
    border-radius:9px;
  }
  body.index-page .ix-info-icon svg{
    width:19px;
    height:19px;
  }
  body.index-page .ix-info-title{
    font-size:11px;
    line-height:1.2;
    letter-spacing:.065em;
  }
  body.index-page .ix-info-sub{
    min-width:0;
    font-size:11px;
    line-height:1.35;
  }
  body.index-page .ix-info-value{
    font-size:17px;
  }

  /* Progress cards */
  body.index-page .ix-progress-grid,
  body.index-page .ix-progress-grid[data-cols="3"]{
    gap:10px;
  }
  body.index-page .ix-prog-card{
    min-width:0;
    padding:14px;
    border-radius:12px;
  }
  body.index-page .ix-available-active-panel,
  body.index-page .ix-available-summary{
    padding:11px;
  }
  body.index-page .ix-available-time{
    gap:5px;
    margin:7px auto 9px;
  }
  body.index-page .ix-time-part{
    flex:1 1 0;
    min-width:0;
    min-height:54px;
  }
  body.index-page .ix-btn-validate{
    width:100%;
    min-height:44px;
  }

  /* Hall of fame */
  body.index-page .ix-two-col{
    gap:12px;
  }
  body.index-page .ix-winners-head{
    align-items:stretch;
    gap:12px;
  }
  body.index-page .ix-winner-filters{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:6px;
  }
  body.index-page .ix-filter{
    min-width:0;
    padding:8px 4px;
    font-size:9.5px;
    text-align:center;
  }
  body.index-page .ix-winners-head .ix-link-arrow,
  body.index-page .ix-section-head .ix-link-arrow{
    align-self:flex-start;
    padding:5px 0;
    font-size:10px;
  }
  body.index-page .ix-winners-list{
    gap:8px;
    margin-top:12px;
  }
  body.index-page .ix-winner{
    gap:10px;
    padding:10px;
    border-radius:10px;
  }
  body.index-page .ix-winner-avatar{
    width:38px;
    height:38px;
  }
  body.index-page .ix-winner-name{
    font-size:12px;
  }
  body.index-page .ix-winner-won,
  body.index-page .ix-winner-item,
  body.index-page .ix-winner-price{
    font-size:10.5px;
  }
  body.index-page .ix-winner-date{
    font-size:10px;
  }

  /* Current drops: keep each drop visually rich, one per row */
  body.index-page .ix-drops-grid,
  body.index-page .ix-drops-grid[data-cols="2"]{
    gap:10px;
    margin-top:12px;
  }
  body.index-page .ix-drop{
    border-radius:12px;
  }
  body.index-page .ix-drop-head,
  body.index-page .ix-drop-foot{
    padding-left:12px;
    padding-right:12px;
  }
  body.index-page .ix-drop-showcase{
    min-height:170px;
  }
  body.index-page .ix-drop-img{
    max-width:210px;
    margin-left:auto;
    margin-right:auto;
  }

  /* Steps: vertical timeline */
  body.index-page .ix-steps-intro{
    margin-top:15px;
    font-size:12.5px;
    line-height:1.55;
  }
  body.index-page .ix-steps{
    margin-top:22px;
  }
  body.index-page .ix-step{
    grid-template-columns:52px minmax(0,1fr);
    gap:13px;
    padding-bottom:20px;
  }
  body.index-page .ix-steps::before{
    left:25px;
    top:22px;
    bottom:22px;
  }
  body.index-page .ix-step-icon{
    width:50px;
    height:50px;
  }
  body.index-page .ix-step-icon svg{
    width:21px;
    height:21px;
  }
  body.index-page .ix-step-body{
    padding-top:4px;
  }
  body.index-page .ix-step-title{
    font-size:12px;
  }
  body.index-page .ix-step-text{
    font-size:11.5px;
    line-height:1.45;
  }
  body.index-page .ix-support-box{
    margin-top:20px;
    padding:14px 12px;
  }
  body.index-page .ix-support-buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  body.index-page .ix-support-buttons .ix-supp-btn{
    width:100%;
    min-width:0;
    padding:11px 7px;
    border-radius:9px;
    font-size:9px;
    letter-spacing:.055em;
  }

  /* Server card */
  body.index-page .ix-live{
    font-size:9px;
  }
  body.index-page .ix-server-list{
    gap:8px;
  }
  body.index-page .ix-server-summary{
    grid-template-columns:auto minmax(0,1fr) auto auto;
    gap:8px;
    padding:12px 10px!important;
  }
  body.index-page .ix-server-summary-name{
    font-size:11px;
    letter-spacing:.035em;
  }
  body.index-page .ix-server-summary-players{
    font-size:13px;
  }
  body.index-page .ix-server-chevron{
    width:16px;
    height:16px;
  }
  body.index-page .ix-server-details{
    padding:0 10px 10px;
  }
  body.index-page .ix-srv-stats{
    gap:7px;
    margin-bottom:10px;
  }
  body.index-page .ix-srv-stat{
    padding:10px;
  }
  body.index-page .ix-srv-stat-val{
    font-size:18px;
  }
  body.index-page .ix-launch{
    min-height:44px;
    padding:12px 10px;
    font-size:10px;
    letter-spacing:.08em;
  }
  body.index-page .ix-report{
    align-items:flex-start;
    padding:10px 11px;
    font-size:10.5px;
    line-height:1.45;
  }

  /* Personal reward history */
  body.index-page .ix-winning-history-grid{
    gap:10px;
  }
  body.index-page .ix-reward-card{
    min-height:0;
  }
  body.index-page .ix-reward-img{
    width:160px;
    height:116px;
  }

  /* Community cards become compact rows instead of four tall desktop cards */
  body.index-page .ix-support-panel{
    padding:16px;
  }
  body.index-page .ix-support{
    gap:9px;
    margin-top:15px;
  }
  body.index-page .ix-supp{
    display:grid;
    grid-template-columns:44px minmax(0,1fr);
    gap:5px 12px;
    padding:13px;
    border-radius:12px;
    align-items:center;
  }
  body.index-page .ix-supp-icon{
    grid-row:1 / span 2;
    width:44px;
    height:44px;
    border-radius:10px;
  }
  body.index-page .ix-supp-icon svg{
    width:21px;
    height:21px;
  }
  body.index-page .ix-supp-title{
    margin:0;
    font-size:12px;
  }
  body.index-page .ix-supp-text{
    margin:0;
    font-size:10.8px;
    line-height:1.4;
  }
  body.index-page .ix-supp > .ix-supp-btn{
    grid-column:1 / -1;
    width:100%;
    min-height:40px;
    margin-top:6px;
    padding:10px;
    font-size:10px;
  }

  /* Trade URL areas */
  body.index-page .ix-trade-input{
    width:100%;
  }
  body.index-page #ix-tradeurl-badge,
  body.index-page #ix-winning-count{
    font-size:10px!important;
  }
}

/* Extra protection for very narrow phones */
@media (max-width:380px){
  body.index-page .ix-container{
    padding-left:13px;
    padding-right:13px;
  }
  body.index-page .ix-hero-title{
    font-size:33px;
  }
  body.index-page .ix-info-pill:nth-child(4),
  body.index-page .ix-info-pill:nth-child(5){
    grid-column:1 / -1;
  }
  body.index-page .ix-support-buttons{
    grid-template-columns:1fr;
  }
}
