:root {
  --site-header-height: 78px;
  --site-header-bg: #ffffff;
  --site-header-border: rgba(15, 23, 42, 0.08);
  --site-header-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #060b14;
  color: #ffffff;
  padding-top: var(--site-header-height);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  width: 100%;
  min-height: calc(100vh - var(--site-header-height));
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--site-header-height);
  background: var(--site-header-bg);
  border-bottom: 1px solid var(--site-header-border);
  box-shadow: var(--site-header-shadow);
  backdrop-filter: none;
}

.nav-wrap {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #74a8ff, #5be0c1);
  color: #3f42ff;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(91, 224, 193, 0.25);
  flex: 0 0 auto;
}

.brand-text {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #4c48ff;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.main-nav a {
  color: #364152;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #111827;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.nav-user-menu {
  position: relative;
  flex-shrink: 0;
}

.nav-user-trigger {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #eef0fb;
  color: #374151;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.18s ease, transform 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

.nav-user-trigger:hover {
  background: #e7eaf8;
  transform: translateY(-1px);
}

.nav-user-name {
  white-space: nowrap;
}

.nav-user-caret {
  font-size: 12px;
  opacity: 0.8;
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1001;
}

.nav-user-dropdown.open {
  display: flex;
}

.nav-user-dropdown a,
.nav-dropdown-btn {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: none;
  background: transparent;
  border-radius: 12px;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
}

.nav-user-dropdown a:hover,
.nav-dropdown-btn:hover {
  background: #f3f4f6;
}

.nav-dropdown-form {
  margin: 0;
}

.nav-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}

.nav-chip-status {
  gap: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #1f2937;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.nav-status-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-status-divider {
  color: #9ca3af;
  font-weight: 700;
}

.nav-chip-label {
  color: #111827;
}

.nav-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-google {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.btn-outline {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-outline:hover {
  background: #f8fafc;
}

.btn-solid {
  background: linear-gradient(135deg, #6e7bff, #54e2b3);
  color: #07111b;
  box-shadow: 0 10px 24px rgba(84, 226, 179, 0.22);
}

.btn-play {
  background: linear-gradient(135deg, #69d4ff, #4ce09d);
  color: #07111b;
  box-shadow: 0 10px 24px rgba(76, 224, 157, 0.22);
}

/* =========================
   LEGAL PAGES
========================= */

.legal-page {
  padding: 42px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(84, 72, 238, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(91, 224, 193, 0.12), transparent 26%),
    #060b14;
}

.legal-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-card {
  background: linear-gradient(180deg, #0d1525, #09111f);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.legal-eyebrow {
  margin: 0 0 10px;
  color: #7ea8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ffffff;
}

.legal-card p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: #d6e0f3;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  margin-top: 80px;
  background: #0c1220;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d6deea;
}

.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #74a8ff, #5be0c1);
  color: #3f42ff;
  font-weight: 900;
  font-size: 20px;
}

.footer-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.footer-sub {
  margin-top: 4px;
  font-size: 13px;
  color: #9fb0c8;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d6deea;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .nav-wrap {
    width: min(100%, calc(100% - 24px));
  }

  .nav-actions {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  :root {
    --site-header-height: 72px;
  }

  .nav-wrap {
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand-text {
    font-size: 24px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    font-size: 20px;
    border-radius: 12px;
  }

  .nav-chip-status {
    padding: 0 12px;
    font-size: 13px;
  }

  .btn {
    padding: 0 14px;
    font-size: 13px;
  }

  .legal-page {
    padding: 28px 0 56px;
  }

  .legal-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    width: calc(100% - 16px);
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-chip-label {
    display: none;
  }

  .nav-user-trigger {
    padding: 0 12px;
  }

  .nav-chip-status {
    min-height: 40px;
  }

  .btn {
    min-height: 40px;
    padding: 0 12px;
  }

  .legal-shell {
    width: calc(100% - 20px);
  }
}
.footer-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.footer-contact{
  margin-top:6px;
  font-size:13px;
  color:#b8c5da;
}

.footer-contact a{
  color:#ffffff;
  font-weight:700;
}

.footer-contact a:hover{
  color:#8fd3ff;
}

@media (max-width: 768px){
  .footer-contact{
    font-size:12px;
    line-height:1.5;
  }
}