/* =====================================================
   SOCIAL CASINO FUN — Premium Black Neon
   ===================================================== */

@import url('fonts.css');

:root {
  --bg:        #07070b;
  --bg2:       #0c0c12;
  --card:      #0e0e15;
  --card-h:    #13131e;
  --border:    rgba(255,255,255,0.06);
  --border-h:  rgba(255,255,255,0.1);

  --pink:      #ff0090;
  --cyan:      #00e5ff;
  --green:     #00ff88;
  --yellow:    #ffe100;
  --purple:    #b400ff;

  --pink-a15:  rgba(255,0,144,0.15);
  --cyan-a15:  rgba(0,229,255,0.15);

  --glow-pink:   0 0 8px #ff0090, 0 0 20px rgba(255,0,144,0.45), 0 0 50px rgba(255,0,144,0.15);
  --glow-cyan:   0 0 8px #00e5ff, 0 0 20px rgba(0,229,255,0.45), 0 0 50px rgba(0,229,255,0.15);
  --glow-green:  0 0 8px #00ff88, 0 0 20px rgba(0,255,136,0.45), 0 0 50px rgba(0,255,136,0.15);

  --text:    #f0f0f8;
  --sub:     #70708a;
  --muted:   #303044;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== SCANLINES ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.015) 3px,
    rgba(0,0,0,0.015) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ===== NEON ANIMATIONS ===== */
@keyframes neon-flicker {
  0%, 95%, 100% { opacity: 1; }
  96%            { opacity: 0.85; }
  97%            { opacity: 1; }
  98%            { opacity: 0.7; }
  99%            { opacity: 1; }
}
@keyframes neon-pulse {
  0%, 100% { text-shadow: var(--glow-pink); }
  50%       { text-shadow: 0 0 12px #ff0090, 0 0 30px rgba(255,0,144,0.6), 0 0 70px rgba(255,0,144,0.25); }
}
@keyframes line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,11,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.25rem; }
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
.logo-accent {
  color: var(--pink);
  animation: neon-pulse 4s ease-in-out infinite, neon-flicker 8s step-end infinite;
}

.header-nav {
  display: flex;
  gap: 28px;
  flex: 1;
}
.header-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sub);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.15s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.header-nav a:hover { color: #fff; }
.header-nav a:hover::after { transform: scaleX(1); }

.header-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.35);
  box-shadow: 0 0 10px rgba(0,255,136,0.15), inset 0 0 10px rgba(0,255,136,0.04);
  padding: 5px 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* atmospheric glow */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-60%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(255,0,144,0.07) 0%,
    rgba(180,0,255,0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
}
/* bottom fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px 88px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,229,255,0.5);
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.line-white {
  color: #fff;
  display: block;
}
.line-neon {
  display: block;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,0,144,0.4));
}

.hero-sub {
  font-size: 1.02rem;
  color: var(--sub);
  max-width: 400px;
  line-height: 1.75;
  margin-bottom: 44px;
}

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

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255,0,144,0.25), 0 4px 24px rgba(0,0,0,0.4);
  transition: box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(255,0,144,0.45), 0 0 60px rgba(180,0,255,0.2), 0 4px 32px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid rgba(0,229,255,0.4);
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,229,255,0.08), inset 0 0 12px rgba(0,229,255,0.03);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.25), inset 0 0 20px rgba(0,229,255,0.06);
  transform: translateY(-2px);
}

/* corner deco */
.hero-deco {
  position: absolute;
  top: 48px; right: 32px;
  width: 120px; height: 120px;
  pointer-events: none;
}
.hero-deco::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 48px; height: 48px;
  border-top: 1px solid rgba(0,229,255,0.5);
  border-right: 1px solid rgba(0,229,255,0.5);
  box-shadow: 4px -4px 12px rgba(0,229,255,0.15);
}
.hero-deco::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 48px;
  border-bottom: 1px solid rgba(255,0,144,0.5);
  border-left: 1px solid rgba(255,0,144,0.5);
  box-shadow: -4px 4px 12px rgba(255,0,144,0.15);
}

/* ===== MAIN ===== */
main {
  flex: 1;
  padding: 52px 0 72px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* section heading */
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-heading h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}
.section-heading::before {
  content: '';
  display: block;
  width: 3px; height: 18px;
  background: var(--pink);
  box-shadow: var(--glow-pink);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  background: var(--card);
  color: var(--sub);
  border: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 7px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover {
  color: #ccc;
  border-color: var(--border-h);
  background: var(--card-h);
}
.filter-btn.active {
  color: #000;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 14px rgba(0,229,255,0.3), 0 0 30px rgba(0,229,255,0.1);
  font-weight: 700;
}

/* ===== GAME GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 16px;
}

/* ===== GAME CARD ===== */
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.game-card:not(.coming-soon) { cursor: pointer; }
.game-card:not(.coming-soon):hover {
  transform: translateY(-4px);
  border-color: rgba(255,0,144,0.35);
  box-shadow:
    0 0 0 1px rgba(255,0,144,0.1),
    0 0 20px rgba(255,0,144,0.12),
    0 16px 48px rgba(0,0,0,0.7);
}

/* Thumb */
.game-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050508;
}
.game-thumb { width: 100%; height: 100%; }
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.2s ease;
  filter: brightness(0.8) saturate(1.1);
}
/* cinematic gradient on thumb */
.game-thumb-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(7,7,11,0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.game-card:not(.coming-soon):hover .game-thumb img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.2);
}

/* Play overlay */
.game-card:not(.coming-soon) .game-thumb-wrap::after {
  content: '▶  PLAY';
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  opacity: 0;
  transition: opacity 0.18s;
}
.game-card:not(.coming-soon):hover .game-thumb-wrap::after { opacity: 1; }

/* Placeholder */
.game-thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a12 0%, #0e0e18 100%);
}
.placeholder-icon { font-size: 2rem; opacity: 0.1; }

/* Meta */
.game-meta {
  padding: 12px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.game-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ccc;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.tag--crash    { color: var(--pink);   text-shadow: 0 0 8px rgba(255,0,144,0.7); }
.tag--slots    { color: var(--yellow); text-shadow: 0 0 8px rgba(255,225,0,0.6); }
.tag--cards    { color: var(--cyan);   text-shadow: var(--glow-cyan); }
.tag--roulette { color: var(--green);  text-shadow: var(--glow-green); }
.tag--other    { color: var(--sub); }
.tag--soon     { color: var(--muted); }

/* NEW badge */
.badge-new {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 3;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 12px rgba(255,0,144,0.5);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

/* Empty */
.games-note {
  color: var(--sub);
  font-size: 0.85rem;
  padding: 60px 0;
  text-align: center;
}

/* ===== NEON DIVIDER ===== */
.neon-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,0,144,0.3) 20%,
    rgba(0,229,255,0.5) 50%,
    rgba(180,0,255,0.3) 80%,
    transparent 100%
  );
  margin: 0;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--bg2);
  padding: 60px 32px;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px 56px;
}
.about-item { display: flex; flex-direction: column; gap: 10px; }
.about-icon { font-size: 1.5rem; }
.about-item strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
}
.about-item p {
  font-size: 0.8rem;
  color: var(--sub);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255,0,144,0.4);
}
.footer-legal {
  font-size: 0.72rem;
  color: #555;
  max-width: 520px;
  line-height: 1.8;
}
.footer-copy {
  font-size: 0.68rem;
  color: #444;
}
.footer-copy a {
  color: #00e5ff;
  text-decoration: none;
}
.footer-copy a:hover {
  color: #00ff88;
}

/* ===== AUTH BUTTON ===== */
.auth-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--sub);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  touch-action: manipulation;
}
.auth-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.auth-btn.signed-in { border-color: var(--green); color: var(--green); }

/* ===== PLAYER HUD (header chips + level) ===== */
.header-hud {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hud-chips-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green);
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.hud-level-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--sub);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ===== PLAYER CARD (between hero and games) ===== */
.player-card {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.pc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* rank icon */
.pc-rank-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

/* identity + XP block */
.pc-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 160px;
}
.pc-name {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pc-rank-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.pc-level {
  font-size: 0.7rem;
  color: var(--sub);
  font-weight: 600;
}
.pc-level span {
  color: var(--text);
  font-weight: 700;
}
.pc-xp-bar {
  height: 4px;
  background: var(--muted);
  border-radius: 2px;
  overflow: hidden;
  max-width: 260px;
}
.pc-xp-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 0 8px rgba(0,229,255,0.4);
  border-radius: 2px;
  transition: width 0.5s ease;
}
.pc-xp-text {
  font-size: 0.6rem;
  color: var(--sub);
  letter-spacing: 0.5px;
}

/* separator */
.pc-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* streak section */
.pc-streak {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.pc-streak-day {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 4px;
}
.pc-streak-day::before { content: '🔥'; font-size: 0.75rem; }
.pc-streak-btn {
  background: var(--card);
  color: var(--sub);
  border: 1px solid var(--border);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 3px;
  cursor: default;
  touch-action: manipulation;
  transition: box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}
.pc-streak-btn.active {
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 14px rgba(255,225,0,0.3);
  cursor: pointer;
}
.pc-streak-btn.active:hover {
  box-shadow: 0 0 24px rgba(255,225,0,0.5);
  transform: translateY(-1px);
}
.pc-streak-btn.active:active { transform: scale(0.97); }
.pc-streak-btn:disabled { opacity: 0.4; cursor: default; }

/* ===== TOUCH ===== */
.filter-btn,
.btn-primary,
.btn-outline,
.game-card {
  touch-action: manipulation;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; gap: 16px; }
  .hero-inner { padding: 48px 16px 44px; }
  .hero-deco { display: none; }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 16px 24px; }
  .section-inner { padding: 0 16px; }
  .header-nav { display: none; }
  .about-strip { padding: 40px 16px; }
  .about-inner { gap: 24px 32px; }
  main { padding: 32px 0 48px; }
  .pc-inner { padding: 12px 16px; gap: 12px; }
  .pc-sep { display: none; }
  .pc-xp-bar { max-width: none; }
  .hud-level-header { display: none; }
}

@media (max-width: 520px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* filter bar: scrollable row, no wrapping */
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 6px;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 10px 14px;   /* min ~44px height */
    min-height: 44px;
  }
}

@media (max-width: 360px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-title { letter-spacing: -0.5px; }
}

/* ── Cookie Banner ─────────────────────────────────────────────────────────── */
#scfCookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: #0e0e15;
  border-top: 1px solid rgba(0,229,255,0.2);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
#scfCookieBanner p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#scfCookieBanner p a { color: #00e5ff; }
.cookie-btn-wrap { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: linear-gradient(135deg,#00e5ff,#b400ff);
  border: none; color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem; letter-spacing: .05em;
  padding: 0.55rem 1.1rem;
  border-radius: 6px; cursor: pointer;
}
.cookie-btn-necessary {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: #666;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  padding: 0.55rem 1rem;
  border-radius: 6px; cursor: pointer;
}
.cookie-btn-necessary:hover { border-color: #00e5ff; color: #00e5ff; }
