* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, Arial, sans-serif;
  color: white;
  overflow-x: hidden;
  background: #000;
}

/* ===== BACKGROUND ===== */
.neon-bg {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255,0,0,0.12), transparent 40%),
    radial-gradient(circle at bottom, rgba(120,0,0,0.15), transparent 50%),
    #000;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: rgba(10, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #ff2b2b;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #ff2b2b;
}

/* Mobile button */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: absolute;
  right: 16px;
  top: 70px;
  width: 220px;
}

.mobile-menu.show {
  display: block;
}

.menu-box {
  background: rgba(15,0,0,0.9);
  border: 1px solid rgba(255,0,0,0.2);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 10px 40px rgba(255,0,0,0.08);
}

.menu-box a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: 0.2s;
}

.menu-box a:hover {
  background: rgba(255,0,0,0.1);
  color: white;
}

/* ===== PAGE LAYOUT ===== */
.policy-section {
  padding: 90px 20px;
}

.container {
  max-width: 850px;
  margin: auto;
}

/* TITLE */
.title {
  font-size: 44px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 8px;
}

/* softer neon */
.neon-text {
  color: #ff3b3b;
  text-shadow: 0 0 12px rgba(255,0,0,0.35);
}

/* subtitle */
.subtitle {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== CARDS (IMPROVED) ===== */
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,0,0,0.12);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;

  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,0,0,0.35);
  box-shadow: 0 12px 30px rgba(255,0,0,0.08);
}

.feature-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ===== FLOAT ===== */
.floating {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .title {
    font-size: 32px;
  }
}