/* ============================================
   RANDOM DICE SERVICES - CYBERPUNK NEON THEME
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-void: #0c0c1e;
  --bg-deep: #10102a;
  --bg-card: #161638;
  --bg-card-hover: #1c1c48;
  --bg-surface: #1a1a42;
  --neon-blue: #00d4ff;
  --neon-purple: #a855f7;
  --neon-pink: #ff2d95;
  --neon-gold: #fbbf24;
  --neon-green: #22d3ee;
  --text-primary: #eceaf5;
  --text-secondary: #a8a6c0;
  --text-dim: #6e6c8a;
  --border-glow: rgba(0, 212, 255, 0.12);
  --border-subtle: rgba(168, 85, 247, 0.08);
  --gradient-hero: linear-gradient(135deg, #0c0c1e 0%, #10102a 40%, #1a1040 100%);
  --gradient-card: linear-gradient(145deg, rgba(22,22,56,0.95), rgba(28,28,72,0.5));
  --gradient-neon: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --nav-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
  border-radius: 4px;
}

/* Background removed - cleaner look */

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(12, 12, 30, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(12, 12, 30, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.6));
  transform: scale(1.08) rotate(-5deg);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  display: block;
  padding: 0.5rem 1.1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-blue);
  background: rgba(0, 212, 255, 0.06);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--neon-blue);
  border-radius: 1px;
  box-shadow: 0 0 8px var(--neon-blue);
}

.nav-discord {
  background: linear-gradient(135deg, #5865F2, #7c3aed) !important;
  color: #fff !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 15px rgba(88, 101, 242, 0.3);
}

.nav-discord:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 25px rgba(88, 101, 242, 0.5) !important;
  background: linear-gradient(135deg, #6d75f7, #8b5cf6) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    font-size: 1.25rem;
    padding: 0.9rem 2rem;
    text-align: center;
    width: 200px;
    border-radius: 10px;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(0, 212, 255, 0.08);
  }
  .nav-discord {
    margin-top: 0.5rem;
    width: 200px !important;
    justify-content: center;
    display: flex !important;
  }
  .nav-hamburger {
    z-index: 1001;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Subtle accent glow */
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neon-blue);
  background: rgba(0, 212, 255, 0.05);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-img {
  display: block;
  width: clamp(90px, 14vw, 140px);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.35)) drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  animation: heroIconFloat 3s ease-in-out infinite, fadeInDown 0.8s ease 0.1s both;
}

@keyframes heroIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.hero-title .line1 {
  display: block;
  color: var(--text-primary);
}

.hero-title .line2 {
  display: block;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-blue), #0099cc);
  color: var(--bg-void);
  box-shadow: 0 4px 25px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(0, 212, 255, 0.45);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2));
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.btn-outline:hover {
  border-color: var(--neon-purple);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 4px 25px rgba(168, 85, 247, 0.15);
  transform: translateY(-2px);
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2, #7c3aed);
  color: #fff;
  box-shadow: 0 4px 25px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(88, 101, 242, 0.5);
}

/* --- Video Section --- */
.hero-video {
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   SECTIONS - General
   ============================================ */

section {
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 6rem 2rem;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.inline-link {
  color: var(--neon-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  transition: border-color 0.2s ease;
}

.inline-link:hover {
  border-color: var(--neon-blue);
}

/* Divider line */
.section-divider {
  width: 50px;
  height: 2px;
  background: var(--gradient-neon);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ============================================
   PRICE CARDS
   ============================================ */

.prices { background: var(--bg-void); }

.price-category {
  margin-bottom: 4rem;
}

.price-category:last-child { margin-bottom: 0; }

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-category:hover .category-icon img {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.price-category:hover .category-icon {
  transform: scale(1.05);
}

.category-icon.gold {
  background: linear-gradient(135deg, rgba(251,191,36,0.2), rgba(251,191,36,0.05));
  box-shadow: 0 0 20px rgba(251,191,36,0.1);
}
.category-icon.diamond {
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,212,255,0.05));
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.category-icon.cards {
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(168,85,247,0.05));
  box-shadow: 0 0 20px rgba(168,85,247,0.1);
}
.category-icon.ore {
  background: linear-gradient(135deg, rgba(255,45,149,0.2), rgba(255,45,149,0.05));
  box-shadow: 0 0 20px rgba(255,45,149,0.1);
}
.category-icon.trophy {
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(34,211,238,0.05));
  box-shadow: 0 0 20px rgba(34,211,238,0.1);
}
.category-icon.dice {
  background: linear-gradient(135deg, rgba(251,191,36,0.2), rgba(168,85,247,0.05));
  box-shadow: 0 0 20px rgba(251,191,36,0.1);
}
.category-icon.unlock {
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(168,85,247,0.05));
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.category-icon.ticket {
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(0,212,255,0.05));
  box-shadow: 0 0 20px rgba(34,211,238,0.1);
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 212, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card .btn-buy {
  margin-top: auto;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.price-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.price-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.price-cost {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buy Button --- */
.btn-buy {
  display: block;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  color: var(--neon-blue);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-buy:hover {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  color: var(--bg-void);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

/* Bundle buy button - wider */
.bundle-buy {
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
}

/* Service page buy button */
.service-buy {
  display: inline-block;
  margin-top: 1rem;
}

/* ============================================
   BUNDLES
   ============================================ */

.bundles {
  background: var(--bg-deep);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.bundle-card {
  background: var(--gradient-card);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
}

.bundle-card.pro::before { background: linear-gradient(90deg, var(--neon-blue), var(--neon-green)); }
.bundle-card.max::before { background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink)); }
.bundle-card.promax::before { background: var(--gradient-neon); }

.bundle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Featured bundle */
.bundle-card.promax {
  border-color: rgba(0, 212, 255, 0.12);
}

.bundle-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bundle-card.pro .bundle-tag {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.bundle-card.max .bundle-tag {
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.bundle-card.promax .bundle-tag {
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(255,45,149,0.1));
  color: var(--neon-pink);
  border: 1px solid rgba(255, 45, 149, 0.2);
}

.bundle-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  margin-bottom: 0.75rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bundle-card:hover .bundle-img {
  transform: scale(1.15) rotate(-6deg);
  filter: drop-shadow(0 6px 20px rgba(0,212,255,0.3));
}

.bundle-card.pro:hover .bundle-img {
  filter: drop-shadow(0 6px 20px rgba(0,212,255,0.35));
}

.bundle-card.max:hover .bundle-img {
  filter: drop-shadow(0 6px 20px rgba(168,85,247,0.35));
}

.bundle-card.promax:hover .bundle-img {
  filter: drop-shadow(0 6px 20px rgba(255,45,149,0.35));
}

.bundle-items {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.bundle-items li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bundle-items li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bundle-card.pro .bundle-items li::before { background: var(--neon-blue); box-shadow: 0 0 8px var(--neon-blue); }
.bundle-card.max .bundle-items li::before { background: var(--neon-purple); box-shadow: 0 0 8px var(--neon-purple); }
.bundle-card.promax .bundle-items li::before { background: var(--neon-pink); box-shadow: 0 0 8px var(--neon-pink); }

.bundle-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}

.bundle-card.pro .bundle-price { color: var(--neon-blue); }
.bundle-card.max .bundle-price { color: var(--neon-purple); }
.bundle-card.promax .bundle-price {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  background: var(--bg-void);
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 2rem 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 240px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: scale(1.03);
  box-shadow: var(--shadow-neon);
}

.gallery-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 16, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.15);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

/* ============================================
   PAYMENT METHODS
   ============================================ */

.payments {
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-card {
  flex: 0 0 180px;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.payment-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon);
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.payment-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-glow);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.35));
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--neon-blue); }

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.page-hero {
  padding: calc(var(--nav-height) + 4rem) 2rem 3rem;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  z-index: 1;
}

/* Removed heavy glow */

.service-cards {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 212, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateX(4px);
}

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

.service-card:nth-child(odd)::before { background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple)); }
.service-card:nth-child(even)::before { background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink)); }

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.1);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,212,255,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
}

.service-card:hover .service-icon img {
  transform: scale(1.12) rotate(-3deg);
  filter: drop-shadow(0 4px 12px rgba(0,212,255,0.3));
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-price-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--neon-blue);
  font-weight: 500;
}

@media (max-width: 600px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 212, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.12);
}

.faq-item.active {
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--neon-blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  color: var(--neon-blue);
}

.faq-item.active .faq-icon {
  background: var(--neon-blue);
  color: var(--bg-void);
  border-color: var(--neon-blue);
  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 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   JUICY EFFECTS
   ============================================ */

/* Shimmer sweep on price cards */
.price-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.04),
    rgba(168, 85, 247, 0.06),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.price-card:hover::after {
  left: 125%;
}

/* Category header glow pulse */
.category-header {
  position: relative;
}

.category-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.price-category:hover .category-header::after {
  width: 100%;
}

/* Bundle card shine */
.bundle-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.03),
    transparent
  );
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.bundle-card:hover::after {
  left: 150%;
}

/* Service card icon bounce */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.service-card:hover .service-icon {
  animation: iconBounce 0.6s ease;
}

/* Price cost glow on hover */
.price-card:hover .price-cost {
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .section-padding { padding: 4rem 1.25rem; }
  .bundle-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .price-card { padding: 1.2rem; }
  .price-amount { font-size: 1.3rem; }
  .price-cost { font-size: 1.4rem; }
  .hero { padding-top: calc(var(--nav-height) + 1.5rem); min-height: auto; padding-bottom: 3rem; }
  .hero-title { margin-bottom: 1rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .gallery-item { flex: 0 0 220px; }
  .gallery-item img { height: 380px; }
  .payment-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .gallery-item { flex: 0 0 200px; }
  .gallery-item img { height: 340px; }
}
