* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0a0a0a;
  --secondary-color: #1a1a1a;
  --accent-color: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: #333333;
  --link-color: var(--text-primary);
  --link-hover: var(--text-secondary);
}

body {
  font-family: "Arial", sans-serif;
  background: var(--primary-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-secondary);
  margin-top: -2px;
}

.logo-image {
  width: 50%;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--text-secondary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Legal Content */
.legal-content {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
  color: var(--border-color);
}

.legal-header h1 {
  font-size: 3rem;
  font-weight: 100;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.effective-date {
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 1rem 2rem;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: inline-block;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.legal-section p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.legal-list {
  margin: 1rem 0;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.legal-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-list li::marker {
  color: var(--accent-color);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  background: var(--secondary-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  flex: 1;
}

.footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.footer-logo {
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.footer-logo-image {
  height: 25px;
  width: auto;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-color);
}

.footer-link.active {
  color: var(--accent-color);
  font-weight: 500;
}

.footer-separator {
  color: var(--border-color);
  font-size: 0.9rem;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .legal-content {
    padding-top: 6rem;
  }

  .container {
    padding: 0 1rem;
  }

  .legal-header h1 {
    font-size: 2rem;
  }

  .legal-section {
    padding: 1.5rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .legal-header h1 {
    font-size: 1.8rem;
  }

  .legal-section {
    padding: 1rem;
  }

  .effective-date {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: var(--link-color);
  color: var(--accent-color);
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
}
