

@font-face {
  font-family: "Raela";
  src: url("../assets/fonts/RaelaGrotesque-Black.ttf") format("truetype");
}

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

body {
  background: #0b0b0d;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

.policy-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 48px 24px;
  line-height: 1.7;
}

.language-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 32px;
}

.language-toggle button {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  cursor: pointer;
  font-family: "Raela", Arial, sans-serif;
  letter-spacing: 0.04em;
}

.language-toggle button:hover {
  border-color: #ff4d4d;
  color: #ff4d4d;
}

h1,
h2,
.game-title {
  font-family: "Raela", Arial, sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.game-title {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-weight: normal;
  opacity: 0.8;
  margin-bottom: 2rem;
}

h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #ff4d4d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.policy-footer {
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  width: 150px;
  max-width: 45%;
  height: auto;
  margin-bottom: 12px;
  opacity: 0.9;
}

.studio-name {
  font-family: "Raela", Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.home-link {
  display: inline-block;
  margin-top: 16px;
}

@media (max-width: 500px) {
  .language-toggle {
    justify-content: center;
  }

  .language-toggle button {
    flex: 1;
  }
}

