@font-face {
  font-family: 'Minecraft';
  src: url('/media/Minecraft-Tenv2.woff') format('woff');
}

@font-face {
  font-family: 'Pixelated';
  src: url('/media/pixelated.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  src: url('/media/assets/inter.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #f5f5f5;
  background: #1a1a1a;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-top: 80px;
  line-height: 1.8;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.main-content {
  animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/media/assets/pattern.png') center/cover no-repeat;
  background-attachment: fixed;
  opacity: 1;
  z-index: -1;
  transform: none !important;
  animation: none !important;
}

.background-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(30, 30, 30, 0.95) 100%);
}

.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.privacy-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(137, 207, 240, 0.3);
}

.page-title {
  font-family: 'Minecraft', sans-serif;
  font-size: 4rem;
  color: #89CFF0;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(137, 207, 240, 0.5), 0 4px 8px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
  font-size: 1.2rem;
  color: #888;
  font-style: italic;
}

.privacy-content {
  margin-bottom: 4rem;
}

.privacy-section {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
  border: 2px solid rgba(137, 207, 240, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.privacy-section:hover {
  border-color: rgba(137, 207, 240, 0.4);
  box-shadow: 0 5px 20px rgba(137, 207, 240, 0.2);
}

.section-title {
  font-family: 'Minecraft', sans-serif;
  font-size: 2rem;
  color: #89CFF0;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(137, 207, 240, 0.5);
}

.section-text {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.privacy-list {
  margin-left: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.privacy-list li {
  font-size: 1.05rem;
  color: #d0d0d0;
  margin-bottom: 0.8rem;
  line-height: 1.8;
  position: relative;
  padding-left: 0.5rem;
}

.privacy-list li::marker {
  color: #89CFF0;
}

.privacy-footer {
  text-align: center;
  padding-top: 3rem;
  border-top: 2px solid rgba(137, 207, 240, 0.3);
}

.back-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #89CFF0;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid rgba(137, 207, 240, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(137, 207, 240, 0.05);
}

.back-link:hover {
  background: rgba(137, 207, 240, 0.15);
  border-color: rgba(137, 207, 240, 0.6);
  box-shadow: 0 4px 15px rgba(137, 207, 240, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .privacy-section {
    padding: 1.5rem;
  }
  
  .section-text {
    font-size: 1rem;
  }
  
  .privacy-list {
    margin-left: 1.5rem;
  }
}
