@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 30% 30%, #22223b, #000);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  overflow: hidden;
}

main {
  z-index: 2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

p {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: linear-gradient(45deg, #ff758c, #ff7eb3);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 118, 171, 0.4);
}

.glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 118, 171, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

.glow:nth-child(1) {
  top: -80px;
  left: -80px;
  animation-delay: 0s;
}

.glow:nth-child(2) {
  bottom: -80px;
  right: -80px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  color: #888;
}

footer a {
  color: #ff9ec7;
  text-decoration: none;
}

/* Privacy page overrides */
body.privacy-page {
  align-items: flex-start;   /* start content from top */
  justify-content: flex-start;
  padding: 40px 20px;
  height: auto;             /* allow scrolling */
  overflow-y: auto;         /* vertical scroll if needed */
  text-align: left;          /* left-aligned text */
}

body.privacy-page main {
  max-width: 900px;          /* readable width */
  margin: 0 auto;
  z-index: 2;
  color: #f1f1f1;           /* lighter text for dark background */
}

body.privacy-page h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #ff7eb3;            /* standout header */
}

body.privacy-page header p {
  text-align: center;
  margin-bottom: 30px;
  color: #bbb;
}

body.privacy-page .content {
    margin-top: 30px;
}

body.privacy-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ff7eb3;
}

body.privacy-page ul {
  list-style-type: disc;
  margin-left: 20px;
}

body.privacy-page li {
  margin-bottom: 0.5rem;
}

body.privacy-page p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Center header (h1 + span) on privacy page */
body.privacy-page h1,
body.privacy-page .privacy-date {
  text-align: center;
  display: block;
  margin: 0 auto 10px auto;
  color: #ff7eb3; /* standout header */
}

body.privacy-page .privacy-date {
  font-size: 1rem;
  color: #bbb;
}

/* Contact email styling */
body.privacy-page a {
  color: #ff758c; /* readable on dark background */
  text-decoration: underline;
}

/* Footer centered */
body.privacy-page footer {
  position: relative;
  bottom: auto;
  text-align: center;
  margin-top: 40px;
  color: #888;
  width: 100%;
  text-decoration: none;
}

body.privacy-page footer a {
  text-decoration: none;
}

/* Global text spacing fixes */
body, h1, h2, h3, h4, h5, h6, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Paragraph spacing */
p {
  margin-bottom: 1.5rem;   /* consistent space between paragraphs */
  line-height: 2rem;        /* more readable line height */
}

/* Headings spacing */
h1 {
  margin-bottom: 1rem;
  line-height: 3rem;
}

h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 3rem;
}

h3, h4, h5, h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 3rem;
}

/* Lists */
ul, ol {
  margin: 0 0 1.5rem 1.5rem;  /* consistent margin from text and indentation */
  padding: 0;
}

li {
  margin-bottom: 0.5rem;      /* consistent spacing between list items */
  line-height: 2rem;
}
