/* Styles for: Polityka prywatności */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #08081E;
  color: #FFFFFF;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: #D4A843; text-decoration: none; }
a:hover { text-decoration: underline; }

.bg-layer {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(107,63,160,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(212,168,67,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #1A0A40 0%, #08081E 70%);
}

main {
  position: relative; z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.back-link:hover { color: #D4A843; text-decoration: none; }
.back-link::before { content: '← '; }

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #6B3FA0, #D4A843);
  margin-bottom: 48px;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #D4A843;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

ol, ul {
  padding-left: 20px;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}
ol li, ul li {
  margin-bottom: 10px;
}
ol li::marker {
  color: #D4A843;
}

.browsers-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.browsers-list li {
  background: rgba(107,63,160,0.18);
  border: 1px solid rgba(107,63,160,0.35);
  border-radius: 4px;
  padding: 4px 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.contact-box {
  margin-top: 48px;
  padding: 28px 32px;
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 8px;
  background: rgba(212,168,67,0.04);
}
.contact-box p {
  margin-bottom: 0;
}
.contact-box a {
  font-weight: 600;
}

footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}