/* Base styles for legal pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f3f3f3;
  background-color: #0f0f0f;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

h2 {
  font-size: 2rem;
  color: #ffd369;
}

h3 {
  font-size: 1.4rem;
  color: #ffd369;
}

section {
  padding: 4rem 0;
  position: relative;
}

/* Navigation (reused from style.css) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #ffd369;
}

.logo i {
  margin-right: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd369;
}

.burger {
  background: #0f0f0f;
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #ffd369;
  transition: transform 0.3s ease;
}

/* Legal Hero Section */
.legal-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding-top: 5rem;
  background: linear-gradient(120deg, rgba(34, 32, 27, 0.5), rgba(77, 3, 48, 0.5)), url('image/bannerr2.jpeg') no-repeat center center / cover;
  overflow: hidden;
}

.legal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255, 211, 105, 0.15), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 120, 200, 0.1), transparent 50%);
  z-index: 1;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.legal-title {
  font-size: 3rem;
  color: #ffd369;
  margin-bottom: 0.5rem;
}

.legal-subtitle {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto;
}

/* Legal Content Section */
.legal-section {
  background: #141414;
}

.legal-item {
  margin-bottom: 2rem;
}

.legal-item p {
  color: #ccc;
}

.legal-item ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  color: #ccc;
}

.legal-item ul li {
  margin-bottom: 0.5rem;
}

.legal-item a {
  color: #ffd369;
  text-decoration: none;
}

.legal-item a:hover {
  text-decoration: underline;
}

/* Thanks CTA */
.thanks-cta {
  text-align: center;
  margin-top: 2rem;
}

.thanks-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  background: #ffd369;
  color: #0f0f0f;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.thanks-cta .btn:hover {
  background: #ffca3a;
}

/* Footer (reused from style.css) */
.site-footer {
  background: #0f0f0f;
  padding: 2rem 0 1rem 0;
  color: #777;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  color: #ffd369;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  color: #777;
  margin-right: 1rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffd369;
}

.footer-social a {
  color: #777;
  margin-left: 0.7rem;
  font-size: 1.2rem;
}

.footer-social a:hover {
  color: #ffd369;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #555;
}
a {
  text-decoration: none;
  color: #ffd369;
}
/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #0f0f0f;
    width: 70%;
    height: calc(100vh - 70px);
    padding-top: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.1rem;
  }

  .nav-links.open {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .legal-title {
    font-size: 2.2rem;
  }
}