:root {
  --bg: #0A0A0C;
  --card: #141414;
  --border: #2a2a2a;
  --text: #f2f2f2;
  --text-dim: #9a9a9a;
  --pink: #C8145A;
  --pink-dim: #780C37;
  --highlight: #FFAAC8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); }
@font-face {
  font-family: 'Game Of Squids';
  src: url('../fonts/game-of-squids.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(200,20,90,0.08), transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(255,170,200,0.06), transparent 40%);
}
.legal-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--pink);
  background: var(--card); color: var(--text); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.legal-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.shape { position: fixed; opacity: 0.14; pointer-events: none; z-index: 0; }
.shape.circle { width: 110px; height: 110px; border: 5px solid var(--pink); border-radius: 50%; top: 8%; right: 6%; }
.shape.square { width: 90px; height: 90px; border: 5px solid var(--text-dim); top: 62%; right: 9%; transform: rotate(8deg); }
.shape.triangle { width: 0; height: 0; top: 10%; left: 6%; border-left: 60px solid transparent; border-right: 60px solid transparent; border-bottom: 104px solid var(--highlight); }
h1, h2, .logo { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
a { color: inherit; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-text {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-family: 'Game Of Squids', 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.3rem;
}
.logo-zephy { color: #ffffff; }
.logo-cube { color: var(--pink); }

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 90px;
  position: relative;
  z-index: 1;
}
main h1 { font-family: 'Game Of Squids', 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em; font-size: 2.1rem; margin-bottom: 10px; }
main .updated { color: var(--text); font-size: 0.88rem; margin-bottom: 40px; }
main h2 { font-size: 1.15rem; font-weight: 600; margin: 36px 0 12px; }
main p { color: #cfcfcf; margin-bottom: 14px; font-size: 0.96rem; }
main ul { color: #cfcfcf; margin: 0 0 14px 20px; font-size: 0.96rem; }
main li { margin-bottom: 6px; }
main a.inline { color: var(--highlight); text-decoration: underline; }

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: var(--text);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}
footer a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
footer a:hover,
footer a:focus-visible {
  color: var(--highlight);
  text-shadow: 0 0 10px rgba(200,20,90,0.35);
}
footer .foot-ver { color: var(--highlight); font-weight: 700; }
footer .footer-legal { margin-top: 10px; }
