:root {
  --bg: #06110c;
  --bg-2: #0b1712;
  --surface: #101d17;
  --surface-2: #14241c;
  --line: rgba(205, 255, 224, 0.15);
  --text: #f5fff8;
  --muted: #a7b9ad;
  --green: #25f06d;
  --green-2: #10b85b;
  --mint: #a7ffd0;
  --amber: #ffc857;
  --danger: #ff5b5b;
  --shadow: rgba(0, 0, 0, 0.36);
  --header-height: 72px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: var(--header-height);
  padding: 0 32px;
  background: rgba(6, 17, 12, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(37, 240, 109, 0.52);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--green), var(--green-2));
  color: #031008;
  box-shadow: 0 10px 28px rgba(37, 240, 109, 0.24);
}

.brand-logo {
  object-fit: cover;
  border-radius: 10px;
  background: none;
  box-shadow: 0 0 0 1.5px rgba(37, 240, 109, 0.45), 0 6px 18px rgba(0,0,0,0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.08);
  animation: logoGlow 1.6s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1.5px rgba(37, 240, 109, 0.6),
      0 0 10px rgba(37, 240, 109, 0.5),
      0 0 24px rgba(37, 240, 109, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(37, 240, 109, 0.9),
      0 0 18px rgba(37, 240, 109, 0.75),
      0 0 40px rgba(37, 240, 109, 0.35);
  }
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 29, 23, 0.76);
}

.main-nav a {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(37, 240, 109, 0.14);
  color: var(--text);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 255, 248, 0.05);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.lang-toggle:hover,
.lang-dropdown.open .lang-toggle {
  border-color: rgba(37, 240, 109, 0.55);
  color: var(--green);
  background: rgba(37, 240, 109, 0.07);
}

.lang-chevron {
  width: 13px !important;
  height: 13px !important;
  transition: transform 0.25s ease;
}

.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-flag,
.lang-flag-opt {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.9)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  margin: 0;
  padding: 4px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 24, 16, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  color: var(--muted);
}

.lang-option:hover {
  background: rgba(37, 240, 109, 0.1);
  color: var(--text);
}

.lang-option.active {
  color: var(--green);
  background: rgba(37, 240, 109, 0.08);
}

.icon-link,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 255, 248, 0.05);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.icon-link:hover,
.menu-toggle:hover {
  border-color: rgba(37, 240, 109, 0.55);
  color: var(--green);
}

.menu-toggle {
  display: none;
  justify-self: end;
  cursor: pointer;
}

.menu-fallback {
  display: none;
}

.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 136px 32px 72px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #06110c;
}

.hero-bg,
.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(6, 17, 12, 0.35) 0%, rgba(6, 17, 12, 0.2) 42%, rgba(8, 21, 15, 0.08) 100%),
    linear-gradient(135deg, rgba(37, 240, 109, 0.03), transparent 42%);
}

.hero-bg::before {
  content: "";
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(167, 255, 208, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 255, 208, 0.07) 1px, transparent 1px);
  background-size: 78px 78px;
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(0deg, rgba(6, 17, 12, 0.75) 0%, transparent 34%, rgba(6, 17, 12, 0.2) 100%),
    linear-gradient(90deg, rgba(6, 17, 12, 0.6) 0%, rgba(6, 17, 12, 0.3) 44%, rgba(6, 17, 12, 0.1) 100%);
}


.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) saturate(0.9);
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.hero-video.loaded {
  opacity: 1;
}

/* ── Loading state: glow + grid pulse ── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 68% 55% at 28% 50%, rgba(37, 240, 109, 0.10) 0%, rgba(37, 240, 109, 0.04) 36%, transparent 60%),
    radial-gradient(ellipse 32% 42% at 74% 34%, rgba(37, 240, 109, 0.04) 0%, transparent 54%);
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}

.hero:not(.video-loaded)::before {
  opacity: 1;
  animation: heroLoadGlow 4s ease-in-out infinite;
}

@keyframes heroLoadGlow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}

.hero:not(.video-loaded) .hero-bg::before {
  animation: heroGridPulse 4s ease-in-out 0.6s infinite;
}

@keyframes heroGridPulse {
  0%, 100% { opacity: 0.42; }
  50%       { opacity: 0.72; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before      { animation: none !important; opacity: 0 !important; }
  .hero-bg::before   { animation: none !important; }
  .hero-video        { transition: none; }
}


.promo-icon.hellcase-icon {
  background: transparent;
  border: none;
  box-shadow: none;
}

.btn-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) brightness(10);
}

.social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.95)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.icon-link:hover .social-icon {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.95)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.8));
}

.social-icon--tiktok {
  width: 36px;
  height: 36px;
}

.social-icon--twitch {
  width: 27px;
  height: 27px;
}

.hellcase-flame {
  width: 36px;
  height: 36px;
  animation: flameGlow 2s ease-in-out infinite;
}

@keyframes flameGlow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(240, 90, 26, 0.5)) drop-shadow(0 0 10px rgba(240, 90, 26, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(255, 154, 0, 0.85)) drop-shadow(0 0 20px rgba(255, 90, 0, 0.55));
  }
}

.promo-icon.csgoskins-icon {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  width: 52px;
  height: 52px;
}

.csgoskins-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(41, 182, 246, 0.8)) drop-shadow(0 0 16px rgba(41, 182, 246, 0.4));
  animation: csgoSkinsGlow 2.5s ease-in-out infinite;
}

@keyframes csgoSkinsGlow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(41, 182, 246, 0.7)) drop-shadow(0 0 12px rgba(41, 182, 246, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(41, 182, 246, 0.95)) drop-shadow(0 0 24px rgba(41, 182, 246, 0.55));
  }
}

.promo-icon.skinplace-icon {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  width: 62px;
  height: 62px;
}

.skinplace-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-top: -2px;
  margin-right: 7px;
  filter: drop-shadow(0 0 6px rgba(255, 100, 60, 0.8)) drop-shadow(0 0 16px rgba(255, 80, 40, 0.4));
  animation: skinplaceGlow 2.5s ease-in-out infinite;
}

@keyframes skinplaceGlow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(255, 100, 60, 0.7)) drop-shadow(0 0 12px rgba(255, 80, 40, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(255, 100, 60, 0.95)) drop-shadow(0 0 24px rgba(255, 80, 40, 0.55));
  }
}

.promo-icon.daddyskins-icon {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.daddyskins-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  animation: daddyGlow 2.5s ease-in-out infinite;
}

@keyframes daddyGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.9)) drop-shadow(0 0 18px rgba(236, 72, 153, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(236, 72, 153, 1)) drop-shadow(0 0 36px rgba(236, 72, 153, 0.75));
  }
}


.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 5rem;
  line-height: 0.95;
  text-shadow: 0 2px 32px rgba(6, 17, 12, 0.95), 0 0 80px rgba(6, 17, 12, 0.8);
}

h2 {
  margin-bottom: 14px;
  font-size: 3.25rem;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.hero-copy {
  max-width: 560px;
  color: #d7e8dc;
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button,
.code-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.code-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: #031008;
  box-shadow: 0 16px 38px rgba(37, 240, 109, 0.24);
}

.button.ghost {
  border-color: rgba(167, 255, 208, 0.25);
  background: rgba(245, 255, 248, 0.06);
  color: var(--text);
}

.csgorep-btn {
  backdrop-filter: blur(0px) brightness(1);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease,
              backdrop-filter 420ms ease, box-shadow 420ms ease;
}

.csgorep-btn:hover {
  backdrop-filter: blur(10px) brightness(1.15);
  background: rgba(245, 255, 248, 0.13);
  border-color: rgba(167, 255, 208, 0.5);
  box-shadow: 0 0 24px rgba(37, 240, 109, 0.12);
}

.button.mini {
  min-height: 38px;
  padding: 0 14px;
  background: rgba(37, 240, 109, 0.12);
  color: var(--mint);
  border-color: rgba(37, 240, 109, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin: 48px 0 0;
  padding: 0;
}

.hero-stats div,
.promo-card,
.drop-card,
.feature-card,
.discord-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 29, 23, 0.82);
  box-shadow: 0 18px 50px var(--shadow);
}

.hero-stats div {
  padding: 18px;
  cursor: default;
}

.hero-stats dt {
  font-size: 1.65rem;
  font-weight: 900;
  background: linear-gradient(90deg,
    var(--green) 0%,
    var(--green) 35%,
    #dfffee 46%,
    #ffffff 50%,
    #dfffee 54%,
    var(--green) 65%,
    var(--green) 100%
  );
  background-size: 300% 100%;
  background-position: 100% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats div:hover dt {
  animation: statWave 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-stats div:hover dd {
  animation: statWaveSub 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 0.25s;
}

@keyframes statWave {
  0%   { background-position: 100% center; }
  65%  { background-position: 0% center; }
  100% { background-position: 0% center; }
}

@keyframes statWaveSub {
  0%, 20% { opacity: 1; }
  40%      { opacity: 0.95; color: rgba(220,255,235,0.95); text-shadow: 0 0 10px rgba(255,255,255,0.3); }
  80%, 100%{ opacity: 1; }
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  transform: translateX(-50%);
}

.section {
  padding: 90px 32px;
}

.section:nth-of-type(odd) {
  background: var(--bg-2);
}

.section-bonus {
  position: relative;
  overflow: hidden;
}

.bonus-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fe {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: var(--s);
  line-height: 1;
  filter: blur(var(--blur)) drop-shadow(0 0 10px rgba(37, 240, 109, 0.35)) drop-shadow(0 0 24px rgba(37, 240, 109, 0.15));
  transform: rotate(var(--rot));
  animation: feFloat var(--spd) ease-in-out var(--del) infinite;
  user-select: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes feFloat {
  0%, 100% { transform: rotate(var(--rot)) translateY(0px) translateZ(0); }
  50%       { transform: rotate(calc(var(--rot) + 6deg)) translateY(-14px) translateZ(0); }
}

.section-bonus .section-head,
.bonus-grid,
.legal-note {
  position: relative;
  z-index: 1;
}

.section-head {
  width: min(100%, 760px);
  margin: 0 auto 38px;
  text-align: center;
}

.section-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bonus-grid,
.drop-grid,
.feature-grid {
  display: grid;
  width: min(100%, 1160px);
  margin: 0 auto;
  gap: 18px;
}

.bonus-grid {
  grid-template-columns: repeat(4, 1fr);
}

.drop-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.promo-card,
.drop-card,
.feature-card {
  padding: 22px;
}

.promo-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  cursor: default;
  will-change: transform;
}

@property --hue {
  syntax: '<number>';
  initial-value: 0;
  inherits: false;
}

.promo-card.featured {
  border-color: rgba(37, 240, 109, 0.7);
  background: linear-gradient(180deg, rgba(37, 240, 109, 0.16), rgba(16, 29, 23, 0.92));
}

.promo-card.featured:hover {
  --hue: 0;
  border-color: hsl(var(--hue), 100%, 58%);
  box-shadow:
    inset 0 0 22px hsla(var(--hue), 100%, 60%, 0.22),
    0 0 24px hsla(var(--hue), 100%, 60%, 0.45),
    0 0 60px hsla(var(--hue), 100%, 60%, 0.18) !important;
  animation: rgbHue 3s linear infinite;
}

@keyframes rgbHue {
  to { --hue: 360; }
}

.promo-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(37, 240, 109, 0.14);
  color: var(--green);
}

.tag,
.rarity {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card p:not(.tag) {
  color: var(--muted);
  line-height: 1.6;
}

.code-button {
  width: 100%;
  margin-top: auto;
  background: #09140f;
  color: var(--green);
  border-color: rgba(37, 240, 109, 0.34);
}

.code-button.copied {
  background: var(--green);
  color: #031008;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--mint);
  font-weight: 900;
  transition: color 0.3s ease, text-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.text-link:hover {
  color: #ffffff;
  letter-spacing: 0.03em;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 20px rgba(255, 255, 255, 0.7),
    0 0 40px rgba(255, 255, 255, 0.4),
    0 0 80px rgba(200, 255, 230, 0.25);
}

.legal-note {
  width: min(100%, 1160px);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.drop-card {
  position: relative;
  overflow: hidden;
}

.drop-art {
  height: 170px;
  margin: -4px -4px 20px;
  border: 1px solid rgba(245, 255, 248, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 240, 109, 0.16), rgba(255, 200, 87, 0.14)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 14px),
    #0a1410;
}

.drop-art::before {
  content: "";
  display: block;
  width: 78%;
  height: 26px;
  margin: 72px auto 0;
  border-radius: 8px;
  background: linear-gradient(90deg, transparent 0 12%, var(--green) 12% 72%, var(--amber) 72% 100%);
  box-shadow: 0 12px 32px rgba(37, 240, 109, 0.22);
  transform: rotate(-12deg);
}

.drop-art.awp::before {
  width: 88%;
  height: 18px;
}

.drop-art.lotus::before {
  background: linear-gradient(90deg, var(--mint), var(--green-2), var(--amber));
}

@property --snake-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.drop-card--csfloat {
  display: flex;
  flex-direction: column;
  border-color: transparent;
  background: linear-gradient(180deg, rgba(255, 200, 87, 0.08), rgba(16, 29, 23, 0.95));
  box-shadow: inset 0 0 32px rgba(255, 200, 87, 0.07), 0 18px 50px var(--shadow);
  overflow: visible;
}

.drop-card--csfloat::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  padding: 1px;
  background: conic-gradient(
    from var(--snake-angle),
    transparent 0%,
    transparent 58%,
    rgba(255, 200, 87, 0.15) 68%,
    rgba(255, 200, 87, 0.7) 76%,
    rgba(255, 255, 180, 1) 80%,
    rgba(255, 200, 87, 0.7) 84%,
    rgba(255, 200, 87, 0.15) 92%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 0;
  animation: snakeRotate 9s linear infinite;
  filter: drop-shadow(0 0 3px rgba(255, 200, 87, 0.6));
  transition: filter 0.4s ease;
}

.drop-card--csfloat:hover::before {
  filter:
    drop-shadow(0 0 6px rgba(255, 200, 87, 1))
    drop-shadow(0 0 14px rgba(255, 200, 87, 0.6))
    drop-shadow(0 0 28px rgba(255, 200, 87, 0.3));
  animation-duration: 9s;
}

.drop-card--csfloat:hover {
  box-shadow:
    inset 0 0 40px rgba(255, 200, 87, 0.14),
    0 0 32px rgba(255, 200, 87, 0.35),
    0 0 70px rgba(255, 200, 87, 0.12);
}

.drop-card--csfloat > * {
  position: relative;
  z-index: 1;
}

@keyframes snakeRotate {
  to { --snake-angle: 360deg; }
}

.drop-card--bitskins {
  display: flex;
  flex-direction: column;
  border-color: rgba(167, 255, 208, 0.2);
  background: linear-gradient(180deg, rgba(37, 240, 109, 0.06), rgba(16, 29, 23, 0.95));
}

.bitskins-icon {
  background: rgba(37, 240, 109, 0.12);
  border: 1px solid rgba(37, 240, 109, 0.25);
  color: var(--green);
  margin-bottom: 18px;
}

.bitskins-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.bitskins-btn {
  margin-top: auto;
  background: rgba(37, 240, 109, 0.10);
  color: var(--mint);
  border-color: rgba(37, 240, 109, 0.3);
}

.bitskins-btn:hover {
  background: rgba(37, 240, 109, 0.18);
  border-color: rgba(37, 240, 109, 0.6);
}

.drop-card--moonskin {
  display: flex;
  flex-direction: column;
  border-color: rgba(200, 210, 230, 0.2);
  background: linear-gradient(180deg, rgba(180, 190, 210, 0.07), rgba(14, 18, 28, 0.95));
}

.moonskin-icon {
  background: rgba(180, 190, 220, 0.10);
  border: 1px solid rgba(180, 190, 220, 0.25);
  margin-bottom: 18px;
}

.moonskin-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: invert(1) brightness(0.9) drop-shadow(0 0 6px rgba(200, 210, 255, 0.55)) drop-shadow(0 0 12px rgba(160, 175, 220, 0.3));
}


.moonskin-btn {
  margin-top: 18px;
  background: rgba(180, 190, 220, 0.08);
  color: #b4bedd;
  border-color: rgba(180, 190, 220, 0.25);
}

.moonskin-btn:hover {
  background: rgba(180, 190, 220, 0.16);
  border-color: rgba(180, 190, 220, 0.5);
}

.csfloat-icon {
  background: rgba(255, 200, 87, 0.14);
  border: 1px solid rgba(255, 200, 87, 0.3);
  color: var(--amber);
  margin-bottom: 18px;
}

.csfloat-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.csfloat-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.csfloat-btn {
  margin-top: auto;
  background: rgba(255, 200, 87, 0.12);
  color: var(--amber);
  border-color: rgba(255, 200, 87, 0.4);
}

.csfloat-btn:hover {
  background: rgba(255, 200, 87, 0.22);
  border-color: rgba(255, 200, 87, 0.8);
}

.drop-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 1.7rem;
}

.center-action {
  justify-content: center;
  margin-top: 28px;
}

.feature-card {
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.feature-card h3 {
  background: linear-gradient(90deg, var(--text) 25%, #ffffff 50%, var(--text) 75%);
  background-size: 250% 100%;
  background-position: 200% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card:hover h3 {
  animation: featureTextWave 1.8s ease-in-out infinite;
}

@keyframes featureTextWave {
  0%   { background-position: 200% center; }
  100% { background-position: -100% center; }
}

.feature-card > .lucide {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--green);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  transition: color 350ms ease, text-shadow 350ms ease;
}

.feature-card:hover p {
  color: #dff0e6;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.32);
}

.sell-cta {
  text-align: center;
  margin-top: 40px;
}

.sell-note,
.discord-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

@property --btn-rgb-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes btnRgbSpin {
  to { --btn-rgb-angle: 360deg; }
}

.btn-rgb-wrap {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  padding: 2px;
  background: conic-gradient(
    from var(--btn-rgb-angle),
    #ff0040, #ff7700, #ffee00, #00ff88, #00ccff, #7744ff, #ff00cc, #ff0040
  );
  animation: btnRgbSpin 3s linear infinite;
  isolation: isolate;
  max-width: 100%;
}

.btn-rgb-wrap::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 15px;
  background: conic-gradient(
    from var(--btn-rgb-angle),
    #ff0040, #ff7700, #ffee00, #00ff88, #00ccff, #7744ff, #ff00cc, #ff0040
  );
  filter: blur(12px);
  opacity: 0.65;
  z-index: -1;
  animation: btnRgbSpin 3s linear infinite;
}

.btn-sell {
  position: relative;
  background: var(--surface);
  color: #e8ffe0;
  font-weight: 900;
  border: none;
  transition: background 180ms ease, transform 180ms ease;
}

.btn-sell:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}

.giveaway-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 48px;
  align-items: center;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.giveaway-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-inline: max(32px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(120deg, rgba(37, 240, 109, 0.12), transparent 42%),
    var(--bg);
}

.discord-float-logo {
  position: absolute;
  top: 40px;
  right: max(18px, calc((100% - 1160px) / 2 - 80px));
  width: 110px;
  height: auto;
  opacity: 0.13;
  filter: blur(0.5px) drop-shadow(0 0 28px #5865F2);
  animation: discordFloat 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes discordFloat {
  0%   { transform: translateY(0px)   rotateX(6deg)  rotateY(-12deg) rotateZ(2deg);  }
  25%  { transform: translateY(-12px) rotateX(-4deg) rotateY(10deg)  rotateZ(-3deg); }
  50%  { transform: translateY(-6px)  rotateX(8deg)  rotateY(-6deg)  rotateZ(1deg);  }
  75%  { transform: translateY(-16px) rotateX(-2deg) rotateY(14deg)  rotateZ(-2deg); }
  100% { transform: translateY(0px)   rotateX(6deg)  rotateY(-12deg) rotateZ(2deg);  }
}

.giveaway-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dcebe1;
  font-weight: 800;
}

.check-list .lucide {
  color: var(--green);
}

.discord-panel {
  position: relative;
  padding: 26px;
}

@property --dp-a {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@property --dp-b {
  syntax: '<angle>';
  inherits: false;
  initial-value: 180deg;
}

.dp-snake {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation-duration: 3.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.dp-snake-a {
  background: conic-gradient(
    from var(--dp-a),
    transparent 74%,
    rgba(100, 50, 220, 0.25) 80%,
    rgba(160, 90, 255, 0.75) 86%,
    rgba(210, 160, 255, 1)   89%,
    rgba(160, 90, 255, 0.5)  92%,
    transparent 96%
  );
  animation-name: dpSnakeA;
}

.dp-snake-b {
  background: conic-gradient(
    from var(--dp-b),
    transparent 74%,
    rgba(100, 50, 220, 0.25) 80%,
    rgba(160, 90, 255, 0.75) 86%,
    rgba(210, 160, 255, 1)   89%,
    rgba(160, 90, 255, 0.5)  92%,
    transparent 96%
  );
  animation-name: dpSnakeB;
}

/* Snake A : bas → gauche → haut (sens anti-horaire) */
@keyframes dpSnakeA {
  0%   { --dp-a: 180deg; opacity: 0; }
  6%   { --dp-a: 168deg; opacity: 1; }
  80%  { --dp-a: 0deg;   opacity: 1; }
  100% { --dp-a: 0deg;   opacity: 0; }
}

/* Snake B : bas → droite → haut (sens horaire) */
@keyframes dpSnakeB {
  0%   { --dp-b: 180deg; opacity: 0; }
  6%   { --dp-b: 192deg; opacity: 1; }
  80%  { --dp-b: 360deg; opacity: 1; }
  100% { --dp-b: 360deg; opacity: 0; }
}

.panel-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.panel-top h3,
.panel-top p,
.panel-top span {
  margin: 0;
}

.panel-top p,
.panel-top span,
.giveaway-item p,
.giveaway-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(37, 240, 109, 0.25);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(37, 240, 109, 0.25), 0 0 0 0 rgba(37, 240, 109, 0.4);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(37, 240, 109, 0.1), 0 0 0 8px rgba(37, 240, 109, 0);
  }
}

.giveaway-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.giveaway-item h4 {
  margin: 6px 0 8px;
  font-size: 1.5rem;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 22px;
}

.panel-stats div {
  min-width: 0;
}

.panel-stats strong,
.panel-stats span {
  display: block;
}

.panel-stats strong {
  color: var(--green);
  font-size: 1.35rem;
}

.panel-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}


/* ── YouTube section ── */

.section-yt {
  width: min(100%, 1160px);
  margin-inline: auto;
}

.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.yt-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 29, 23, 0.82);
  box-shadow: 0 18px 50px var(--shadow);
  overflow: hidden;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.yt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px var(--shadow), 0 0 0 1px rgba(37, 240, 109, 0.22);
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.yt-card:hover .yt-thumb img {
  transform: scale(1.04);
}

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 200ms ease;
}

.yt-card:hover .yt-play {
  opacity: 1;
}

.yt-play svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

.yt-info {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yt-title {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-date {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.yt-state {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 56px;
  color: var(--muted);
  font-size: 0.95rem;
}

.yt-error { color: #ff7070; }

@keyframes ytSpin { to { transform: rotate(360deg); } }

.yt-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(167, 185, 173, 0.3);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: ytSpin 0.8s linear infinite;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
  padding: 54px 32px 28px;
  background: #040b08;
  border-top: 1px solid var(--line);
}

.site-footer > * {
  min-width: 0;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-contact {
  margin-top: 20px;
  width: min-content;
}

.footer-contact-label {
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 8px;
}

.footer-contact-email {
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--green);
}

.site-footer h4 {
  margin: 0 0 14px;
}

.copyright {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  margin: 20px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.copyright-version {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  opacity: 0.5;
}

.nav-socials {
  display: none;
}

@media (max-width: 1080px) {
  .bonus-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .drop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .giveaway-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 18px;
  }

  .menu-toggle {
    display: inline-grid;
    position: fixed;
    top: 16px;
    right: auto;
    left: clamp(150px, 84vw, 330px);
    z-index: 60;
    background: var(--green);
    color: #031008;
    border-color: var(--green);
  }

  .menu-toggle:not(:has(svg)) .menu-fallback {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(8, 20, 14, 0.94);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(37, 240, 109, 0.18);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: 86svh;
    padding: 116px 20px 70px;
  }

  .hero-bg::after {
    background:
      linear-gradient(0deg, rgba(6, 17, 12, 0.95) 0%, rgba(6, 17, 12, 0.7) 44%, rgba(6, 17, 12, 0.88) 100%),
      linear-gradient(90deg, rgba(6, 17, 12, 0.96), rgba(6, 17, 12, 0.48));
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-stats,
  .drop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 70px 20px;
  }

  .giveaway-section {
    padding-inline: 20px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 20px;
  }

  /* Fix: filter+drop-shadow sur emoji text = carré blanc GPU sur Safari mobile */
  .fe {
    filter: none;
    font-size: calc(var(--s) * 0.65);
    opacity: 0.42;
    background: rgba(6, 17, 12, 0.62);
    padding: 3px 5px;
    border-radius: 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-shadow: 0 0 8px rgba(37, 240, 109, 0.25);
  }

  .btn-rgb-wrap::before {
    inset: -3px;
    filter: blur(8px);
    opacity: 0.5;
  }

  .nav-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px 6px;
    border-top: 1px solid var(--line);
    margin-top: 6px;
  }

  .nav-socials .icon-link {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 2.68rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .center-action {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .bonus-grid,
  .drop-grid,
  .feature-grid,
  .panel-stats,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats div {
    padding: 14px;
  }

  .promo-card {
    min-height: 0;
  }

  .btn-sell {
    white-space: normal;
    text-align: center;
  }

  .yt-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .yt-info {
    padding: 14px;
    gap: 6px;
  }

}
