/* ════════════════════════════════════════
   GameMachine – Main Stylesheet
   Dark Futuristic Arcade / Corporate
════════════════════════════════════════ */

:root {
  --bg:       #05050f;
  --bg2:      #0a0a1e;
  --bg3:      #0f0f28;
  --card:     #0d0d22;
  --card2:    #12122e;
  --border:   rgba(0,212,255,0.15);
  --cyan:     #00d4ff;
  --purple:   #7b2fff;
  --gold:     #ffd700;
  --green:    #00ff88;
  --red:      #ff4757;
  --text:     #e0e0f0;
  --text2:    #9090b8;
  --font-h:   'Orbitron', sans-serif;
  --font-b:   'Rajdhani', sans-serif;
  --rad:      12px;
  --rad-s:    8px;
  --shadow:   0 8px 32px rgba(0,0,0,0.5);
  --glow-c:   0 0 20px rgba(0,212,255,0.4);
  --glow-p:   0 0 20px rgba(123,47,255,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--cyan); color: var(--bg); }

/* ════ UTILITIES ════ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.grad-text {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  border: none;
  letter-spacing: .5px;
}
.btn-glow {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,212,255,0.35);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.55);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ════ SECTION HEADER ════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.sec-desc {
  color: var(--text2);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* ════ NAVBAR ════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(5,5,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-icon-default { font-size: 22px; color: #fff; }
#logo-img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--cyan);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all .25s;
  letter-spacing: .3px;
}
.nav-link:hover { color: var(--cyan); background: rgba(0,212,255,0.07); }
.nav-link.active { color: var(--cyan); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .25s;
}
.nav-phone:hover { color: var(--cyan); }
.nav-phone i { color: var(--cyan); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(5,5,15,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  color: var(--text2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .25s;
}
.mobile-nav ul li a:hover { color: var(--cyan); }

/* ════ HERO ════ */
.hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-swiper { position: absolute; inset: 0; width: 100%; height: 100%; }
.swiper-slide.hero-slide {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,15,0.9) 0%, rgba(10,10,30,0.7) 50%, rgba(5,5,15,0.85) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.swiper-slide-active .hero-bg-img { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 0 0 0 10%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInDown .6s ease;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  animation: fadeInUp .7s ease .1s both;
}
.hero-title span { color: var(--cyan); }
.hero-subtitle {
  font-family: var(--font-h);
  font-size: clamp(14px, 2vw, 20px);
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 16px;
  animation: fadeInUp .7s ease .2s both;
}
.hero-desc {
  color: var(--text2);
  font-size: 17px;
  margin-bottom: 36px;
  animation: fadeInUp .7s ease .3s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .4s both;
}

.hero-machine {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 300px;
  animation: floatMachine 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0,212,255,0.3));
}
.machine-aura {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  animation: aura-pulse 3s ease-in-out infinite;
}
.arcade-svg { width: 100%; height: auto; display: block; }

/* SVG screen animations */
.blink-txt { animation: blink 1.2s step-end infinite; }
.star.s1 { animation: star-twinkle 2s ease-in-out infinite; }
.star.s2 { animation: star-twinkle 2s ease-in-out infinite .7s; }
.game-ship { animation: ship-drift 2s ease-in-out infinite; }
.flame { animation: flame-flicker .3s ease-in-out infinite alternate; }
.laser { animation: laser-fire .5s ease-in-out infinite; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  animation: fadeIn 1s ease 1s both;
}
.scroll-arrow {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  animation: bounce 2s ease-in-out infinite;
}

/* swiper overrides */
.swiper-button-prev, .swiper-button-next {
  color: var(--cyan) !important;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(0,212,255,0.3);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 16px !important; }
.hero-pagi .swiper-pagination-bullet { background: rgba(255,255,255,0.4); }
.hero-pagi .swiper-pagination-bullet-active { background: var(--cyan); }

/* ════ STATS ════ */
.stats-section {
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(123,47,255,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-box {
  text-align: center;
  padding: 32px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  transition: transform .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}
.stat-box:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.35); }
.stat-icon-w {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,47,255,0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--cyan);
}
.stat-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-suf { font-size: 24px; color: var(--cyan); }
.stat-lbl { color: var(--text2); font-size: 14px; font-weight: 500; }

/* ════ ABOUT ════ */
.about-section { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-feats { display: flex; flex-direction: column; gap: 28px; }
.a-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  transition: all .3s;
}
.a-feat:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateX(4px);
  box-shadow: var(--glow-c);
}
.af-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,47,255,0.15));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}
.a-feat h4 { font-family: var(--font-h); font-size: 15px; color: var(--text); margin-bottom: 6px; }
.a-feat p { color: var(--text2); font-size: 14px; }

.about-visual { display: flex; justify-content: center; }
.av-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
}
.av-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.av-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(123,47,255,0.1));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 28px;
  text-align: left;
}
.av-badge i { font-size: 28px; color: var(--gold); }
.av-badge strong { display: block; font-family: var(--font-h); font-size: 13px; color: var(--text); }
.av-badge span { font-size: 12px; color: var(--text2); }

.av-machine {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}
.avm-screen {
  height: 100px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(0,212,255,0.2);
}
.avm-icon { font-size: 40px; color: var(--cyan); animation: pulse 2s ease-in-out infinite; }
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
  animation: scan 2s linear infinite;
}
.avm-panel {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px;
}
.avm-stick {
  width: 32px;
  height: 32px;
  background: var(--bg2);
  border: 2px solid var(--purple);
  border-radius: 50%;
  position: relative;
}
.avm-stick::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-60%);
  width: 12px; height: 12px;
  background: var(--purple);
  border-radius: 50%;
}
.avm-btns { display: flex; gap: 8px; }
.avb { width: 20px; height: 20px; border-radius: 50%; display: block; }
.avb.r { background: var(--red); box-shadow: 0 0 8px var(--red); }
.avb.b { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.avb.y { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

.av-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.av-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ════ PRODUCTS ════ */
.products-section { background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow-c);
}
.product-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255,215,0,0.15);
}
.product-card.featured:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.3); }

.pc-visual {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: default;
  text-align: left;
}
.pc-visual-btn {
  cursor: zoom-in;
}
.pc-img-large {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(0,212,255,0.06) 0%, rgba(123,47,255,0.08) 100%);
}
.pc-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .pc-img-large img {
  transform: scale(1.04);
}
.pc-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 56px;
  color: rgba(0,212,255,0.35);
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(123,47,255,0.05) 100%);
}
.pc-img-placeholder span {
  font-size: 13px;
  font-family: var(--font-b);
  color: var(--text2);
  letter-spacing: 0.5px;
}
.pc-zoom-hint {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.product-card:hover .pc-zoom-hint,
.pc-visual-btn:focus-visible .pc-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.pc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--bg);
  background: var(--cyan);
}
.pc-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-name {
  font-family: var(--font-h);
  font-size: 22px;
  color: var(--text);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.pc-tagline {
  margin: 0;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.pc-desc {
  margin: 0;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.pc-specs {
  margin-top: auto;
  padding: 16px;
  background: var(--bg3);
  border-radius: var(--rad-s);
  border: 1px solid var(--border);
}
.pc-specs-title {
  margin: 0 0 12px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-specs-title i { color: var(--cyan); }
.pc-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
.pc-spec { display: flex; flex-direction: column; gap: 3px; }
.pc-spec-lbl {
  font-size: 11px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pc-spec-lbl i { color: var(--cyan); font-size: 10px; }
.pc-spec-val { font-size: 13px; font-weight: 600; color: var(--text); }
.pc-cta { margin-top: 4px; }
.pc-rental-btn {
  width: 100%;
  justify-content: center;
}

/* Ürün fotoğraf lightbox */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.product-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.plb-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 8, 0.92);
  cursor: zoom-out;
}
.plb-inner {
  position: relative;
  z-index: 1;
  max-width: min(960px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.plb-inner img {
  max-width: 100%;
  max-height: calc(90vh - 48px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.plb-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.plb-close:hover { border-color: var(--cyan); color: var(--cyan); }
.plb-caption {
  margin: 0;
  color: var(--text2);
  font-size: 14px;
  text-align: center;
}

/* ════ SERVICES ════ */
.services-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: -300px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 32px 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  transition: opacity .3s;
  opacity: 0;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}
.sc-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.sc-title { font-family: var(--font-h); font-size: 17px; color: var(--text); margin-bottom: 12px; font-weight: 600; }
.sc-desc { color: var(--text2); font-size: 14px; line-height: 1.7; }

/* ════ HOW IT WORKS ════ */
.how-section { background: var(--bg); }
.steps-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: all .3s;
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.35);
  box-shadow: var(--glow-c);
}
.step-num {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 900;
  color: rgba(0,212,255,0.1);
  position: absolute;
  top: 12px;
  right: 16px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,47,255,0.15));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--cyan);
  margin: 0 auto 20px;
}
.step h4 { font-family: var(--font-h); font-size: 14px; color: var(--text); margin-bottom: 10px; font-weight: 700; }
.step p { color: var(--text2); font-size: 13px; }
.step-arr { font-size: 22px; color: rgba(0,212,255,0.3); flex-shrink: 0; }

/* ════ RENTAL PLANS ════ */
.rental-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.rental-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.r-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text2);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.r-tab.active {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,212,255,0.3);
}
.r-tab:not(.active):hover { color: var(--cyan); }
.rental-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.rc-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255,215,0,0.12);
}
.rc-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #ff9f43);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.rc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.35);
  box-shadow: var(--glow-c);
}
.rc-name { font-family: var(--font-h); font-size: 18px; color: var(--text); font-weight: 700; margin-bottom: 8px; }
.rc-tag { font-size: 12px; color: var(--cyan); font-weight: 600; letter-spacing: 1px; margin-bottom: 24px; }
.rc-price-big { font-family: var(--font-h); font-size: 48px; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 4px; }
.rc-price-big span { font-size: 20px; color: var(--text2); vertical-align: top; line-height: 1.8; }
.rc-period { color: var(--text2); font-size: 13px; margin-bottom: 28px; }
.rc-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; text-align: left; }
.rc-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text2); }
.rc-feat i { color: var(--green); font-size: 12px; }

/* ════ RENTAL FORM ════ */
.form-section { background: var(--bg); }
.form-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.gm-form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .3px;
}
.form-group label i { color: var(--cyan); font-size: 12px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad-s);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  transition: all .25s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text2); opacity: .6; }

.form-success {
  text-align: center;
  padding: 60px 20px;
}
.suc-icon { font-size: 64px; color: var(--green); margin-bottom: 20px; }
.form-success h3 { font-family: var(--font-h); font-size: 24px; color: var(--text); margin-bottom: 10px; }
.form-success p { color: var(--text2); font-size: 16px; margin-bottom: 24px; }

/* ════ REFERENCES ════ */
.refs-section { background: var(--bg2); }
.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ref-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ref-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.3);
  box-shadow: var(--glow-c);
}
.ref-logo {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ref-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ref-logo-placeholder { font-size: 28px; color: rgba(0,212,255,0.3); }
.ref-name { font-family: var(--font-h); font-size: 13px; color: var(--text); font-weight: 600; }
.ref-sector {
  font-size: 11px;
  color: var(--text2);
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 3px 10px;
  border-radius: 10px;
}

/* ════ TESTIMONIALS ════ */
.testi-section { background: var(--bg); }
.testi-swiper { padding-bottom: 50px !important; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  height: auto;
}
.testi-quote-icon {
  font-size: 48px;
  color: rgba(0,212,255,0.1);
  position: absolute;
  top: 20px;
  right: 24px;
}
.testi-stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 16px; }
.testi-text {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-info strong { display: block; font-family: var(--font-h); font-size: 14px; color: var(--text); margin-bottom: 2px; }
.testi-info span { font-size: 13px; color: var(--cyan); }
.testi-pagi .swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.testi-pagi .swiper-pagination-bullet-active { background: var(--cyan); }

/* ════ CONTACT ════ */
.contact-section { background: var(--bg2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  transition: all .3s;
}
.ci-item:hover { border-color: rgba(0,212,255,0.3); }
.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,47,255,0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
}
.ci-item strong { display: block; font-size: 12px; color: var(--text2); font-weight: 500; margin-bottom: 4px; letter-spacing: .5px; }
.ci-item a, .ci-item span { color: var(--text); font-size: 15px; font-weight: 600; text-decoration: none; transition: color .25s; }
.ci-item a:hover { color: var(--cyan); }
.ci-social { display: flex; gap: 10px; }
.soc-link {
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}
.soc-link:hover {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

/* ════ FOOTER ════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {}
.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}
.f-logo i { color: var(--cyan); font-size: 24px; }
.footer-brand p { color: var(--text2); font-size: 14px; margin-bottom: 20px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 38px;
  height: 38px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: 16px;
  transition: all .3s;
  text-decoration: none;
}
.f-social a:hover {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  border-color: transparent;
}
.f-links h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 13px;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.f-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links ul li a,
.f-links ul li span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text2);
  font-size: 14px;
  text-decoration: none;
  transition: color .25s;
}
.f-links ul li a:hover { color: var(--cyan); }
.f-links ul li a i { color: rgba(0,212,255,0.4); font-size: 10px; }

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bot p { color: var(--text2); font-size: 14px; }
.admin-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text2);
  font-size: 13px;
  text-decoration: none;
  transition: color .25s;
}
.admin-link:hover { color: var(--cyan); }

/* ════ TOAST ════ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--card2);
  border: 1px solid var(--green);
  color: var(--text);
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transform: translateX(200%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.toast.show { transform: translateX(0); }
.toast i { color: var(--green); font-size: 18px; }

/* ── Play button on machine ── */
.play-arcade-btn {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: glow-btn 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0,212,255,0.4);
  white-space: nowrap;
}
.play-arcade-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.6);
}
@keyframes glow-btn {
  0%,100% { box-shadow: 0 4px 20px rgba(0,212,255,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(0,212,255,0.8), 0 0 40px rgba(123,47,255,0.3); }
}

/* ════ ARCADE GAME OVERLAY ════ */
.game-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn .25s ease;
}
.game-modal {
  position: relative;
  background: #02020a;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,212,255,0.2), 0 30px 80px rgba(0,0,0,0.7);
  max-width: 600px;
  width: 100%;
}
.game-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(0,212,255,0.15);
}
.g-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.g-stat i { color: var(--cyan); font-size: 14px; }
.g-stat-val { color: var(--cyan); min-width: 28px; text-align: right; }
.g-title {
  font-family: var(--font-h);
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 2px;
  font-weight: 900;
  text-shadow: 0 0 10px var(--cyan);
}
.g-lives-wrap { display: flex; gap: 4px; }
.g-heart { color: var(--red); font-size: 14px; transition: all .2s; }
.g-heart.lost { color: rgba(255,71,87,0.2); }

#game-canvas {
  display: block;
  cursor: crosshair;
  width: 100%;
}
.game-screen-overlay {
  position: absolute;
  inset: 60px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(2,2,10,0.85);
  z-index: 5;
}
.gs-big-title {
  font-family: var(--font-h);
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0,212,255,0.5);
  letter-spacing: 3px;
  animation: glow-text 1.5s ease-in-out infinite;
}
.gs-subtitle { color: var(--text2); font-size: 15px; text-align: center; padding: 0 20px; }
.gs-instructions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--text2);
  margin-top: 4px;
}
.gs-instr-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
}
.gs-instr-item i { color: var(--cyan); }
.gs-score-big {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold);
}
.gs-score-label { color: var(--text2); font-size: 14px; margin-top: -10px; }

.game-close-btn {
  position: absolute;
  top: 10px; right: 14px;
  width: 30px; height: 30px;
  background: rgba(255,71,87,0.15);
  border: 1px solid rgba(255,71,87,0.3);
  border-radius: 7px;
  color: var(--red);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 10;
}
.game-close-btn:hover { background: rgba(255,71,87,0.3); }

@keyframes glow-text {
  0%,100% { text-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0,212,255,0.4); }
  50%      { text-shadow: 0 0 30px var(--cyan), 0 0 60px rgba(0,212,255,0.7); }
}

/* ════ REVEAL ANIMATIONS ════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ════ KEYFRAMES ════ */
@keyframes floatMachine {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 14px)); }
}
@keyframes aura-pulse {
  0%, 100% { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes star-twinkle {
  0%, 100% { opacity: .8; }
  50% { opacity: .2; }
}
@keyframes ship-drift {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}
@keyframes flame-flicker {
  0% { opacity: 1; transform: scaleY(1); }
  100% { opacity: .6; transform: scaleY(.7); }
}
@keyframes laser-fire {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.5); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: .8; }
}
@keyframes scan {
  0% { top: 0%; }
  100% { top: 100%; }
}

/* ════ RESPONSIVE ════ */
@media (max-width: 1200px) {
  .hero-machine { width: 240px; }
  .hero-content { padding-left: 5%; }
}
@media (max-width: 1024px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-machine { width: 200px; right: 2%; opacity: .7; }
  .rental-cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { flex-direction: column; align-items: stretch; }
  .step-arr { transform: rotate(90deg); text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-machine { display: none; }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; gap: 12px; text-align: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sec-title { font-size: 26px; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .rental-tabs { flex-direction: column; border-radius: var(--rad); }
}
