* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 20px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Grandstander', Arial, sans-serif;
  color: #fff;
  background: url('background.png') center / cover no-repeat fixed;
  position: relative;
  min-height: 200vh;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--fade-bg, rgba(0,0,0,0));
  backdrop-filter: blur(var(--fade-blur, 0px));
  -webkit-backdrop-filter: blur(var(--fade-blur, 0px));
  z-index: 1;
  pointer-events: none;
  transition: background 0.1s linear, backdrop-filter 0.1s linear;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: rgba(153, 1, 127, 0.5); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.monkey {
  height: 70px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  margin-left: -75px; 
}

.nav-right a {
  color: #e6e6e6;
  text-decoration: none;
  margin-left: 72px;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.nav-right a:hover {
  opacity: 0.7;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  backdrop-filter: blur(8px); 
  -webkit-backdrop-filter: blur(8px); 
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2; 
}

.logo {
  max-width: 1280px; 
  width: 90%;
}

.play-btn {
  background: transparent;
  color: #99017f;
  border: 4px solid #dd01b7;
  padding: 28px 80px;
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: -150px;
}

.play-btn:hover {
  background: #dd01b7;
  color: #1a1a1a;
}

.learn-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Grandstander', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #e0e0e0;
  cursor: pointer;
  margin-top: -0.1rem;
}

.arrow {
  width: clamp(20px, 4vw, 28px);
  height: clamp(20px, 4vw, 28px);
  border-right: clamp(2px, 0.5vw, 4px) solid #e0e0e0;
  border-bottom: clamp(2px, 0.5vw, 4px) solid #e0e0e0;
  transform: rotate(45deg);
  margin-top: 0.5rem;
}

.about {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  color: #fff;
  text-align: center;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-family: 'Grandstander', Arial, sans-serif;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Grandstander', Arial, sans-serif;
  color: #fff;
}

.about-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: rgba(153, 1, 127, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 2;
  padding: 0 24px;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.about-footer span {
  font-family: 'Grandstander', Arial, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

body.privacy-page {
  background: #98017e !important;
  color: #fff;
  font-family: 'Grandstander', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.privacy-page .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: rgba(153, 1, 127, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.privacy-page .about-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: rgba(153, 1, 127, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 10;
  padding: 0 24px;
}

body.privacy-page .about-footer .footer-logo {
  height: 60px;
  width: auto;
}

body.privacy-page .about-footer span {
  font-family: 'Grandstander', Arial, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

body.privacy-page .privacy-content {
  max-width: 900px;
  margin: 160px auto;
  padding: 0 24px 160px;
  line-height: 1.8;
  font-size: 1.25rem;
  color: #fff;
}

body.privacy-page .privacy-content h1,
body.privacy-page .privacy-content h2,
body.privacy-page .privacy-content h3 {
  margin-bottom: 24px;
  line-height: 1.3;
}

body.privacy-page .privacy-content p {
  margin-bottom: 20px;
}

body.privacy-page .privacy-content ul,
body.privacy-page .privacy-content ol {
  margin-bottom: 20px;
  padding-left: 40px;
}

body.privacy-page .privacy-content a {
  color: #ffccff;
  text-decoration: underline;
  transition: opacity 0.2s;
}

body.privacy-page .privacy-content a:hover {
  opacity: 0.7;
}

body.privacy-page .privacy-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 40px;
}

body.privacy-page .privacy-content li {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

@media (max-width: 768px) {

  html {
    font-size: 16px;
  }

  .navbar {
    height: 70px;
    padding: 0 24px;
  }

  .monkey {
    height: 48px;
    margin-left: 0;
  }

  .nav-right a {
    margin-left: 24px;
    font-size: 0.9rem;
  }

  .logo {
    width: 95%;
  }

  .play-btn {
    padding: 16px 40px;
    font-size: 0.9rem;
    margin-top: -60px;
  }

  .learn-more {
    font-size: 0.75rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-footer {
    height: 80px;
    gap: 12px;
  }

  .footer-logo {
    height: 40px;
  }

  .about-footer span {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {

  html {
    font-size: 15px;
  }

  .nav-right {
    display: none;
  }

  .play-btn {
    padding: 14px 32px;
    font-size: 0.85rem;
  }
}



