/* ===================================================
   LORDS MOBILE STORE - Main Stylesheet
   Dark Fantasy Theme | Gold & Purple Palette
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #7c3aed;
  --primary-light: #9d5af0;
  --primary-dark: #5b21b6;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --accent: #e11d48;
  --bg-dark: #0a0614;
  --bg-card: rgba(15, 8, 30, 0.85);
  --bg-glass: rgba(124, 58, 237, 0.08);
  --border-glass: rgba(124, 58, 237, 0.25);
  --border-gold: rgba(245, 158, 11, 0.3);
  --text-primary: #f1f0fb;
  --text-secondary: #c4b5fd;
  --text-muted: #8b7ba8;
  --gradient-hero: linear-gradient(135deg, #0a0614 0%, #1a0a2e 40%, #0d1844 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  --gradient-luxury-gold: linear-gradient(135deg, #ffe0a3 0%, #d4af37 35%, #fffbf0 50%, #aa7c11 70%, #f3e5ab 100%);
  --gradient-purple: linear-gradient(135deg, #7c3aed, #9d5af0, #6d28d9);
  --luxury-gold: #d4af37;
  --luxury-gold-light: #ffe0a3;
  --luxury-gold-dark: #aa7c11;
  --shadow-purple: 0 0 30px rgba(124, 58, 237, 0.4);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 30%, var(--gold-light) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

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

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 6, 20, 0.97);
  backdrop-filter: blur(20px); /* desktop only — overridden for mobile below */
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-top: 15px;
}

.logo-crown-img {
  position: absolute;
  top: -12px;
  left: -8px;
  width: 30px;
  height: auto;
  transform: rotate(-12deg);
  animation: logo-float 3.5s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-3px) rotate(-9deg); }
}

.nav-logo-text {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: var(--gradient-luxury-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  display: inline-block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
  line-height: 1.2;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav-cta {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35) !important;
  border: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.55) !important;
  background: linear-gradient(135deg, #34d399, #059669) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

/* ===== CSS ANIMATED BACKGROUND ===== */
.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-bg-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 80%, rgba(120, 40, 200, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 80% 20%, rgba(180, 60, 20, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(15, 10, 40, 1) 0%, rgba(10, 6, 20, 1) 100%);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-orb--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, rgba(124, 58, 237, 0.05) 40%, transparent 70%);
  filter: blur(60px);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.hero-bg-orb--2 {
  width: 450px;
  height: 450px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(220, 100, 10, 0.04) 40%, transparent 70%);
  filter: blur(50px);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

.hero-bg-orb--3 {
  width: 350px;
  height: 350px;
  top: 35%;
  left: 45%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.1) 0%, transparent 60%);
  filter: blur(55px);
  animation: orbDrift3 25s ease-in-out infinite alternate;
}

.hero-bg-orb--4 {
  width: 500px;
  height: 500px;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle, rgba(100, 40, 180, 0.12) 0%, transparent 55%);
  filter: blur(65px);
  animation: orbDrift1 30s ease-in-out infinite alternate-reverse;
}

@keyframes orbDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -25px) scale(1.08); }
  66% { transform: translate(-20px, 35px) scale(0.95); }
  100% { transform: translate(25px, -15px) scale(1.04); }
}

@keyframes orbDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, -40px) scale(1.12); }
  100% { transform: translate(-25px, 20px) scale(0.92); }
}

@keyframes orbDrift3 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(-45px, 30px) scale(1.15); opacity: 1; }
  100% { transform: translate(30px, -25px) scale(0.88); opacity: 0.7; }
}

/* Star field */
.hero-bg-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 45%, rgba(255,255,255,0.3) 50%, transparent 100%),
    radial-gradient(1px 1px at 40% 10%, rgba(255,255,255,0.4) 50%, transparent 100%),
    radial-gradient(2px 2px at 55% 65%, rgba(200,180,255,0.25) 50%, transparent 100%),
    radial-gradient(1px 1px at 65% 25%, rgba(255,255,255,0.35) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 55%, rgba(255,220,150,0.3) 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.25) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 35%, rgba(200,180,255,0.2) 50%, transparent 100%),
    radial-gradient(1px 1px at 75% 85%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: starTwinkle 6s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* Vignette overlay */
.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(10, 6, 20, 0.5) 100%),
    linear-gradient(to bottom, rgba(10, 6, 20, 0.15) 0%, transparent 30%, transparent 70%, rgba(10, 6, 20, 0.95) 100%);
}

/* Animated Fog Overlay */
.hero-fog {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.04) 30%, rgba(100, 40, 180, 0.06) 50%, rgba(124, 58, 237, 0.04) 70%, transparent 100%);
  z-index: -1;
  animation: fogDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes fogDrift {
  0% { transform: translateX(-5%) scaleY(1); opacity: 0.6; }
  100% { transform: translateX(5%) scaleY(1.1); opacity: 1; }
}

/* Dynamic Cursor Glow Overlay */
.hero-glow-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.1) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  transition: background 0.15s ease;
}

.hero-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding-top: 140px;
  padding-bottom: 80px;
}

/* ===== HERO CHARACTER IMAGES ===== */
/* Characters are atmospheric background elements with CSS mask fading */
.hero-char {
  position: absolute;
  pointer-events: none !important;
  z-index: 1;
  overflow: hidden;
}

.hero-char img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none !important;
}

/* Golden Knight — large, right side, main focal point */
.hero-char--knight {
  right: -20px;
  bottom: -20px;
  width: 440px;
  height: 570px;
  z-index: 2;
  animation: heroFloat1 6s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 98%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 98%);
}

.hero-char--knight img {
  transform: translate(calc(var(--px, 0) * -35px), calc(var(--py, 0) * -35px)) scale(1.02);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Crystal Knight — medium, positioned behind Golden Knight (no longer under text) */
.hero-char--crystal {
  right: 220px;
  bottom: 10px;
  width: 290px;
  height: 350px;
  z-index: 1;
  opacity: 0.65;
  animation: heroFloat2 8s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 96%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 96%);
}

.hero-char--crystal img {
  transform: translate(calc(var(--px, 0) * -15px), calc(var(--py, 0) * -15px));
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Beast — smaller, top right corner, atmospheric */
.hero-char--beast {
  right: 10px;
  top: 120px;
  width: 280px;
  height: 260px;
  z-index: 1;
  opacity: 0.55;
  animation: heroFloat3 7s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 95%);
}

.hero-char--beast img {
  transform: translate(calc(var(--px, 0) * -10px), calc(var(--py, 0) * -10px)) rotate(calc(var(--px, 0) * 4deg));
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-6px) rotate(-0.5deg) scale(1.01); }
}

@keyframes heroFloat3 {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-14px) scale(1.03) rotate(1deg); }
}

/* ===== FLOATING EMBERS ===== */
.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: var(--ember-size, 4px);
  height: var(--ember-size, 4px);
  border-radius: 50%;
  background: radial-gradient(circle, #ff8833, #ff4400);
  box-shadow: 0 0 6px 2px rgba(255, 100, 0, 0.5), 0 0 14px 3px rgba(255, 60, 0, 0.2);
  animation: emberRise var(--ember-dur, 6s) var(--ember-del, 0s) ease-in-out infinite;
  opacity: 0;
}

.ember:nth-child(1) { left: 8%; --ember-dur: 5.5s; --ember-del: 0s; --ember-size: 3px; }
.ember:nth-child(2) { left: 18%; --ember-dur: 7s; --ember-del: 1s; --ember-size: 5px; }
.ember:nth-child(3) { left: 32%; --ember-dur: 6s; --ember-del: 0.4s; --ember-size: 3px; }
.ember:nth-child(4) { left: 45%; --ember-dur: 8.5s; --ember-del: 2.2s; --ember-size: 4px; }
.ember:nth-child(5) { left: 58%; --ember-dur: 5s; --ember-del: 0.8s; --ember-size: 5px; }
.ember:nth-child(6) { left: 68%; --ember-dur: 7.5s; --ember-del: 1.5s; --ember-size: 3px; }
.ember:nth-child(7) { left: 78%; --ember-dur: 6.5s; --ember-del: 0.2s; --ember-size: 4px; }
.ember:nth-child(8) { left: 88%; --ember-dur: 9s; --ember-del: 2.8s; --ember-size: 3px; }
.ember:nth-child(9) { left: 52%; --ember-dur: 6.8s; --ember-del: 3.5s; --ember-size: 2px; }
.ember:nth-child(10) { left: 22%; --ember-dur: 8s; --ember-del: 1.8s; --ember-size: 4px; }

@keyframes emberRise {
  0% {
    bottom: -3%;
    opacity: 0;
    transform: translateX(0) scale(0.4);
  }
  8% {
    opacity: 0.85;
    transform: scale(0.8);
  }
  40% {
    opacity: 0.6;
    transform: translateX(25px) scale(1);
  }
  70% {
    opacity: 0.3;
    transform: translateX(-15px) scale(0.8);
  }
  100% {
    bottom: 105%;
    opacity: 0;
    transform: translateX(10px) scale(0.2);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .line1 {
  display: block;
  color: #fff;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
}

.hero-title .line2 {
  display: block;
  background: var(--gradient-luxury-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.35));
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(196, 181, 253, 0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-gold);
  color: #1a0a2e;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid var(--border-glass);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-glass);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===== MARQUEE ===== */
.marquee-section {
  position: relative;
  z-index: 2;
  padding: 0;
  background: rgba(124, 58, 237, 0.08);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

.marquee-item .sep {
  color: var(--gold);
  font-size: 1.2rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

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

.service-card {
  position: relative;
  background: rgba(18, 10, 36, 0.6);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--gradient-purple);
  transition: var(--transition);
}

.service-card.gold-card::before {
  background: var(--gradient-gold);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15), 0 20px 40px rgba(0,0,0,0.4);
}

.service-card.gold-card:hover {
  border-color: var(--luxury-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), 0 20px 40px rgba(0,0,0,0.4);
}

.service-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: var(--transition);
}

.service-card.gold-card .service-glow {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border-glass);
  position: relative;
  z-index: 1;
}

.service-card.gold-card .service-icon {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}

.service-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.service-features li::before {
  content: '✦';
  color: var(--primary-light);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.service-card.gold-card .service-features li::before {
  color: var(--luxury-gold);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card.gold-card .service-link {
  color: var(--luxury-gold);
}

.service-link:hover {
  gap: 12px;
}

/* ===== ACCOUNTS SECTION ===== */
.accounts-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05) 50%, transparent);
}

.accounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.account-card {
  position: relative;
  background: rgba(18, 10, 36, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.account-card.featured {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.03);
}

.account-card.featured::after {
  content: '⭐ EN POPÜLER';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--gradient-luxury-gold);
  color: #120626;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 40px;
  transform: rotate(35deg);
}

.account-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.account-card.featured:hover {
  border-color: var(--luxury-gold);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.25);
}

.account-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  align-self: flex-start;
}

.account-card.featured .account-tier {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--luxury-gold-light);
}

.account-power {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-luxury-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.account-alliance {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.account-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
}

.spec-label {
  color: var(--text-muted);
}

.spec-value {
  color: #fff;
  font-weight: 600;
}

.account-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.price-amount {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-luxury-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-currency {
  font-size: 1rem;
  color: var(--luxury-gold-light);
  font-weight: 600;
}

.account-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: transparent;
  color: var(--luxury-gold-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
}

.account-btn:hover {
  background: var(--gradient-luxury-gold);
  border-color: transparent;
  color: #120626;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.account-card.featured .account-btn {
  background: var(--gradient-luxury-gold);
  border-color: transparent;
  color: #120626;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.account-card.featured .account-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

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

/* ===== BOT SECTION ===== */
.bot-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.bot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bot-visual {
  position: relative;
}

.bot-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-purple);
  position: relative;
  overflow: hidden;
}

.bot-dashboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.bot-dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.bot-status-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px #22c55e;
}

.bot-dash-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.bot-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.metric-value {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.metric-change {
  font-size: 0.75rem;
  color: #22c55e;
  margin-top: 2px;
}

.bot-activity {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.activity-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.activity-text {
  color: var(--text-muted);
  flex: 1;
}

.activity-time {
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.6;
}

.bot-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bot-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.bot-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bot-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.bot-feature-text h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bot-feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bot-price-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 8px;
}

.bot-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bot-price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bot-price-value {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.bot-price-value small {
  font-size: 0.8rem;
  font-family: 'Rajdhani', sans-serif;
  color: var(--text-muted);
}

/* ===== WHY US SECTION ===== */
.whyus-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04) 50%, transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transition: var(--transition);
}

.trust-card:hover::before {
  transform: scaleX(1);
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-purple);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.trust-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.trust-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.author-game {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04) 50%, transparent);
}

.faq-container {
  max-width: 820px;
  margin: 60px auto 0;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-left: 4px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.4);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary-light);
  font-size: 1.2rem;
  font-weight: 300;
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0088cc;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 25px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-glass);
  background: rgba(10, 6, 20, 0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--gold);
  text-decoration: none;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.js-enabled .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.15);
}

.float-wa {
  background: #25d366;
}

.float-tg {
  background: #0088cc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .accounts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  
  .hero-char--knight { width: 340px; height: 460px; right: 0; }
  .hero-char--crystal { width: 220px; height: 280px; right: 150px; opacity: 0.5; }
  .hero-char--beast { width: 200px; height: 190px; right: 10px; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .accounts-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bot-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat-number { font-size: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-content { padding-top: 100px; }
  .hero-char--knight { width: 280px; height: 380px; right: -10px; bottom: 0; }
  .hero-char--crystal { width: 190px; height: 240px; right: 120px; bottom: 10px; opacity: 0.5; }
  .hero-char--beast { width: 170px; height: 160px; right: 10px; top: 120px; opacity: 0.45; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 6, 20, 0.99); /* opaque — no blur on mobile for perf */
    border-bottom: 1px solid var(--border-glass);
    padding: 24px;
    gap: 4px;
    z-index: 999;
  }
  
  .nav-links.open a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  
  .hero-char--crystal { display: none; }
  .hero-char--beast { display: none; }
  .hero-char--knight { width: 200px; height: 290px; right: -8%; opacity: 0.3; }
}

/* ===== BURGUNDY FLAME BUTTON STYLE ===== */
#hero-bot-btn {
  background: linear-gradient(135deg, #4a0014, #730026, #a6003c, #730026) !important;
  background-size: 300% 300% !important;
  color: #fff1f2 !important;
  border: 1px solid rgba(251, 113, 133, 0.25) !important;
  box-shadow: 0 0 15px rgba(166, 0, 60, 0.45) !important;
  animation: flame-shift 4s ease infinite, flame-flicker 2s infinite alternate !important;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#hero-bot-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.45) 0%, rgba(220, 38, 38, 0.1) 45%, transparent 70%);
  animation: flame-burn 3.5s linear infinite !important;
  pointer-events: none;
  z-index: -1;
}

#hero-bot-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 25px rgba(225, 29, 72, 0.75), 0 0 40px rgba(166, 0, 60, 0.4) !important;
  border-color: rgba(251, 113, 133, 0.6) !important;
}

@keyframes flame-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes flame-flicker {
  0%, 100% { box-shadow: 0 0 12px rgba(166, 0, 60, 0.45), inset 0 0 8px rgba(251, 113, 133, 0.15); }
  30% { box-shadow: 0 0 16px rgba(186, 0, 60, 0.55), inset 0 0 10px rgba(251, 113, 133, 0.25); }
  50% { box-shadow: 0 0 10px rgba(146, 0, 50, 0.35), inset 0 0 6px rgba(251, 113, 133, 0.1); }
  80% { box-shadow: 0 0 18px rgba(206, 0, 70, 0.65), inset 0 0 12px rgba(251, 113, 133, 0.3); }
}

@keyframes flame-burn {
  0% { transform: translate(-10%, -10%) rotate(0deg); }
  50% { transform: translate(10%, 10%) rotate(180deg); }
  100% { transform: translate(-10%, -10%) rotate(360deg); }
}

/* ===== FARM BOT BUTTON STYLE ===== */
#hero-farm-btn {
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb, #1e3a8a) !important;
  background-size: 300% 300% !important;
  color: #eff6ff !important;
  border: 1px solid rgba(147, 197, 253, 0.25) !important;
  box-shadow: 0 0 15px rgba(30, 58, 138, 0.45) !important;
  animation: flame-shift 4s ease infinite, blue-flame-flicker 2s infinite alternate !important;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#hero-farm-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(30, 58, 138, 0.1) 45%, transparent 70%);
  animation: flame-burn 3.5s linear infinite !important;
  pointer-events: none;
  z-index: -1;
}

#hero-farm-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.75), 0 0 40px rgba(30, 58, 138, 0.4) !important;
  border-color: rgba(147, 197, 253, 0.6) !important;
}

@keyframes blue-flame-flicker {
  0%, 100% { box-shadow: 0 0 12px rgba(30, 58, 138, 0.45), inset 0 0 8px rgba(147, 197, 253, 0.15); }
  30% { box-shadow: 0 0 16px rgba(29, 78, 216, 0.55), inset 0 0 10px rgba(147, 197, 253, 0.25); }
  50% { box-shadow: 0 0 10px rgba(30, 58, 138, 0.35), inset 0 0 6px rgba(147, 197, 253, 0.1); }
  80% { box-shadow: 0 0 18px rgba(37, 99, 235, 0.65), inset 0 0 12px rgba(147, 197, 253, 0.3); }
}

/* ===== COLUMN REVERSAL FOR STAGGERED SECTIONS ===== */
.bot-inner.reverse-cols {
  direction: rtl;
}

.bot-inner.reverse-cols > * {
  direction: ltr;
}

/* ===== RESPONSIVE CTA BUTTON ALIGNMENT (PREVENT WRAPPING ON TABLET/DESKTOP) ===== */
@media (min-width: 481px) {
  .hero-buttons {
    flex-wrap: nowrap !important;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 14px 18px !important;
    font-size: 0.92rem !important;
    white-space: nowrap !important;
  }
}

/* ===== KAYNAK & MÜCEVHER SATIŞI SEKTÖRÜ ===== */
.resources-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 80%);
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
  pointer-events: none;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.resource-card-header {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
}

.resource-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.resource-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gem-wrapper {
  box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.2);
}

.wheat-wrapper {
  box-shadow: inset 0 0 15px rgba(245, 158, 11, 0.2);
}

.resource-header-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
}

.resource-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.price-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.price-desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
}

.price-val {
  color: var(--gold);
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
}

.bank-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bank-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 18px;
}

.bank-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bank-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.bank-price {
  color: var(--gold);
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
}

.bank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bank-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tags-open .bank-tag {
  background: rgba(16, 185, 129, 0.08);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.tags-closed .bank-tag {
  background: rgba(245, 158, 11, 0.08);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ===== NEW BOT DASHBOARD STYLE (BERAT BOT) ===== */
.bot-dashboard-new {
  background: #090f1d;
  border: 1.5px solid #1e293b;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', sans-serif;
  color: #f8fafc;
}

.bot-dash-banner {
  position: relative;
  height: 125px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.bot-dash-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #090f1d 15%, rgba(9, 15, 29, 0.4) 60%, rgba(9, 15, 29, 0.8) 100%);
}

.lords-logo-wrapper {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  border: 1.5px solid #d97706;
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.lords-logo-text {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: 1.5px;
}

.bot-user-status {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  margin-top: 15px;
}

.bot-avatar {
  width: 44px;
  height: 44px;
  background: #020617;
  border: 2px solid #0ea5e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

.bot-status-info {
  display: flex;
  flex-direction: column;
}

.bot-user-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.bot-status-badge {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  width: max-content;
  margin-top: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bot-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.metric-card-new {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.metric-card-new:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.06);
}

.metric-card-left {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-card-right {
  display: flex;
  flex-direction: column;
}

.metric-card-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.metric-card-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.metric-card-change {
  font-size: 0.7rem;
  color: #22c55e;
  margin-top: 3px;
  font-weight: 600;
}

.bot-mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}

.mini-feature-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-icon {
  font-size: 1.25rem;
}

.mini-text {
  display: flex;
  flex-direction: column;
}

.mini-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.5px;
}

.mini-val {
  font-size: 0.7rem;
  font-weight: 600;
  color: #0ea5e9;
  margin-top: 1px;
}

.bot-recent-activities {
  padding: 0 16px 16px;
}

.activities-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: #475569;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.activity-list {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 4px;
}

.activity-row-new {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  font-size: 0.8rem;
}

.activity-row-new:last-child {
  border-bottom: none;
}

.row-icon {
  margin-right: 12px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.row-text {
  color: #cbd5e1;
  flex-grow: 1;
}

.row-time {
  color: #475569;
  font-size: 0.75rem;
}

.bot-dash-footer {
  background: rgba(245, 158, 11, 0.06);
  border-top: 1.5px solid rgba(245, 158, 11, 0.15);
  padding: 10px;
  text-align: center;
}

.bot-dash-footer span {
  font-size: 0.7rem;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: 0.5px;
}

/* ========================================================
   PERFORMANCE: prefers-reduced-motion
   Disables ALL animations for users who prefer less motion
   ======================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================================
   MOBILE PERFORMANCE: Disable expensive GPU effects
   ======================================================== */
@media (max-width: 768px) {
  /* Kill blur-heavy orb animations on mobile */
  .hero-bg-orb {
    display: none !important;
  }

  /* Kill fog animation on mobile */
  .hero-fog {
    animation: none !important;
  }

  /* Kill star twinkle on mobile */
  .hero-bg-stars {
    animation: none !important;
  }

  /* Kill ember animations on mobile */
  .hero-embers {
    display: none !important;
  }

  /* Kill logo float animation on mobile */
  .logo-crown-img {
    animation: none !important;
  }

  /* Kill hero character float animations on mobile */
  .hero-char--knight,
  .hero-char--crystal,
  .hero-char--beast {
    animation: none !important;
  }

  /* Simplify flame buttons on mobile — no spinning radial */
  #hero-bot-btn::before,
  #hero-farm-btn::before {
    display: none !important;
  }
  #hero-bot-btn,
  #hero-farm-btn {
    animation: none !important;
  }

  /* Navbar backdrop only when scrolled */
  .navbar:not(.scrolled) {
    background: rgba(10, 6, 20, 0.92) !important;
  }

  /* Remove backdrop-filter blur on mobile entirely — huge GPU win */
  .navbar.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 6, 20, 0.99) !important;
  }

  /* Canvas already hidden by JS but ensure via CSS too */
  #particles-canvas {
    display: none !important;
  }
}

/* ========================================================
   MOBILE LAYOUT — Comprehensive fixes
   ======================================================== */
@media (max-width: 768px) {

  /* --- Global spacing --- */
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  /* --- Hero Section --- */
  .hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
    max-width: 100%;
    position: relative;
    z-index: 5;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 16px;
    justify-content: flex-start;
  }

  .stat-number {
    font-size: 1.4rem !important;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100%;
    gap: 12px !important;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  #hero-bot-btn,
  #hero-farm-btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
    padding: 14px 20px !important;
    white-space: normal !important;
  }

  /* --- Bot Section --- */
  .bot-section {
    padding: 60px 0 !important;
  }

  .bot-inner {
    gap: 40px !important;
  }

  .bot-content {
    order: 1;
  }

  .bot-visual {
    order: 2;
  }

  /* Bot dashboard grid: 1 column on mobile */
  .bot-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px !important;
  }

  .bot-mini-features {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 0 12px 12px !important;
  }

  .bot-dash-banner {
    height: 100px !important;
  }

  /* --- War Bot Section --- */
  .war-bot-section {
    padding: 60px 0 !important;
  }

  .war-features-grid,
  .war-pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* --- Resources Section --- */
  .resources-section {
    padding: 60px 0 !important;
  }

  .resources-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 !important;
  }

  .resource-card {
    padding: 20px !important;
  }

  /* --- Services / Why Us --- */
  .services-section,
  .whyus-section {
    padding: 60px 0 !important;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* --- Testimonials --- */
  .testimonials-section {
    padding: 60px 0 !important;
  }

  /* --- FAQ --- */
  .faq-section {
    padding: 60px 0 !important;
  }

  .faq-question {
    padding: 16px 18px !important;
  }

  .faq-q-text {
    font-size: 0.95rem !important;
  }

  .faq-answer-inner {
    padding: 0 18px 16px !important;
    font-size: 0.9rem !important;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 20px !important;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* --- Floating WhatsApp button — bigger tap target --- */
  .float-btn {
    width: 56px !important;
    height: 56px !important;
  }

  /* --- CTA section --- */
  .cta-section {
    padding: 60px 0 !important;
  }

  .cta-title {
    font-size: clamp(1.6rem, 5.5vw, 2rem) !important;
  }
}

/* ========================================================
   SMALL MOBILE (< 480px) — Extra tight fixes
   ======================================================== */
@media (max-width: 480px) {

  .section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2rem) !important;
  }

  /* Trust grid: single column */
  .trust-grid {
    grid-template-columns: 1fr !important;
  }

  /* Stats: wrap */
  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Completely hide Crystal and Beast characters */
  .hero-char--crystal,
  .hero-char--beast {
    display: none !important;
  }

  /* Knight — minimal and pushed to side */
  .hero-char--knight {
    width: 160px !important;
    height: 220px !important;
    right: -5% !important;
    opacity: 0.2 !important;
  }

  /* Bot dashboard metrics 1 column */
  .bot-metrics-grid,
  .bot-mini-features {
    grid-template-columns: 1fr !important;
  }

  /* Resource cards: tighten padding */
  .resource-card {
    padding: 16px !important;
  }

  .bank-tags {
    gap: 4px !important;
  }

  .bank-tag {
    font-size: 0.7rem !important;
    padding: 3px 7px !important;
  }

  /* Price rows */
  .price-row {
    padding: 10px 14px !important;
  }

  /* Nav logo size */
  .nav-logo-text {
    font-size: 1.1rem !important;
  }

  .logo-crown-img {
    width: 22px !important;
  }
}

/* ========================================================
   TABLET (769px – 1024px) — Intermediate fixes
   ======================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .bot-metrics-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-char--knight {
    width: 360px;
    height: 480px;
  }

  .hero-char--crystal {
    width: 230px;
    height: 290px;
    right: 170px;
    opacity: 0.5;
  }

  .hero-char--beast {
    width: 210px;
    height: 195px;
  }

  .resources-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* ========================================================
   PERFORMANCE: GPU layer hints for animated elements
   ======================================================== */
.hero-char,
.bot-dashboard-new,
.resource-card,
.service-card,
.faq-item {
  will-change: transform;
}

/* Ensure smooth scrolling is only for reduced-motion off */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

