/* ALL COMPREHENSIVE PRODUCTION CSS */
:root {
  --cyan: #00f2fe;
  --cyan-glow: rgba(0, 242, 254, 0.25);
  --purple-glow: rgba(150, 0, 255, 0.15);
  --gold: #d4af37;
  --bg-black: #030607;
  --bg-card: rgba(6, 14, 17, 0.75);
  --font-title: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* BASE RESET & SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-black);
  color: #ffffff;
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* PRELOADER EFFECT */
.preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.preloader-wrap { text-align: center; }
.preloader-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  color: var(--cyan);
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--cyan-glow);
}
.preloader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,0.05);
  margin: 0 auto; border-radius: 2px; overflow: hidden;
}
.bar-progress {
  width: 0%; height: 100%; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: loadProgress 2s ease forwards;
}
@keyframes loadProgress { 100% { width: 100%; } }

/* GLOBAL REVEAL ANIMATIONS (SMOOTH ENTRIES) */
.reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  will-change: transform, opacity;
  transition: var(--transition-smooth);
}
.reveal-left { transform: translateX(-70px); }
.reveal-right { transform: translateX(70px); }
.reveal-up { transform: translateY(60px); }

.reveal-active {
  opacity: 1;
  transform: translate(0) translateY(0);
}

/* NAVIGATION BAR */
.pro-navbar {
  position: fixed;
  top: 0; width: 100%;
  background-color: rgba(3, 6, 7, 0.75);
  backdrop-filter: blur(20px);
  z-index: 2000;
  border-bottom: 1px solid rgba(0, 242, 254, 0.08);
  transition: var(--transition-smooth);
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px;
}
.nav-logo a { text-decoration: none; }
.nav-logo-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.6rem; color: var(--cyan);
  letter-spacing: 4px; margin: 0;
  text-shadow: 0 0 15px var(--cyan-glow);
}
.nav-links { list-style: none; display: flex; gap: 35px; margin: 0; padding: 0; }
.nav-link {
  text-decoration: none; color: #b5c3c7;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 2px;
  transition: 0.3s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--cyan);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #fff; text-shadow: 0 0 8px var(--cyan); }
.nav-socials { display: flex; gap: 20px; }
.social-icon { text-decoration: none; color: #8fa0a4; font-size: 0.9rem; transition: 0.3s; }
.social-icon:hover { color: var(--cyan); transform: translateY(-2px); }
.nav-language { color: #8fa0a4; font-size: 0.85rem; }
.uz-flag { color: var(--cyan); font-weight: 700; }

/* HERO SECTION (ULTRA EXTREME CLEAN) */
.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; background: var(--bg-black); overflow: hidden;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(10, 38, 43, 0.4) 0%, rgba(18, 6, 32, 0.12) 50%, var(--bg-black) 85%);
  z-index: 1;
}
.hero-content { position: relative; text-align: center; z-index: 2; width: 100%; max-width: 1200px; }

.epic-title-vizual {
  width: 100%; display: flex; justify-content: center;
  background: none !important; border: none !important; box-shadow: none !important; padding: 0 !important;
}
.epic-title-vizual img {
  width: 85vw; max-width: 950px; height: auto; object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(0, 242, 254, 0.35)) drop-shadow(0 0 70px var(--purple-glow));
  animation: logoFloat 5s ease-in-out infinite alternate;
}
@keyframes logoFloat {
  0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 35px rgba(0,242,254,0.3)); }
  100% { transform: translateY(-12px) scale(1.01); filter: drop-shadow(0 0 55px rgba(0,242,254,0.5)) drop-shadow(0 0 80px var(--purple-glow)); }
}
.hero-tagline {
  font-size: 1.1rem; letter-spacing: 6px; color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5); margin-top: 10px;
  font-weight: 600; font-family: var(--font-title);
}

/* BUTTONS */
.pro-btn {
  background: linear-gradient(135deg, rgba(7, 20, 24, 0.8), rgba(12, 38, 43, 0.8));
  border: 1px solid rgba(0, 242, 254, 0.35); color: #fff;
  padding: 16px 36px; font-size: 0.85rem; font-weight: 600; letter-spacing: 3px;
  cursor: pointer; transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 4px; backdrop-filter: blur(5px); position: relative; overflow: hidden;
}
.pro-btn:hover {
  background: var(--cyan); color: var(--bg-black);
  box-shadow: 0 0 30px var(--cyan), inset 0 0 10px rgba(255,255,255,0.5);
  transform: translateY(-3px) scale(1.03); font-weight: 700;
}
.gold-btn {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(15,13,8,0.8), rgba(28,24,14,0.8));
}
.gold-btn:hover {
  background: var(--gold); color: #000; box-shadow: 0 0 30px var(--gold);
}

/* MISTIC BACKGROUND GLOWS */
.section-glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.glow-left { top: 20%; left: -10%; }
.glow-right { bottom: 10%; right: -10%; }
.glow-center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(150, 0, 255, 0.04) 0%, transparent 70%); }

/* MOUSE INDICATOR */
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 0.75rem; letter-spacing: 3px; color: #647d82; z-index: 2; }
.mouse-wheel { width: 22px; height: 36px; border: 2px solid #3d5256; border-radius: 12px; position: relative; }
.mouse-wheel::before { content: ''; position: absolute; width: 4px; height: 6px; background-color: var(--cyan); left: 50%; transform: translateX(-50%); top: 8px; border-radius: 2px; animation: scrollM 1.5s infinite; }
@keyframes scrollM { 0% { top: 8px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* ABOUT SECTION MECHANICS */
.about { padding: 160px 40px; position: relative; border-top: 1px solid rgba(0, 242, 254, 0.04); }
.about-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.image-frame { position: relative; border: 1px solid rgba(0, 242, 254, 0.1); padding: 16px; background: rgba(5, 12, 14, 0.4); backdrop-filter: blur(5px); }
.image-frame img { width: 100%; display: block; filter: grayscale(40%) contrast(115%); transition: filter 0.6s ease; }
.image-frame:hover img { filter: grayscale(0%) contrast(100%); }
.frame-corner { position: absolute; width: 12px; height: 12px; border: 2px solid var(--cyan); }
.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* TYPOGRAPHY */
.section-tag { color: var(--cyan); font-size: 0.8rem; letter-spacing: 4px; font-weight: 700; display: block; margin-bottom: 12px; text-shadow: 0 0 10px var(--cyan-glow); }
.section-tag-center { text-align: center; color: var(--cyan); font-size: 0.8rem; letter-spacing: 4px; font-weight: 700; display: block; margin-bottom: 12px; }
.section-title { font-family: var(--font-title); font-size: 2.8rem; font-weight: 900; margin: 0 0 30px 0; letter-spacing: 2px; line-height: 1.2; }
.section-title-center { font-family: var(--font-title); font-size: 2.8rem; font-weight: 900; text-align: center; margin-bottom: 65px; letter-spacing: 2px; }
.highlight { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.9); }
.text-desc { font-size: 1.05rem; line-height: 1.85; color: #9bb0b5; font-weight: 300; margin-bottom: 20px; }

/* COUNTER STATS */
.about-stats { display: flex; gap: 40px; margin-top: 45px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }
.stat-box { flex: 1; }
.stat-num { font-family: var(--font-title); font-size: 2.4rem; color: var(--cyan); margin: 0 0 5px 0; font-weight: 900; text-shadow: 0 0 15px var(--cyan-glow); }
.stat-label { font-size: 0.85rem; color: #647d82; margin: 0; letter-spacing: 1px; }

/* ARSENAL SLIDER (ULTRA SMOOTH PRO VARIANT) */
.arsenal { padding: 140px 40px; background: radial-gradient(circle at center, #051417 0%, var(--bg-black) 90%); position: relative; }
.interactive-carousel { display: flex; align-items: center; justify-content: center; max-width: 1150px; margin: 0 auto; gap: 40px; }
.showcase-card {
  display: flex; background: var(--bg-card); border: 1px solid rgba(0, 242, 254, 0.12);
  backdrop-filter: blur(25px); width: 100%; min-height: 440px; border-radius: 4px; overflow: hidden;
  position: relative; box-shadow: 0 30px 70px rgba(0,0,0,0.8);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}
.showcase-card.morphing { opacity: 0; transform: scale(0.97) translateY(15px); }
.card-img-side { flex: 1.3; position: relative; display: flex; align-items: center; justify-content: center; padding: 40px; background: rgba(0,0,0,0.2); }
.card-img-side img { max-width: 100%; max-height: 320px; object-fit: contain; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); transition: transform 0.5s ease; }
.showcase-card:hover .card-img-side img { transform: scale(1.05) rotate(-3deg); }
.weapon-shadow-glow { position: absolute; width: 60%; height: 60%; background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, transparent 70%); pointer-events: none; }

.card-info-side { flex: 1; padding: 55px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(0, 242, 254, 0.08); }
.item-number { color: var(--cyan); font-size: 0.9rem; font-weight: 700; margin-bottom: 15px; letter-spacing: 2px; }
.item-title { font-family: var(--font-title); font-size: 2.4rem; margin: 0 0 25px 0; color: #fff; letter-spacing: 1px; }
.item-desc { color: #9bb0b5; line-height: 1.8; font-size: 1rem; font-weight: 300; margin: 0; }

/* WEAPON BARS */
.weapon-specs { margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.spec-line { display: grid; grid-template-columns: 90px 1fr; align-items: center; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; color: #647d82; }
.spec-line .bar { height: 4px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.spec-line .fill { height: 100%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1); }

/* CONTROL BUTTONS */
.nav-btn {
  background: rgba(4, 12, 14, 0.8); border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--cyan); width: 60px; height: 60px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: 0.3s; z-index: 5; backdrop-filter: blur(5px);
}
.nav-btn:hover { background: var(--cyan); color: var(--bg-black); box-shadow: 0 0 20px var(--cyan); transform: scale(1.1); }

/* FEATURES GRID */
.features { padding: 140px 40px; max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.feature-card {
  background: rgba(5, 11, 13, 0.4); border: 1px solid rgba(255,255,255,0.02);
  padding: 50px 35px; border-radius: 4px; transition: var(--transition-smooth); position: relative;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: 1px solid var(--cyan); opacity: 0; border-radius: 4px; transition: 0.4s; pointer-events: none;
}
.feature-card:hover::before { opacity: 0.15; }
.feature-card:hover { transform: translateY(-8px); background: rgba(7, 18, 22, 0.7); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.f-icon { font-size: 2rem; margin-bottom: 25px; display: inline-block; }
.feature-card h3 { font-family: var(--font-title); font-size: 1.4rem; margin: 0 0 15px 0; letter-spacing: 1px; }
.feature-card p { color: #8fa0a4; font-size: 0.95rem; line-height: 1.7; font-weight: 300; margin: 0; }

/* TEAM SECTION */
.team { padding: 140px 40px; max-width: 1200px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.team-card { background: rgba(4, 9, 11, 0.5); border: 1px solid rgba(255,255,255,0.02); padding: 45px 25px; text-align: center; transition: 0.4s; }
.team-card:hover { border-color: rgba(0, 242, 254, 0.2); background: rgba(6, 16, 20, 0.8); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.member-avatar { width: 100px; height: 100px; margin: 0 auto 25px auto; border: 1px solid rgba(0, 242, 254, 0.15); padding: 6px; border-radius: 50%; }
.avatar-inner { width: 100%; height: 100%; background: #09191d; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--cyan); font-weight: 700; font-family: var(--font-title); letter-spacing: 1px; }
.member-name { font-family: var(--font-title); font-size: 1.25rem; margin: 0 0 8px 0; letter-spacing: 1px; }
.member-role { font-size: 0.85rem; color: #647d82; margin: 0; }

/* JOIN US SECTION */
.joinus { padding: 160px 40px; position: relative; overflow: hidden; text-align: center; border-top: 1px solid rgba(0, 242, 254, 0.04); }
.joinus-container { max-width: 650px; margin: 0 auto; position: relative; z-index: 2; }
.joinus-title { font-family: var(--font-title); font-size: 3rem; font-weight: 900; margin: 0 0 20px 0; letter-spacing: 4px; text-shadow: 0 0 20px rgba(255,255,255,0.1); }
.joinus-text { font-size: 1.05rem; color: #9bb0b5; line-height: 1.8; margin-bottom: 40px; font-weight: 300; }
.pro-form { display: flex; gap: 20px; justify-content: center; align-items: center; }
.input-group { position: relative; width: 340px; }
.pro-input { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.06); color: #fff; padding: 18px 24px; border-radius: 4px; font-family: var(--font-body); width: 100%; box-sizing: border-box; font-size: 0.9rem; transition: 0.3s; }
.pro-input:focus { outline: none; border-color: var(--cyan); background: rgba(0,0,0,0.5); box-shadow: 0 0 15px rgba(0, 242, 254, 0.1); }
.form-status { margin-top: 20px; font-size: 0.9rem; font-weight: 500; height: 20px; }
.status-success { color: #00ffcc; text-shadow: 0 0 10px rgba(0,255,204,0.3); }

/* FOOTER */
.pro-footer { padding: 40px 20px; text-align: center; border-top: 1px solid rgba(255,255,255,0.02); font-size: 0.8rem; color: #435558; letter-spacing: 1px; }

/* RESPONSIVE DESIGN INTERFACE */
@media (max-width: 960px) {
  .nav-links, .nav-socials, .nav-language { display: none; }
  .about-container { grid-template-columns: 1fr; gap: 50px; }
  .showcase-card { flex-direction: column; }
  .card-info-side { border-left: none; border-top: 1px solid rgba(0, 242, 254, 0.08); padding: 40px 30px; }
  .pro-form { flex-direction: column; width: 100%; }
  .input-group { width: 100%; }
  .section-title, .section-title-center, .joinus-title { font-size: 2.2rem; }
}