* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(255, 255, 255, 0.35);
}

.back-button {
  position: fixed;
  top: 80px;
  left: 32px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 100;
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-2px);
}

.back-button:active {
  transform: translateX(-2px) scale(0.96);
}

.back-button::before {
  content: '';
  width: 10px;
  height: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  margin-left: 3px;
}

@media (max-width: 768px) {
  .back-button {
    left: 16px;
    top: 72px;
    width: 36px;
    height: 36px;
  }
  
  .back-button::before {
    width: 8px;
    height: 8px;
  }
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px 80px 40px;
    line-height: 1.7;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.privacy-wrapper h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
    color: #ffffff;
    letter-spacing: -1px;
}

.privacy-wrapper h2 {
    font-size: 24px;
    margin-top: 56px;
    margin-bottom: 16px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.privacy-wrapper p {
    margin: 16px 0;
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.8;
}

.privacy-wrapper strong {
    color: #ffffff;
    font-weight: 500;
}

.privacy-wrapper ul {
    margin: 16px 0 16px 24px;
    list-style: none;
    padding: 0;
}

.privacy-wrapper ul li {
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
}

.privacy-wrapper ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    line-height: 1.4;
}

.privacy-footer {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.5;
    font-size: 13px;
    color: #888888;
}

@media (max-width: 768px) {
  .privacy-wrapper {
    padding: 80px 24px 60px 24px;
  }
  
  .privacy-wrapper h1 {
    font-size: 36px;
    margin-bottom: 32px;
  }
  
  .privacy-wrapper h2 {
    font-size: 20px;
    margin-top: 40px;
  }
}