* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cyan: #00f2fa;
  --khaki: #c8c8b4;
  --orange: #ff5101;
  --dark-bg: #0a0b10;
  --panel-bg: rgba(0, 242, 250, 0.03);
  --border-glow: rgba(0, 242, 250, 0.25);
  --text-dim: rgba(200, 200, 180, 0.5);
  --text-main: #c8c8b4;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark-bg);
  color: var(--khaki);
  font-family: "Share Tech Mono", monospace;
  overflow-x: hidden;
  cursor: default;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #0a0b10;
}
::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 0;
}

/* === BOOT SCREEN === */
#boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050508;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease;
}
#boot-screen.hidden {
  opacity: 0;
  pointer-events: none;
}
.boot-text {
  font-family: "Share Tech Mono", monospace;
  color: var(--cyan);
  font-size: 14px;
  max-width: 700px;
  width: 90%;
  line-height: 1.8;
  text-shadow: 0 0 10px rgba(0, 242, 250, 0.6);
}
.boot-text .cursor-blink {
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.boot-progress {
  width: 300px;
  height: 3px;
  background: rgba(0, 242, 250, 0.1);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.boot-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  box-shadow: 0 0 15px var(--cyan);
  transition: width 0.3s;
}

/* === SCANLINES === */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 242, 250, 0.01) 2px,
    rgba(0, 242, 250, 0.01) 4px
  );
}
.scanlines::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

/* === GRID BACKGROUND === */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 242, 250, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 250, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* === PARTICLES === */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* === SVG ICON STYLES === */
.icon-svg {
  display: inline-block;
  vertical-align: middle;
}
.icon-svg svg {
  display: block;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0.98) 0%,
    rgba(10, 11, 16, 0.92) 100%
  );
  border-bottom: 1px solid rgba(0, 242, 250, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  padding: 0 30px;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0.99) 0%,
    rgba(10, 11, 16, 0.95) 100%
  );
  border-bottom-color: rgba(0, 242, 250, 0.3);
  box-shadow:
    0 5px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 242, 250, 0.05);
}
.nav-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 250, 0.4),
    transparent
  );
  box-shadow: 0 0 20px rgba(0, 242, 250, 0.3);
  animation: nav-pulse 3s ease-in-out infinite;
}
@keyframes nav-pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0;
  position: relative;
  width: 100%;
}
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}
.nav-links-wrap {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 242, 250, 0.08);
  padding-top: 12px;
  width: 100%;
  background: rgba(0, 242, 250, 0.02);
}
.nav-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 242, 250, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.nav-logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--cyan);
}
.nav-logo:hover::after {
  width: 100%;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(0, 242, 250, 0.3));
}
.nav-status {
  font-size: 10px;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 242, 250, 0.05);
  padding: 6px 14px;
  border: 1px solid rgba(0, 242, 250, 0.15);
  border-radius: 2px;
}
.time-separator {
  color: rgba(0, 242, 250, 0.3);
  font-weight: 300;
}
#nav-date {
  color: rgba(200, 200, 180, 0.7);
  letter-spacing: 1px;
}
#nav-time {
  font-weight: 700;
  letter-spacing: 1px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.nav-links {
  display: flex;
  gap: 3px;
}
.nav-links a {
  color: rgba(200, 200, 180, 0.5);
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 8px 18px;
  border: 1px solid transparent;
  transition: all 0.3s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 250, 0.08),
    transparent
  );
  transition: left 0.4s;
}
.nav-links a:hover::before {
  left: 100%;
}
.nav-links a:hover {
  color: var(--cyan);
  border-color: rgba(0, 242, 250, 0.3);
  background: rgba(0, 242, 250, 0.05);
  text-shadow: 0 0 10px var(--cyan);
}
.nav-num {
  font-size: 9px;
  color: var(--orange);
  opacity: 0.6;
  font-weight: 700;
  transition: all 0.3s;
}
.nav-links a:hover .nav-num {
  opacity: 1;
  text-shadow: 0 0 8px var(--orange);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(0, 242, 250, 0.3);
  color: var(--cyan);
  padding: 8px 12px;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 10px;
}
nav.scrolled {
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0.99) 0%,
    rgba(10, 11, 16, 0.95) 100%
  );
  border-bottom-color: rgba(0, 242, 250, 0.3);
  box-shadow:
    0 5px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 242, 250, 0.05);
}
.nav-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 250, 0.4),
    transparent
  );
  box-shadow: 0 0 20px rgba(0, 242, 250, 0.3);
  animation: nav-pulse 3s ease-in-out infinite;
}
@keyframes nav-pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: relative;
}
.nav-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: rgba(0, 242, 250, 0.3);
  transition: all 0.3s;
}
.nav-corner.tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.nav-corner.tr {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}
nav.scrolled .nav-corner {
  border-color: rgba(0, 242, 250, 0.6);
  box-shadow: 0 0 10px rgba(0, 242, 250, 0.2);
}
.nav-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 242, 250, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.nav-logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--cyan);
}
.nav-logo:hover::after {
  width: 100%;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(0, 242, 250, 0.3));
}
.nav-logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--orange);
  opacity: 0.7;
  margin-left: 5px;
  text-shadow: 0 0 10px rgba(255, 81, 1, 0.3);
}
.nav-links {
  display: flex;
  gap: 3px;
}
.nav-links a {
  color: rgba(200, 200, 180, 0.5);
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 8px 18px;
  border: 1px solid transparent;
  transition: all 0.3s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 250, 0.08),
    transparent
  );
  transition: left 0.4s;
}
.nav-links a:hover::before {
  left: 100%;
}
.nav-links a:hover {
  color: var(--cyan);
  border-color: rgba(0, 242, 250, 0.3);
  background: rgba(0, 242, 250, 0.05);
  text-shadow: 0 0 10px var(--cyan);
}
.nav-num {
  font-size: 9px;
  color: var(--orange);
  opacity: 0.6;
  font-weight: 700;
  transition: all 0.3s;
}
.nav-links a:hover .nav-num {
  opacity: 1;
  text-shadow: 0 0 8px var(--orange);
}
.nav-status {
  font-size: 10px;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 242, 250, 0.05);
  padding: 6px 12px;
  border: 1px solid rgba(0, 242, 250, 0.15);
  border-radius: 2px;
}
.status-label {
  color: rgba(200, 200, 180, 0.5);
  letter-spacing: 1px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #34ff01;
  border-radius: 50%;
  box-shadow: 0 0 10px #34ff01;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* === HERO === */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}
.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left {
  position: relative;
}
.classified-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 5px 15px;
  font-size: 10px;
  letter-spacing: 3px;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 25px;
  animation: flash-border 3s infinite;
  text-transform: uppercase;
}
@keyframes flash-border {
  0%,
  90%,
  100% {
    border-color: var(--orange);
    color: var(--orange);
  }
  95% {
    border-color: transparent;
    color: rgba(255, 81, 1, 0.5);
  }
}
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-title .line1 {
  color: var(--text-dim);
  font-size: 0.4em;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(0, 242, 250, 0.3));
}
.hero-title .line3 {
  display: block;
  color: var(--khaki);
  text-shadow: 0 0 30px rgba(200, 200, 180, 0.2);
}
.hero-subtitle {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-subtitle span {
  color: var(--cyan);
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-alien {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px 30px;
  border: 1px solid var(--cyan);
  background: rgba(0, 242, 250, 0.05);
  color: var(--cyan);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-alien:hover {
  background: rgba(0, 242, 250, 0.12);
  box-shadow:
    0 0 30px rgba(0, 242, 250, 0.15),
    inset 0 0 30px rgba(0, 242, 250, 0.05);
  transform: translateY(-2px);
}
.btn-alien::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 250, 0.08),
    transparent
  );
  transition: left 0.5s;
}
.btn-alien:hover::after {
  left: 100%;
}
.btn-alien.secondary {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 81, 1, 0.05);
}
.btn-alien.secondary:hover {
  background: rgba(255, 81, 1, 0.12);
  box-shadow: 0 0 30px rgba(255, 81, 1, 0.15);
}

/* Hero Right - HUD Display */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.hud-container {
  width: 380px;
  height: 380px;
  position: relative;
}
.hud-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hud-ring:nth-child(5) {
  width: 380px;
  height: 380px;
  animation: spin1 20s linear infinite;
  border: 1px dashed rgba(0, 242, 250, 0.15);
}
.hud-ring:nth-child(6) {
  width: 300px;
  height: 300px;
  animation: spin2 15s linear infinite reverse;
  border: 1px solid rgba(255, 81, 1, 0.15);
}
.hud-ring:nth-child(7) {
  width: 220px;
  height: 220px;
  animation: spin1 10s linear infinite;
  border: 1px dotted rgba(200, 200, 180, 0.15);
}
.hud-ring:nth-child(8) {
  width: 140px;
  height: 140px;
  animation: spin2 8s linear infinite reverse;
  border: 1px solid rgba(0, 242, 250, 0.25);
}
@keyframes spin1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.hud-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 30px var(--cyan);
}
.hud-center::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--cyan);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: pulse-hex 3s infinite;
}
@keyframes pulse-hex {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
}
.hud-data {
  position: absolute;
  font-size: 9px;
  color: rgba(200, 200, 180, 0.4);
  letter-spacing: 1px;
}
.hud-data.top {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.hud-data.bottom {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 81, 1, 0.4);
}
.hud-data.left {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-lr;
}
.hud-data.right {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: var(--cyan);
  opacity: 0.3;
}
.hud-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-style: solid;
  border-width: 0;
}
.hud-corner.tl {
  top: 0;
  left: 0;
  border-top-width: 2px;
  border-left-width: 2px;
  border-color: var(--orange);
}
.hud-corner.tr {
  top: 0;
  right: 0;
  border-top-width: 2px;
  border-right-width: 2px;
  border-color: var(--cyan);
}
.hud-corner.bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-color: var(--cyan);
}
.hud-corner.br {
  bottom: 0;
  right: 0;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-color: var(--orange);
}
.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
}
.radar-sweep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 50%;
  transform-origin: bottom left;
  background: linear-gradient(45deg, transparent, rgba(0, 242, 250, 0.12));
  animation: radar-spin 4s linear infinite;
}
@keyframes radar-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* === SECTIONS COMMON === */
section {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 60px;
  position: relative;
}
.section-tag {
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0, 242, 250, 0.25);
}
.section-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  margin-top: 15px;
  box-shadow: 0 0 10px rgba(255, 81, 1, 0.3);
  position: relative;
}
.section-line::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* === NEWS SLIDER === */
.news-slider-wrap {
  position: relative;
  overflow: hidden;
}

.news-slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 5px;
}
.news-slider-container::-webkit-scrollbar {
  display: none;
}

.news-slide {
  flex: 0 0 100%;
  max-width: calc(100% - 0px);
}
@media (min-width: 768px) {
  .news-slide {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (min-width: 1024px) {
  .news-slide {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

.news-card {
  border: 1px solid rgba(0, 242, 250, 0.12);
  background: rgba(0, 242, 250, 0.02);
  padding: 30px;
  position: relative;
  transition: all 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.news-card:hover {
  border-color: rgba(0, 242, 250, 0.35);
  background: rgba(0, 242, 250, 0.04);
  transform: translateY(-5px);
  box-shadow:
    0 10px 40px rgba(0, 242, 250, 0.08),
    0 0 20px rgba(255, 81, 1, 0.05);
}
.news-card:hover::before {
  opacity: 1;
}

.news-date {
  font-size: 10px;
  color: var(--orange);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.news-title {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--khaki);
  margin-bottom: 15px;
  line-height: 1.4;
}
.news-excerpt {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.news-tag {
  font-size: 9px;
  padding: 4px 12px;
  border: 1px solid rgba(0, 242, 250, 0.2);
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
}

.news-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.news-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 250, 0.2);
  background: rgba(0, 242, 250, 0.03);
  color: var(--cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.news-slider-btn:hover {
  background: rgba(0, 242, 250, 0.1);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 242, 250, 0.2);
}
.news-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.news-slider-dots {
  display: flex;
  gap: 8px;
}
.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 200, 180, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.news-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

        /* === PROJECTS / ПРОЕКТЫ === */
        /* Сетка карточек проектов - 4 в ряд */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        /* Карточка-контейнер */
        .project-card {
            perspective: 1000px;
            height: 340px;
            text-decoration: none;
            color: inherit;
            display: block;
        }
/* Свечение при наведении */
.project-card:hover {
  filter: drop-shadow(0 0 20px rgba(0, 242, 250, 0.15));
}
/* Внутренний контейнер для 3D переворота */
.project-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
/* Переворот карточки при наведении */
.project-card:hover .project-card-inner {
  transform: rotateY(180deg);
}
/* Общие стили для передней и задней сторон */
.project-front,
.project-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
/* Лицевая сторона карточки */
.project-front {
  border: 1px solid rgba(0, 242, 250, 0.1);
  background: rgba(0, 242, 250, 0.02);
}
/* Обратная сторона карточки */
.project-back {
  border: 1px solid rgba(0, 242, 250, 0.25);
  background: 
    radial-gradient(ellipse at center, rgba(0,242,250,0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,11,16,0.95), rgba(10,11,16,0.9));
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}
/* Лицевая сторона карточки */
.project-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 242, 250, 0.1);
  background: rgba(0, 242, 250, 0.02);
}
/* Картинка на всю карточку */
.project-front .project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
  display: block;
}
/* Увеличение картинки при наведении */
.project-card:hover .project-front .project-image {
  transform: scale(1.05);
}

/* Название проекта поверх картинки (внизу) */
.project-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  z-index: 2;
}
.project-title-overlay h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--khaki);
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 242, 250, 0.3);
  text-align: center;
}

/* Декоративная тонкая сетка на фоне */
.project-back::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(0,242,250,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,242,250,0.03) 1px, transparent 1px);
  background-size: 15px 15px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
}

/* HUD-линии по углам */
.project-back-hud {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.project-back-hud::before,
.project-back-hud::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 242, 250, 0.3);
}
.project-back-hud::before {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}
.project-back-hud::after {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}
/* Контент на обратной стороне */
.project-back-content {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
/* Контейнер для текста */
.project-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Подзаголовок проекта (оранжевый) */
.project-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  text-align: left;
}

/* Описание проекта */
.project-description {
  font-size: 11px;
  color: rgba(200,200,180,0.8);
  line-height: 1.6;
  text-align: left;
}

/* Круглая кнопка со стрелкой */
.project-btn-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  background: rgba(0, 242, 250, 0.1);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  flex-shrink: 0;
  align-self: flex-start;
}
.project-btn-round:hover {
  background: rgba(0, 242, 250, 0.2);
  box-shadow: 0 0 20px rgba(0, 242, 250, 0.3);
  transform: scale(1.05);
}
.project-btn-round svg {
  width: 20px;
  height: 20px;
}

/* Бейдж статуса (АКТИВЕН/СЕКРЕТНО/В РАЗРАБОТКЕ) */
.project-status {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-family: "Orbitron", sans-serif;
  padding: 3px 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
}
.project-status.online {
  color: var(--cyan);
  border: 1px solid rgba(0, 242, 250, 0.3);
  background: rgba(0, 242, 250, 0.1);
}
.project-status.classified {
  color: var(--orange);
  border: 1px solid rgba(255, 81, 1, 0.3);
  background: rgba(255, 81, 1, 0.1);
}
.project-status.in-progress {
  color: var(--khaki);
  border: 1px solid rgba(200, 200, 180, 0.3);
  background: rgba(200, 200, 180, 0.1);
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-group label {
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 242, 250, 0.03);
  border: 1px solid rgba(0, 242, 250, 0.12);
  color: var(--khaki);
  padding: 12px 15px;
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  outline: none;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow:
    0 0 15px rgba(0, 242, 250, 0.1),
    inset 0 0 15px rgba(0, 242, 250, 0.03);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-info-panel {
  border: 1px solid rgba(0, 242, 250, 0.12);
  background: rgba(0, 242, 250, 0.02);
  padding: 30px;
  position: relative;
}
.contact-info-panel::before {
  content: "ЗАШИФРОВАННЫЙ КАНАЛ";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--dark-bg);
  padding: 0 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 1px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(200, 200, 180, 0.05);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 242, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(0, 242, 250, 0.05);
}
.contact-detail-label {
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 1px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
}
.contact-detail-value {
  font-size: 13px;
  color: var(--khaki);
  margin-top: 3px;
}
.signal-wave {
  margin-top: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.signal-bar {
  width: 3px;
  background: linear-gradient(to top, var(--cyan), var(--orange));
  border-radius: 2px;
  animation: signal-pulse 1.5s ease infinite;
  box-shadow: 0 0 5px rgba(0, 242, 250, 0.3);
}
@keyframes signal-pulse {
  0%,
  100% {
    height: 10px;
    opacity: 0.3;
  }
  50% {
    height: 40px;
    opacity: 1;
  }
}

/* === FOOTER === */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(0, 242, 250, 0.1);
  padding: 30px 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-text {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
}
.footer-links {
  display: flex;
  gap: 15px;
}
.footer-links a {
  color: rgba(200, 200, 180, 0.3);
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  color: var(--cyan);
}
.footer-links a:hover svg {
  filter: drop-shadow(0 0 8px var(--cyan));
}

/* === GLITCH EFFECT === */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
}
.glitch::before {
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  -webkit-text-fill-color: var(--cyan);
}
.glitch::after {
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  -webkit-text-fill-color: var(--orange);
}
@keyframes glitch-1 {
  0%,
  95% {
    transform: translate(0);
  }
  96% {
    transform: translate(-3px, 1px);
  }
  97% {
    transform: translate(3px, -1px);
  }
  98% {
    transform: translate(-1px, 2px);
  }
  99% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes glitch-2 {
  0%,
  95% {
    transform: translate(0);
  }
  96% {
    transform: translate(3px, -1px);
  }
  97% {
    transform: translate(-3px, 1px);
  }
  98% {
    transform: translate(1px, -2px);
  }
  99% {
    transform: translate(-2px, 2px);
  }
  100% {
    transform: translate(0);
  }
}

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* === ALIEN TEXT === */
.alien-symbols {
  font-size: 10px;
  color: rgba(0, 242, 250, 0.12);
  letter-spacing: 3px;
  overflow: hidden;
  white-space: nowrap;
  margin: 20px 0;
}

/* === MOBILE === */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(0, 242, 250, 0.3);
  color: var(--cyan);
  padding: 8px 12px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 30px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-right {
    display: none;
  }
  .dossier-container {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 16, 0.97);
    border-bottom: 1px solid var(--border-glow);
    padding: 20px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-status {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Адаптивность для проектов: 1 в ряд на мобильных */
@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Адаптивность для проектов: 3 в ряд на планшетах */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
