/* =========================
   PRIVACY POLICY - BLEX STYLE
========================= */

:root {
  --bg: #050505;
  --card-bg: rgba(10, 18, 25, 0.85);
  --border: rgba(0, 183, 255, 0.18);
  --primary: #19b5ff;
  --primary-light: #5cd2ff;
  --text: #f5f7fa;
  --text-secondary: #b6c2cf;
  --shadow: 0 0 30px rgba(0, 183, 255, 0.08);
}

/* ===== BODY ===== */

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */

.privacy-container {
  width: 100%;
  max-width: 950px;
  margin: 120px auto;
  padding: 60px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Glow background */
.privacy-container::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(25, 181, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  filter: blur(90px);
  z-index: 0;
}

.privacy-container * {
  position: relative;
  z-index: 1;
}

/* ===== TITLES ===== */

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -2px;
  color: white;
}

h2 {
  margin-top: 55px;
  margin-bottom: 20px;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 10px;
  border-radius: 50px;
  background: linear-gradient(
    to right,
    var(--primary),
    transparent
  );
}

h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: white;
  font-weight: 600;
}

h4 {
  margin-top: 25px;
  color: var(--primary-light);
  font-size: 1.05rem;
}

/* ===== TEXT ===== */

p {
  color: var(--text-secondary);
  font-size: 1.04rem;
  margin-bottom: 18px;
}

/* ===== LIST ===== */

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 18px;
  color: var(--text-secondary);
}

li strong {
  color: white;
}

/* ===== LINKS ===== */

a {
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: var(--primary-light);
  text-shadow: 0 0 10px rgba(25, 181, 255, 0.4);
}

/* ===== FIRST DATE TEXT ===== */

p:first-of-type {
  text-align: center;
  color: #7f8ea3;
  margin-bottom: 50px;
}

/* ===== SECTION BLOCKS ===== */

h2,
h3,
p,
ul {
  animation: fadeUp 0.5s ease;
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: rgba(25, 181, 255, 0.35);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(25, 181, 255, 0.7);
}

/* ===== ANIMATION ===== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .privacy-container {
    width: calc(100% - 40px);
    margin: 80px auto;
    padding: 35px 25px;
    border-radius: 22px;
  }

  h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  p,
  li {
    font-size: 0.96rem;
  }
}