/* ==========================================================
   01. GENERAL
========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0,234,255,.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(117,255,0,.12), transparent 35%),
    #050505;

  color: #f7f1e8;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* ==========================================================
   02. LANGUAGE SWITCH
========================================================== */

.language-switch {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;

  display: flex;
  gap: 8px;

  padding: 7px;

  border-radius: 999px;

  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);

  backdrop-filter: blur(18px);
}

.language-switch button {
  border: none;

  padding: 11px 20px;

  border-radius: 999px;

  background: transparent;

  color: #aaa;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;

  cursor: pointer;
}

.language-switch button.active {
  background: #75ff00;
  color: #050505;

  box-shadow: 0 0 25px rgba(117,255,0,.45);
}

/* ==========================================================
   03. PAGE LAYOUT
========================================================== */

.privacy-page {
  min-height: 100vh;

  padding: 95px 6vw 60px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.privacy-card {
  width: 100%;
  max-width: 960px;

  padding: 56px;

  border-radius: 40px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.09),
      rgba(255,255,255,.035)
    );

  border: 1px solid rgba(255,255,255,.14);

  box-shadow: 0 35px 110px rgba(0,0,0,.55);

  backdrop-filter: blur(28px);
}

/* ==========================================================
   04. TITLES
========================================================== */

.tag {
  color: #00eaff;

  letter-spacing: 6px;

  font-size: 13px;
  font-weight: 900;

  margin-bottom: 20px;

  text-align: center;
}

h1 {
  max-width: 760px;

  margin: 0 auto 16px;

  text-align: center;

  font-size: clamp(42px, 7vw, 76px);

  line-height: .95;

  letter-spacing: -4px;

  color: white;
}

.updated {
  text-align: center;

  color: #777;

  font-weight: 700;

  margin-bottom: 45px;
}

/* ==========================================================
   05. CONTENT
========================================================== */

.privacy-content {
  display: grid;

  gap: 22px;
}

.privacy-content h2 {
  color: #75ff00;

  font-size: 24px;

  margin-top: 16px;
}

.privacy-content p {
  color: #b9b1a6;

  font-size: 17px;

  line-height: 1.7;

  font-weight: 700;
}

.privacy-content a {
  color: #00eaff;

  text-decoration: none;

  font-weight: 900;
}

/* ==========================================================
   06. BUTTON
========================================================== */

.back-btn {
  display: inline-block;

  margin-top: 45px;

  padding: 17px 34px;

  border-radius: 999px;

  background: #75ff00;

  color: #050505;

  text-decoration: none;

  font-weight: 900;

  box-shadow: 0 0 35px rgba(117,255,0,.35);
}

/* ==========================================================
   07. MOBILE
========================================================== */

@media (max-width: 700px) {

  .language-switch {
    top: 14px;

    padding: 6px;
  }

  .language-switch button {
    padding: 10px 14px;

    font-size: 11px;
  }

  .privacy-page {
    padding: 88px 18px 28px;
  }

  .privacy-card {
    padding: 38px 24px;

    border-radius: 30px;
  }

  h1 {
    letter-spacing: -2px;
  }

}