﻿/* ===================================================
   DAYZCRAFT - APOCALYPSE ULTRA-DYNAMIC THEME
   =================================================== */

:root {
  --bg-main: #06070a;
  --bg-darker: #030405;
  --bg-card: rgba(13, 16, 22, 0.82);
  --bg-card-hover: rgba(22, 28, 38, 0.92);
  --accent-orange: #ff7700;
  --accent-orange-glow: rgba(255, 119, 0, 0.5);
  --accent-amber: #f59e0b;
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.4);
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.3);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-orange: rgba(255, 119, 0, 0.38);
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Canvas Embers */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99;
}

/* Tactical HUD Scanline & Grid */
.hud-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hud-grid-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(255, 119, 0, 0.03) 50%, 
    rgba(0, 0, 0, 0.25) 51%);
  background-size: 100% 4px;
  pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #1f2733;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* Top Announcement */
.top-banner {
  background: linear-gradient(90deg, #181111, #331208, #181111);
  border-bottom: 1px solid var(--border-orange);
  padding: 9px 16px;
  font-size: 13px;
  text-align: center;
  color: #ffaa66;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1001;
}

.top-banner .badge {
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}


/* ===================================================
   REDESIGNED CLEAN & SPACIOUS NAVBAR
   =================================================== */

.top-banner {
  background: linear-gradient(90deg, #120d0d, #2a0f0f, #120d0d);
  border-bottom: 1px solid rgba(239, 68, 68, 0.3);
  padding: 11px 24px;
  font-size: 13px;
  text-align: center;
  color: #ff9999;
  font-weight: 600;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1001;
}

.top-banner .badge {
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 7, 10, 0.9);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(4, 5, 7, 0.98);
  box-shadow: 0 12px 35px rgba(0,0,0,0.85);
  border-bottom-color: var(--border-orange);
}

.navbar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  filter: drop-shadow(0 0 14px rgba(255, 119, 0, 0.6));
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: rotate(5deg) scale(1.08);
}

.brand-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.brand-title span {
  color: var(--accent-orange);
  text-shadow: 0 0 15px rgba(255, 119, 0, 0.6);
}

/* Nav Links - Centered & Spacious */
.nav-center {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  padding: 6px 4px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav Right Action Buttons */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.audio-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.audio-btn:hover, .audio-btn.playing {
  background: rgba(255, 119, 0, 0.18);
  border-color: var(--accent-orange);
  color: #ffaa44;
}

.server-status-badge {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 30px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #ff7777;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.btn-account-nav {
  background: rgba(255, 119, 0, 0.08);
  border: 1px solid var(--border-orange);
  color: #ffaa44;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.btn-account-nav:hover {
  background: rgba(255, 119, 0, 0.22);
  border-color: #ff8800;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(255, 119, 0, 0.35);
}

.btn-nav-download {
  background: linear-gradient(135deg, var(--accent-orange), #d94800);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 18px var(--accent-orange-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 119, 0, 0.7);
  background: linear-gradient(135deg, #ff881a, #e65200);
}.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
  background: #030406;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/img/hero-cliff-jump.jpg') center/cover no-repeat;
  transform: scale(1.02);
  animation: slow-pan 25s ease-in-out infinite alternate;
  filter: brightness(0.85) contrast(1.1);
  z-index: 1;
}

@keyframes slow-pan {
  0% { transform: scale(1.02) translate(0, 0); }
  50% { transform: scale(1.08) translate(-1%, -1%); }
  100% { transform: scale(1.04) translate(1%, 0); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.2) 0%, rgba(6, 7, 10, 0.85) 75%, var(--bg-main) 100%),
              linear-gradient(180deg, rgba(6, 7, 10, 0.4) 0%, rgba(6, 7, 10, 0.95) 100%);
  z-index: 2;
}

/* Tactical HUD Elements in Hero */
.tactical-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hud-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 119, 0, 0.4);
}

.hud-tl { top: 30px; left: 30px; border-right: none; border-bottom: none; }
.hud-tr { top: 30px; right: 30px; border-left: none; border-bottom: none; }
.hud-bl { bottom: 30px; left: 30px; border-right: none; border-top: none; }
.hud-br { bottom: 30px; right: 30px; border-left: none; border-top: none; }

.hud-coords {
  position: absolute;
  bottom: 35px;
  right: 70px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 119, 0, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 980px;
  text-align: center;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-badge-dev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.5);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  color: #ff7777;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}

.hero-badge-forge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 119, 0, 0.15);
  border: 1px solid var(--border-orange);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  color: #ffaa44;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(48px, 8.5vw, 88px);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.02;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 6px 50px rgba(0,0,0,0.95);
}

.hero-title span {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 35px rgba(255, 119, 0, 0.7);
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #e5e7eb;
  max-width: 780px;
  margin: 0 auto 36px auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Whitelist Notice Box */
.whitelist-banner-box {
  background: rgba(20, 14, 14, 0.75);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  padding: 16px 24px;
  max-width: 720px;
  margin: 0 auto 36px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  color: #fca5a5;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
}

.btn-primary-epic {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #ff7700 0%, #d94800 100%);
  color: #fff;
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(255, 119, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 160, 60, 0.5);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary-epic::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary-epic:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 45px rgba(255, 119, 0, 0.8);
  background: linear-gradient(135deg, #ff881a 0%, #e65200 100%);
}

.btn-primary-epic:hover::after {
  left: 100%;
}

.btn-discord-epic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(88, 101, 242, 0.15);
  color: #e0e7ff;
  padding: 18px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(88, 101, 242, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.btn-discord-epic:hover {
  background: rgba(88, 101, 242, 0.35);
  border-color: #5865F2;
  color: #fff;
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
  transform: translateY(-3px);
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #fff;
}

.stat-num span {
  color: var(--accent-orange);
}

.stat-label-hero {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================================
   CONTAINER & SECTIONS
   =================================================== */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px;
  position: relative;
  z-index: 4;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 680px;
  margin: 14px auto 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-orange);
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.2);
}

.feature-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 38px 28px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}

.step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), #d94800);
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--accent-orange-glow);
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.step-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* Download Section (Secure Launcher) */
.download-section {
  background: linear-gradient(180deg, rgba(22, 26, 36, 0.92), rgba(10, 13, 18, 0.98));
  border: 1px solid var(--border-orange);
  border-radius: 20px;
  padding: 65px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.8);
}

.download-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 119, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.download-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #f59e0b;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.download-title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.download-desc {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto 36px auto;
}

.download-info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
}

.download-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-info-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-orange);
}

/* Secure Connection Box (NO IP DISPLAYED) */
.secure-access-box {
  background: rgba(8, 10, 14, 0.85);
  border: 1px solid rgba(255, 119, 0, 0.25);
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.secure-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.secure-icon {
  font-size: 24px;
}

.secure-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.secure-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.secure-badge-live {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* FAQ Accordion */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--border-orange);
  background: var(--bg-card-hover);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.faq-arrow {
  transition: transform 0.2s ease;
  font-size: 18px;
  color: var(--accent-orange);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* Footer */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: 50px 24px 30px 24px;
  color: var(--text-dim);
  font-size: 14px;
  position: relative;
  z-index: 4;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-copy {
  max-width: 1240px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 12px;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats-row { flex-direction: column; gap: 16px; }
  .secure-access-box { flex-direction: column; text-align: center; }
  .hud-coords { display: none; }
}
/* SVG Icons Styles & Glows */
.svg-inline {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(255, 119, 0, 0.6));
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.15) rotate(-5deg);
}

.whitelist-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
}

.whitelist-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: #ef4444;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.secure-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 119, 0, 0.15);
  border: 1px solid rgba(255, 119, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.secure-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  background: rgba(255, 119, 0, 0.2);
  transform: rotate(180deg);
}

/* ===================================================
   ACCOUNT MODAL (SYNCHRONIZED WITH LAUNCHER)
   =================================================== */

.btn-account-nav {
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid var(--border-orange);
  color: #ffaa44;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.btn-account-nav svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.btn-account-nav:hover {
  background: rgba(255, 119, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
}

/* Modal Backdrop */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.auth-card {
  background: linear-gradient(180deg, #131720 0%, #0c0f15 100%);
  border: 1px solid var(--border-orange);
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  padding: 34px 28px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 119, 0, 0.15);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active .auth-card {
  transform: translateY(0) scale(1);
}

.auth-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #9ca3af;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.auth-close-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.auth-tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-orange), #d94800);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255, 119, 0, 0.4);
}

.auth-form-group {
  margin-bottom: 16px;
  text-align: left;
}

.auth-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-input {
  width: 100%;
  background: #090c10;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.auth-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 12px rgba(255, 119, 0, 0.25);
}

.auth-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-orange), #d94800);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
  transition: all 0.2s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 0, 0.6);
}

.auth-message {
  margin-top: 14px;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  display: none;
}

.auth-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.auth-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.user-badge-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.user-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 2px solid var(--accent-orange);
}


/* ===================================================
   ULTRA-TACTICAL GAMING BUTTONS & LUXURY UI
   =================================================== */

/* 1. Tactical Brand Capsule */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.08) 0%, rgba(15, 18, 24, 0.6) 100%);
  border: 1px solid rgba(255, 119, 0, 0.3);
  padding: 6px 18px 6px 8px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.brand:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.35);
  transform: translateY(-1px);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(255, 119, 0, 0.6));
}

.brand-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
}

.brand-title span {
  color: var(--accent-orange);
  text-shadow: 0 0 12px rgba(255, 119, 0, 0.7);
}

/* 2. Tactical Navigation Bar Tabs */
.nav-center {
  background: rgba(12, 15, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  padding: 5px 12px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 119, 0, 0.15);
  box-shadow: 0 0 15px rgba(255, 119, 0, 0.25);
  transform: translateY(-1px);
}

/* 3. Tactical Action Buttons in Nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Audio Capsule Button */
.audio-btn {
  background: linear-gradient(180deg, #181d26 0%, #0e1218 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}

.audio-btn:hover, .audio-btn.playing {
  background: linear-gradient(180deg, #241c15 0%, #15100b 100%);
  border-color: var(--accent-orange);
  color: #ffaa44;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
  transform: translateY(-2px);
}

/* Account Button (Glass & Orange Neon Border) */
.btn-account-nav {
  background: linear-gradient(180deg, rgba(30, 24, 20, 0.9) 0%, rgba(18, 14, 12, 0.95) 100%);
  border: 1px solid var(--border-orange);
  color: #ffaa44;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.18), inset 0 1px 0 rgba(255, 160, 60, 0.25);
  transition: all 0.2s ease;
}

.btn-account-nav:hover {
  background: linear-gradient(180deg, rgba(45, 30, 20, 0.95) 0%, rgba(28, 18, 12, 1) 100%);
  border-color: #ff8800;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.45);
}

/* Dev & Staff Pill */
.server-status-badge {
  background: linear-gradient(180deg, #1e1313 0%, #130a0a 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  color: #ff7777;
  font-family: var(--font-mono);
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Launcher Nav CTA (Beveled Tactical Glow) */
.btn-nav-download {
  background: linear-gradient(180deg, #ff8800 0%, #d44400 100%);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 200, 120, 0.6);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 119, 0, 0.8);
  background: linear-gradient(180deg, #ffa020 0%, #e65000 100%);
}

/* 4. Giant Tactical Hero Buttons */
.btn-primary-epic {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #ff8400 0%, #c93e00 100%);
  color: #ffffff;
  padding: 20px 44px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(255, 119, 0, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 200, 100, 0.7);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary-epic::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-primary-epic:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 45px rgba(255, 119, 0, 0.9), inset 0 2px 0 rgba(255, 255, 255, 0.6);
  background: linear-gradient(180deg, #ffa020 0%, #e64800 100%);
}

.btn-primary-epic:hover::after {
  left: 100%;
}

.btn-discord-epic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #262c45 0%, #151829 100%);
  color: #e0e7ff;
  padding: 20px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(88, 101, 242, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}

.btn-discord-epic:hover {
  background: linear-gradient(180deg, #374066 0%, #1f233d 100%);
  border-color: #5865F2;
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(88, 101, 242, 0.5);
  transform: translateY(-3px);
}

/* Compact Music Icon Button */
.audio-btn-icon {
  background: linear-gradient(180deg, #181d26 0%, #0e1218 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}

.svg-music-icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent-orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 0 6px rgba(255, 119, 0, 0.5));
}

.audio-btn-icon:hover, .audio-btn-icon.playing {
  background: linear-gradient(180deg, #281d15 0%, #17100b 100%);
  border-color: var(--accent-orange);
  color: #ffaa44;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.35);
  transform: translateY(-2px);
}

/* Ultra-Clean Circular Music Button */
.audio-btn-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(180deg, #1e2430 0%, #10141c 100%);
  border: 1px solid rgba(255, 119, 0, 0.45);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  flex-shrink: 0;
  padding: 0;
}

.audio-btn-icon:hover {
  border-color: #ff8800;
  box-shadow: 0 0 20px rgba(255, 119, 0, 0.6);
  transform: translateY(-2px);
}

.audio-btn-icon.playing {
  border-color: #ff7700;
  box-shadow: 0 0 22px rgba(255, 119, 0, 0.7);
  background: linear-gradient(180deg, #302015 0%, #1a1008 100%);
}

.audio-btn-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ff7700;
  stroke-width: 2.2;
  fill: none;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 119, 0, 0.6));
}

/* Microsoft Account Linking Button & Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.btn-microsoft-auth {
  width: 100%;
  background: linear-gradient(180deg, #1f2430 0%, #121620 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.btn-microsoft-auth:hover {
  background: linear-gradient(180deg, #2b3242 0%, #1a202e 100%);
  border-color: #00a4ef;
  box-shadow: 0 6px 20px rgba(0, 164, 239, 0.35);
  transform: translateY(-2px);
}

.btn-microsoft-auth svg {
  flex-shrink: 0;
}

/* Skin Sync Box Styling */
.skin-sync-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  text-align: left;
}

.skin-sync-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.skin-hint {
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
  line-height: 1.4;
}

/* Password Eye Toggle Styling */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper .auth-input {
  padding-right: 42px;
}

.btn-toggle-pw {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s ease;
}

.btn-toggle-pw:hover {
  color: var(--accent-orange);
}

.btn-toggle-pw svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Complete Account Profile Modal */
.profile-card {
  text-align: center;
}

.profile-header-banner {
  background: linear-gradient(180deg, rgba(255, 119, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
  border: 1px solid var(--border-orange);
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 24px;
  position: relative;
}

.profile-avatar-large {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 119, 0, 0.5);
  margin-bottom: 12px;
}

.profile-username {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.profile-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 6px;
  text-transform: uppercase;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.profile-info-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
}

.profile-info-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.profile-info-value {
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  font-family: var(--font-mono);
  word-break: break-all;
}

.btn-logout {
  width: 100%;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ff7777;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

/* ===================================================
   DAYZCRAFT - OFFICIAL SHOP SECTION (BOUTIQUE)
   =================================================== */

.nav-link-shop {
  color: #ffaa44 !important;
  position: relative;
}

.badge-shop-neon {
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.25), rgba(255, 60, 0, 0.35));
  border: 1px solid var(--accent-orange);
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 119, 0, 0.4);
  font-weight: 900;
  letter-spacing: 1px;
}

.shop-warning-banner {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 12px;
  padding: 16px 24px;
  max-width: 860px;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #fbbf24;
  backdrop-filter: blur(10px);
  text-align: left;
}

.shop-warning-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.shop-user-wallet {
  background: linear-gradient(180deg, #131822 0%, #0c0f16 100%);
  border: 1px solid var(--border-orange);
  border-radius: 14px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wallet-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 119, 0, 0.15);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.wallet-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wallet-val {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-mono);
}

/* Shop Category Tabs */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.shop-item-card {
  background: linear-gradient(180deg, #141824 0%, #0d1017 100%);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

.shop-item-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 119, 0, 0.2);
}

.shop-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 119, 0, 0.2);
  border: 1px solid var(--accent-orange);
  color: #ffaa44;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-item-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px auto;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.2);
}

.shop-item-title {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.shop-item-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 42px;
}

.shop-item-price {
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffaa44;
  margin-bottom: 18px;
}

.btn-shop-buy {
  width: 100%;
  background: linear-gradient(180deg, #2b3345 0%, #171d29 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-shop-buy:hover {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.3) 0%, rgba(185, 28, 28, 0.3) 100%);
  border-color: #ef4444;
  color: #ff9999;
}


.shop-svg-icon {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Live Player Counter Pulse */
.status-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
  display: inline-block;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.status-dot-pulse.offline {
  background-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  animation: none;
}


/* DZC Coin Visual Art Scaling */
.dzc-coin-art {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.shop-item-card:hover .dzc-coin-art {
  transform: scale(1.12) rotate(3deg);
}

.dzc-box-single {
  background: radial-gradient(circle, rgba(255, 170, 68, 0.25) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-stack {
  background: radial-gradient(circle, rgba(255, 119, 0, 0.3) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-double {
  background: radial-gradient(circle, rgba(255, 185, 0, 0.3) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-pyramid {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-mountain {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-vault {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, rgba(0,0,0,0) 70%);
}


/* Active Shop Button Styling */
.btn-buy-active {
  width: 100%;
  background: linear-gradient(135deg, #ff7700 0%, #ff4400 100%);
  border: 1px solid #ffaa44;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-buy-active:hover {
  background: linear-gradient(135deg, #ff8811 0%, #ff5500 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 0, 0.6);
}

/* Payment Method Cards */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.payment-method-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method-card.active, .payment-method-card:hover {
  border-color: var(--accent-orange);
  background: rgba(255, 119, 0, 0.15);
  box-shadow: 0 0 12px rgba(255, 119, 0, 0.3);
}

.payment-method-name {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
}

.order-summary-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* 3D HD Coin Images Styling - Seamless Floating Blend */
.shop-item-img-box {
  width: 100%;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  background: transparent;
  border: none;
}

.dzc-img-3d {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 50%;
  border: none;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle at center, black 62%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at center, black 62%, transparent 95%);
  filter: drop-shadow(0 0 18px rgba(255, 170, 0, 0.45));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.shop-item-card:hover .dzc-img-3d {
  transform: scale(1.14) translateY(-3px);
  filter: drop-shadow(0 0 25px rgba(255, 119, 0, 0.75));
}


.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.auth-card {
  background: linear-gradient(180deg, #131720 0%, #0c0f15 100%);
  border: 1px solid var(--border-orange);
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  padding: 34px 28px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 119, 0, 0.15);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active .auth-card {
  transform: translateY(0) scale(1);
}

.auth-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #9ca3af;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.auth-close-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.auth-tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-orange), #d94800);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255, 119, 0, 0.4);
}

.auth-form-group {
  margin-bottom: 16px;
  text-align: left;
}

.auth-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-input {
  width: 100%;
  background: #090c10;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.auth-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 12px rgba(255, 119, 0, 0.25);
}

.auth-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-orange), #d94800);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
  transition: all 0.2s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 0, 0.6);
}

.auth-message {
  margin-top: 14px;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  display: none;
}

.auth-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.auth-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.user-badge-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.user-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 2px solid var(--accent-orange);
}


/* ===================================================
   ULTRA-TACTICAL GAMING BUTTONS & LUXURY UI
   =================================================== */

/* 1. Tactical Brand Capsule */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.08) 0%, rgba(15, 18, 24, 0.6) 100%);
  border: 1px solid rgba(255, 119, 0, 0.3);
  padding: 6px 18px 6px 8px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.brand:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.35);
  transform: translateY(-1px);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(255, 119, 0, 0.6));
}

.brand-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
}

.brand-title span {
  color: var(--accent-orange);
  text-shadow: 0 0 12px rgba(255, 119, 0, 0.7);
}

/* 2. Tactical Navigation Bar Tabs */
.nav-center {
  background: rgba(12, 15, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  padding: 5px 12px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 119, 0, 0.15);
  box-shadow: 0 0 15px rgba(255, 119, 0, 0.25);
  transform: translateY(-1px);
}

/* 3. Tactical Action Buttons in Nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Audio Capsule Button */
.audio-btn {
  background: linear-gradient(180deg, #181d26 0%, #0e1218 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}

.audio-btn:hover, .audio-btn.playing {
  background: linear-gradient(180deg, #241c15 0%, #15100b 100%);
  border-color: var(--accent-orange);
  color: #ffaa44;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
  transform: translateY(-2px);
}

/* Account Button (Glass & Orange Neon Border) */
.btn-account-nav {
  background: linear-gradient(180deg, rgba(30, 24, 20, 0.9) 0%, rgba(18, 14, 12, 0.95) 100%);
  border: 1px solid var(--border-orange);
  color: #ffaa44;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.18), inset 0 1px 0 rgba(255, 160, 60, 0.25);
  transition: all 0.2s ease;
}

.btn-account-nav:hover {
  background: linear-gradient(180deg, rgba(45, 30, 20, 0.95) 0%, rgba(28, 18, 12, 1) 100%);
  border-color: #ff8800;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.45);
}

/* Dev & Staff Pill */
.server-status-badge {
  background: linear-gradient(180deg, #1e1313 0%, #130a0a 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  color: #ff7777;
  font-family: var(--font-mono);
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Launcher Nav CTA (Beveled Tactical Glow) */
.btn-nav-download {
  background: linear-gradient(180deg, #ff8800 0%, #d44400 100%);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 200, 120, 0.6);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 119, 0, 0.8);
  background: linear-gradient(180deg, #ffa020 0%, #e65000 100%);
}

/* 4. Giant Tactical Hero Buttons */
.btn-primary-epic {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #ff8400 0%, #c93e00 100%);
  color: #ffffff;
  padding: 20px 44px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(255, 119, 0, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 200, 100, 0.7);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary-epic::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-primary-epic:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 45px rgba(255, 119, 0, 0.9), inset 0 2px 0 rgba(255, 255, 255, 0.6);
  background: linear-gradient(180deg, #ffa020 0%, #e64800 100%);
}

.btn-primary-epic:hover::after {
  left: 100%;
}

.btn-discord-epic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #262c45 0%, #151829 100%);
  color: #e0e7ff;
  padding: 20px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(88, 101, 242, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}

.btn-discord-epic:hover {
  background: linear-gradient(180deg, #374066 0%, #1f233d 100%);
  border-color: #5865F2;
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(88, 101, 242, 0.5);
  transform: translateY(-3px);
}

/* Compact Music Icon Button */
.audio-btn-icon {
  background: linear-gradient(180deg, #181d26 0%, #0e1218 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}

.svg-music-icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent-orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 0 6px rgba(255, 119, 0, 0.5));
}

.audio-btn-icon:hover, .audio-btn-icon.playing {
  background: linear-gradient(180deg, #281d15 0%, #17100b 100%);
  border-color: var(--accent-orange);
  color: #ffaa44;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.35);
  transform: translateY(-2px);
}

/* Ultra-Clean Circular Music Button */
.audio-btn-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(180deg, #1e2430 0%, #10141c 100%);
  border: 1px solid rgba(255, 119, 0, 0.45);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  flex-shrink: 0;
  padding: 0;
}

.audio-btn-icon:hover {
  border-color: #ff8800;
  box-shadow: 0 0 20px rgba(255, 119, 0, 0.6);
  transform: translateY(-2px);
}

.audio-btn-icon.playing {
  border-color: #ff7700;
  box-shadow: 0 0 22px rgba(255, 119, 0, 0.7);
  background: linear-gradient(180deg, #302015 0%, #1a1008 100%);
}

.audio-btn-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ff7700;
  stroke-width: 2.2;
  fill: none;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 119, 0, 0.6));
}

/* Microsoft Account Linking Button & Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.btn-microsoft-auth {
  width: 100%;
  background: linear-gradient(180deg, #1f2430 0%, #121620 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.btn-microsoft-auth:hover {
  background: linear-gradient(180deg, #2b3242 0%, #1a202e 100%);
  border-color: #00a4ef;
  box-shadow: 0 6px 20px rgba(0, 164, 239, 0.35);
  transform: translateY(-2px);
}

.btn-microsoft-auth svg {
  flex-shrink: 0;
}

/* Skin Sync Box Styling */
.skin-sync-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  text-align: left;
}

.skin-sync-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.skin-hint {
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
  line-height: 1.4;
}

/* Password Eye Toggle Styling */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper .auth-input {
  padding-right: 42px;
}

.btn-toggle-pw {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s ease;
}

.btn-toggle-pw:hover {
  color: var(--accent-orange);
}

.btn-toggle-pw svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Complete Account Profile Modal */
.profile-card {
  text-align: center;
}

.profile-header-banner {
  background: linear-gradient(180deg, rgba(255, 119, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
  border: 1px solid var(--border-orange);
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 24px;
  position: relative;
}

.profile-avatar-large {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 119, 0, 0.5);
  margin-bottom: 12px;
}

.profile-username {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.profile-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 6px;
  text-transform: uppercase;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.profile-info-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
}

.profile-info-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.profile-info-value {
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  font-family: var(--font-mono);
  word-break: break-all;
}

.btn-logout {
  width: 100%;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ff7777;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

/* ===================================================
   DAYZCRAFT - OFFICIAL SHOP SECTION (BOUTIQUE)
   =================================================== */

.nav-link-shop {
  color: #ffaa44 !important;
  position: relative;
}

.badge-shop-neon {
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.25), rgba(255, 60, 0, 0.35));
  border: 1px solid var(--accent-orange);
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 119, 0, 0.4);
  font-weight: 900;
  letter-spacing: 1px;
}

.shop-warning-banner {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 12px;
  padding: 16px 24px;
  max-width: 860px;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #fbbf24;
  backdrop-filter: blur(10px);
  text-align: left;
}

.shop-warning-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.shop-user-wallet {
  background: linear-gradient(180deg, #131822 0%, #0c0f16 100%);
  border: 1px solid var(--border-orange);
  border-radius: 14px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wallet-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 119, 0, 0.15);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.wallet-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wallet-val {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-mono);
}

/* Shop Category Tabs */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.shop-item-card {
  background: linear-gradient(180deg, #141824 0%, #0d1017 100%);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

.shop-item-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 119, 0, 0.2);
}

.shop-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 119, 0, 0.2);
  border: 1px solid var(--accent-orange);
  color: #ffaa44;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-item-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px auto;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.2);
}

.shop-item-title {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.shop-item-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 42px;
}

.shop-item-price {
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffaa44;
  margin-bottom: 18px;
}

.btn-shop-buy {
  width: 100%;
  background: linear-gradient(180deg, #2b3345 0%, #171d29 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-shop-buy:hover {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.3) 0%, rgba(185, 28, 28, 0.3) 100%);
  border-color: #ef4444;
  color: #ff9999;
}


.shop-svg-icon {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Live Player Counter Pulse */
.status-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
  display: inline-block;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.status-dot-pulse.offline {
  background-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  animation: none;
}


/* DZC Coin Visual Art Scaling */
.dzc-coin-art {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.shop-item-card:hover .dzc-coin-art {
  transform: scale(1.12) rotate(3deg);
}

.dzc-box-single {
  background: radial-gradient(circle, rgba(255, 170, 68, 0.25) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-stack {
  background: radial-gradient(circle, rgba(255, 119, 0, 0.3) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-double {
  background: radial-gradient(circle, rgba(255, 185, 0, 0.3) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-pyramid {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-mountain {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(0,0,0,0) 70%);
}

.dzc-box-vault {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, rgba(0,0,0,0) 70%);
}


/* Active Shop Button Styling */
.btn-buy-active {
  width: 100%;
  background: linear-gradient(135deg, #ff7700 0%, #ff4400 100%);
  border: 1px solid #ffaa44;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-buy-active:hover {
  background: linear-gradient(135deg, #ff8811 0%, #ff5500 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 0, 0.6);
}

/* Payment Method Cards */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.payment-method-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method-card.active, .payment-method-card:hover {
  border-color: var(--accent-orange);
  background: rgba(255, 119, 0, 0.15);
  box-shadow: 0 0 12px rgba(255, 119, 0, 0.3);
}

.payment-method-name {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
}

.order-summary-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* 3D HD Coin Images Styling */
.shop-item-img-box {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(255, 119, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 80%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dzc-img-3d {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.6));
}

.shop-item-card:hover .dzc-img-3d {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 20px rgba(255, 119, 0, 0.45));
}



/* ===================================================
   MODERN AAA TACTICAL NAVBAR ACTIONS
   =================================================== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* 1. Music Ambient Button */
.audio-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #94a3b8;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  box-shadow: none;
}

.audio-btn-icon svg {
  width: 18px;
  height: 18px;
  stroke: #94a3b8;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.25s ease;
}

.audio-btn-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.audio-btn-icon:hover svg {
  stroke: #fff;
}

.audio-btn-icon.playing {
  background: rgba(255, 119, 0, 0.12);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.audio-btn-icon.playing svg {
  stroke: var(--accent-orange);
}

/* 2. Account Button (Mon Compte / Pseudo) */
.btn-account-nav {
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #f1f5f9;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
}

.btn-account-nav svg {
  width: 16px;
  height: 16px;
  stroke: #94a3b8;
  stroke-width: 2;
  fill: none;
  transition: all 0.25s ease;
}

.btn-account-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
}

.btn-account-nav:hover svg {
  stroke: var(--accent-orange);
}

/* 3. Download Launcher Button */
.btn-nav-download {
  height: 40px;
  background: linear-gradient(135deg, #ff7700 0%, #ff4400 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 119, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-download svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-nav-download:hover {
  background: linear-gradient(135deg, #ff8811 0%, #ff5500 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255, 119, 0, 0.55);
}



/* ===================================================
   SPACIOUS SHOP CARDS & HD NON-CLIPPED 3D COIN ART
   =================================================== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.shop-item-card {
  background: rgba(13, 16, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.shop-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-orange);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 119, 0, 0.25);
}

.shop-card-featured {
  border-color: rgba(255, 153, 0, 0.6);
  background: radial-gradient(circle at top, rgba(255, 119, 0, 0.12) 0%, rgba(13, 16, 22, 0.9) 70%);
  box-shadow: 0 8px 24px rgba(255, 119, 0, 0.2);
}

.shop-card-ultimate {
  border-color: rgba(239, 68, 68, 0.6);
  background: radial-gradient(circle at top, rgba(239, 68, 68, 0.12) 0%, rgba(13, 16, 22, 0.9) 70%);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
}

.shop-badge-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.shop-card-badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
}

.badge-bestseller {
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.35), rgba(255, 85, 0, 0.35));
  color: #ffb900;
  border: 1px solid rgba(255, 185, 0, 0.6);
  box-shadow: 0 0 14px rgba(255, 185, 0, 0.4);
  animation: pulse-glow-amber 2.5s infinite;
}

.badge-ultimate {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.35), rgba(185, 28, 28, 0.35));
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.4);
}

@keyframes pulse-glow-amber {
  0% { box-shadow: 0 0 6px rgba(255, 185, 0, 0.3); }
  50% { box-shadow: 0 0 18px rgba(255, 185, 0, 0.7); }
  100% { box-shadow: 0 0 6px rgba(255, 185, 0, 0.3); }
}

/* 3D HD Image Frame - Spacious & Non-Clipped */
.shop-item-img-box {
  width: 100%;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 16px 0;
  position: relative;
  background: transparent;
}

.dzc-img-3d {
  max-width: 165px;
  max-height: 165px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.75));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.shop-item-card:hover .dzc-img-3d {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 12px 28px rgba(255, 119, 0, 0.55));
}



/* ===================================================
   100% PURE TRANSPARENT FLOATING 3D COINS (NO BACKGROUND BOX)
   =================================================== */
.shop-item-img-box {
  width: 100% !important;
  height: 175px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 6px 0 16px 0 !important;
  position: relative !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.dzc-img-3d {
  max-width: 160px !important;
  max-height: 160px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border: none !important;
  border-radius: 0 !important;
  mix-blend-mode: screen !important;
  filter: drop-shadow(0 0 18px rgba(255, 170, 0, 0.4)) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease !important;
}

.shop-item-card:hover .dzc-img-3d {
  transform: scale(1.12) translateY(-4px) !important;
  filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.75)) !important;
}
