/* === Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  overflow-x: hidden;
  position: relative;
}
.fade-in {
  animation: fadeIn 1.2s ease-in-out both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.privacy-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  flex-grow: 1;
}
.privacy-card {
  background: rgba(20, 20, 20, 0.5);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(123, 228, 62, 0.2);
}
.intro h1 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(120deg, #7be43e, #5b913b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subtitle {
  font-size: 1.1rem;
  color: #b6ff9e;
  margin-top: 0.5rem;
}
.motto {
  font-style: italic;
  color: #c2ffd6;
  margin-top: 0.8rem;
}
.content {
  margin-top: 2rem;
  line-height: 1.6;
  font-size: 1.05rem;
}
.content ul {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}
.content li {
  margin-bottom: 0.5rem;
}
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: rgba(123, 228, 62, 0.1);
  border: 1px solid #7be43e;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.btn:hover {
  background: #7be43e;
  color: #000;
  transform: translateY(-2px);
}
.footer {
  margin-top: auto;
  text-align: center;
  color: white;
  padding: 1.5rem 1rem;
  font-size: 0.95rem;
}
.footer a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin: 0 1rem;
}
.footer a:hover {
  color: #7be43e;
  text-decoration: underline;
}
.lang-switch-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #7be43e;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.flag {
  font-size: 0.9rem;
  color: white;
  font-weight: bold;
}

.lang-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.lang-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #7be43e;
}

input:checked + .slider:before {
  transform: translateX(22px);
}
