* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  overflow-x: hidden;
}

/* ===== BACKGROUND ===== */
.neon-bg {
  min-height: 100vh;
  background: linear-gradient(-45deg, #000000, #120000, #1a0000, #000000);
  background-size: 400% 400%;
  animation: bgMove 12s ease infinite;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: rgba(0,0,0,0.7);
  border-bottom: 1px solid rgba(255,0,0,0.2);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff1a1a;
  text-shadow: 0 0 10px red;
}

/* DESKTOP MENU */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
  text-shadow: 0 0 10px red;
}

/* MOBILE BUTTON */
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: absolute;
  right: 15px;
  top: 70px;
  width: 220px;
  z-index: 999;
}

/* SHOW TOGGLE */
.mobile-menu.show {
  display: block;
}

/* MENU BOX */
.menu-box {
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,0,0,0.3);
  border-radius: 12px;
  padding: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(255,0,0,0.15);
}

/* MENU LINKS */
.menu-box a {
  display: block;
  padding: 10px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 14px;
}

.menu-box a:hover {
  background: rgba(255,0,0,0.1);
  color: white;
}

/* ===== POLICY SECTION ===== */
.policy-section {
  padding: 100px 20px;
}

.container {
  max-width: 900px;
  margin: auto;
}

/* TITLE */
.title {
  font-size: 54px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 10px;
}

/* NEON TEXT */
.neon-text {
  color: #ff1a1a;
  text-shadow:
    0 0 10px #ff0000,
    0 0 20px #ff1a1a,
    0 0 40px #8b0000;
}

/* SUBTITLE */
.subtitle {
  text-align: center;
  color: rgba(255,255,255,0.65);
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.6;
}

/* POLICY CARDS */
.feature-card {
  background: rgba(255, 0, 0, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: 0.3s ease;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.7);
  box-shadow:
    0 0 25px rgba(255, 0, 0, 0.3),
    0 0 60px rgba(139, 0, 0, 0.4);
}

/* CARD TEXT */
.feature-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* FLOAT EFFECT */
.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .title {
    font-size: 36px;
  }
}