/*
 * Orno LLC – Luminary Group Holdings LLC Subsidiary
 * Empowering Streamer Partnerships
 * © 2025 Luminary Group Holdings LLC. All rights reserved.
 */
:root {
  color-scheme: dark;
}

html {
  min-height: 100%;
  background-color: #0b132b;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0b132b;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(99, 102, 241, 0.7) rgba(15, 23, 42, 0.75);
}

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

body::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.75);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.85), rgba(30, 58, 138, 0.85));
  border-radius: 9999px;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 45rem;
  height: 45rem;
  border-radius: 9999px;
  opacity: 0.3;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -18rem;
  left: -12rem;
  background: radial-gradient(circle at center, rgba(30, 58, 138, 0.45), transparent 65%);
}

body::after {
  bottom: -22rem;
  right: -16rem;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.4), transparent 70%);
}

.document-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(165deg, rgba(17, 24, 39, 0.82), rgba(30, 58, 138, 0.35));
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.55);
  padding: 1.75rem;
  color: #e2e8f0;
}

.document-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  padding-bottom: 0.9rem;
}

@media (min-width: 640px) {
  .document-card__header {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

.document-card__title {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: #f8fafc;
  margin: 0;
}

.document-card__meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(148, 163, 184, 0.65);
  margin: 0;
}

.document-card__content {
  color: inherit;
  margin-top: 1.25rem;
}

.legal-document {
  display: block;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.92);
}

.legal-document__header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  padding-bottom: 1rem;
}

.legal-document__header h1 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.legal-document__meta {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.6);
  margin: 0;
}

.legal-document__body {
  display: block;
}

.legal-article {
  margin-bottom: 1.75rem;
}

.legal-article:last-of-type {
  margin-bottom: 0;
}

.legal-document h1,
.legal-document h2,
.legal-document h3,
.legal-document h4,
.legal-document h5,
.legal-document h6 {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  color: #f8fafc;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-document h1 {
  font-size: 1.6rem;
}

.legal-document h2 {
  font-size: 1.35rem;
}

.legal-article h2 {
  margin-top: 0;
}

.legal-document h3 {
  font-size: 1.15rem;
}

.legal-document p {
  margin: 0 0 1.15rem;
}

.legal-document strong {
  color: #fdf4ff;
}

.legal-document a {
  color: rgba(129, 140, 248, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(129, 140, 248, 0.5);
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 1.1rem 0;
  padding-left: 1.5rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
}

.legal-document blockquote {
  border-left: 3px solid rgba(129, 140, 248, 0.6);
  margin: 1.2rem 0;
  padding: 0.75rem 1.1rem;
  background-color: rgba(15, 23, 42, 0.6);
  border-radius: 0.85rem;
}

.legal-document table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.legal-document th,
.legal-document td {
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 0.55rem 0.75rem;
  text-align: left;
}

.legal-document th {
  background-color: rgba(15, 23, 42, 0.7);
  color: #e0f2fe;
}

.legal-document code {
  font-family: 'Fira Code', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  background: rgba(15, 23, 42, 0.75);
  padding: 0.15rem 0.35rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #c084fc;
}

.legal-document pre {
  background: rgba(15, 23, 42, 0.8);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.legal-document pre code {
  padding: 0;
  border: none;
  background: transparent;
}

.legal-document .clause-label {
  display: inline-block;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #f8fafc;
  margin-right: 0.75rem;
  min-width: 3rem;
}

a {
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

#countdown {
  display: grid;
  gap: 1rem;
}

#countdown .count-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#countdown .count-value {
  font-size: 2.15rem;
  font-weight: 600;
  color: #f8fafc;
}

#countdown .count-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.65rem;
  margin-top: 0.25rem;
  color: rgba(129, 140, 248, 0.85);
}

.footer-global {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: rgba(11, 19, 43, 0.82);
  backdrop-filter: blur(18px);
}

.footer-nav-link {
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.footer-nav-link:hover {
  color: #f8fafc;
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .footer-global {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
