:root {
  --bg-deep: #020617;
  --bg-card: #050818;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;


  --accent-blue: #22c55e;
  --accent-orange: #a855f7;
  --accent-red: #f97316;

  --border-color: #1e293b;
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --spacing-unit: 1.5rem;
}

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

body {
  font-family: var(--font-family);
  background:
    radial-gradient(circle at 0% 0%, #0f172a 0%, transparent 45%),
    radial-gradient(circle at 100% 0%, #1e293b 0%, transparent 55%),
    linear-gradient(180deg, #020617 0%, #020617 100%);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: #f9fafb;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  color: var(--accent-blue);
}

h3 {
  font-size: 1.4rem;
  color: var(--text-main);
}

p {
  margin-bottom: 0.9rem;
  color: var(--text-muted);
}

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



.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, #a855f7 100%);
  border-color: rgba(148, 163, 184, 0.3);
  color: #020617;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4ade80 0%, #c4b5fd 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-main);
  font-size: 0.9rem;
}

.btn-secondary:hover {
  border-color: #e5e7eb;
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.95);
}



.section-padding {
  padding: 4.5rem 0;
}



.top-strip {
  background: linear-gradient(90deg, #22c55e 0%, #a855f7 50%, #38bdf8 100%);
  color: #0b1120;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.65rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}



.main-header {
  position: sticky;
  top: 0;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 64, 175, 0.4);
  z-index: 1000;
  padding: 0.7rem 0;
}

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

.logo-area {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: #f9fafb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.78rem;
  color: #a5b4fc;
  font-weight: 500;
}

.desktop-nav ul {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

.desktop-nav a {
  font-size: 0.9rem;
  color: #cbd5f5;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
  color: #e5e7eb;
  border-bottom-color: #22c55e;
}

.auth-buttons {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.auth-link {
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 500;
}

.auth-link:hover {
  color: #c4b5fd;
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #e5e7eb;
}



#overview {
  padding: 5rem 0 4rem;
  text-align: center;
  background:

    linear-gradient(rgba(2, 6, 23, 0.72),
      rgba(2, 6, 23, 0.85)),

    radial-gradient(circle at top, rgba(34, 197, 94, 0.18), transparent 55%),
    radial-gradient(circle at bottom, rgba(168, 85, 247, 0.25), transparent 55%),

    url("../img/hero.png") center center / cover no-repeat;
}


.hero-content {
  max-width: 780px;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 0.98rem;
}



.pill-container {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.78rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}



.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.1rem;
  margin-top: 2.4rem;
}

.info-col {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 55%),
    var(--bg-card);
  padding: 1.9rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.9);
}

.info-col.negative {
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.18), transparent 55%),
    var(--bg-card);
  border-color: rgba(248, 113, 113, 0.6);
}

.info-col ul li {
  margin-bottom: 0.55rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-col ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #22c55e;
  font-size: 0.75rem;
}



.help-list {
  margin-top: 2rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  padding-top: 2rem;
}

.help-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.94rem;
}

.help-icon {
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
}



.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.format-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 18px;
  padding: 1.9rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.32), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: #22c55e;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
}

.format-card:hover::before {
  opacity: 1;
}

.format-icon {
  font-size: 2.1rem;
  margin-bottom: 1.1rem;
  color: #a855f7;
}



.guidance-box {
  background: rgba(15, 23, 42, 0.9);
  padding: 1.05rem 1.2rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-size: 0.9rem;
  border-left: 3px solid #22c55e;
}

.guidance-box strong {
  color: #22c55e;
  display: block;
  margin-bottom: 0.35rem;
}



.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.7rem;
  margin-top: 3rem;
}

.timeline-step {
  position: relative;
  padding: 1.6rem 1.6rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 16px;
  text-align: left;
  background: rgba(15, 23, 42, 0.95);
}

.step-num {
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.2);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}



.faq-item {
  border-bottom: 1px solid rgba(30, 64, 175, 0.4);
  padding: 1.5rem 0;
}

.faq-q {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
}

.faq-a {
  color: var(--text-muted);
  font-size: 0.94rem;
}



.resp-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.6rem;
}

.support-box {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 55%),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(56, 189, 248, 0.5);
  padding: 2rem;
  border-radius: 18px;
}



.account-banner {
  background: radial-gradient(circle at bottom, rgba(34, 197, 94, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 2.8rem 2.1rem;
  text-align: center;
  border-radius: 18px;
  margin: 3.2rem 0;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.95);
}



#age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), #020617 80%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.gate-content {
  background: rgba(15, 23, 42, 0.98);
  padding: 2.8rem 2.3rem;
  max-width: 540px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 0 45px rgba(56, 189, 248, 0.45);
}

.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2.1rem;
}



#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.3rem 1.5rem;
  z-index: 5000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}



.login-section,
.register-section {
  padding: 4rem 0;
  min-height: calc(100vh - 420px);
}

.login-card,
.register-card {
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 2.8rem 2.3rem;
  border-radius: 20px;
  max-width: 500px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.98);
}

.login-header,
.reg-header {
  margin-bottom: 1.8rem;
  text-align: center;
}

.login-header h1,
.reg-header h1 {
  font-size: 1.9rem;
  margin-bottom: 0.45rem;
}

.login-header p,
.reg-header p {
  font-size: 0.9rem;
}



.notice-box,
.info-box {
  background: radial-gradient(circle at left, rgba(34, 197, 94, 0.2), transparent 60%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.notice-icon,
.info-icon {
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
}



.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 10px;
  color: #f9fafb;
  font-size: 0.98rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-input::placeholder {
  color: #6b7280;
}

.form-input:focus {
  outline: none;
  border-color: #22c55e;
  background: #020617;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
}



.checkbox-group {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-label a {
  color: #38bdf8;
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: #a5b4fc;
}



.form-footer {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-footer a {
  color: #a855f7;
  font-weight: 500;
  text-decoration: underline;
}

.form-footer a:hover {
  color: #e879f9;
}



.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.2rem 1.5rem 4rem;
}

.main h1 {
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
}

.main h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 64, 175, 0.4);
}

.main h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.main h4 {
  font-size: 1.08rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.main p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.main ul,
.main ol {
  margin-bottom: 1.5rem;
  padding-left: 1.6rem;
}

.main ul {
  list-style: disc;
}

.main ol {
  list-style: decimal;
}

.main li {
  margin-bottom: 0.55rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.main a {
  color: #38bdf8;
  text-decoration: underline;
}

.main a:hover {
  color: #a5b4fc;
}

.main strong {
  color: #e5e7eb;
  font-weight: 600;
}

.main em {
  color: #a855f7;
  font-style: italic;
}



.main .toc {
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 2rem;
  border-radius: 18px;
  margin-bottom: 3rem;
}

.main .toc h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: #a855f7;
}

.main .toc ul {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.main .toc li {
  margin-bottom: 0.55rem;
}

.main .toc a {
  color: #cbd5f5;
  font-size: 0.92rem;
}

.main .toc a:hover {
  color: #22c55e;
}



.highlight-box {
  background: radial-gradient(circle at left, rgba(34, 197, 94, 0.18), transparent 60%),
    rgba(15, 23, 42, 0.98);
  border-left: 4px solid #22c55e;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 18px 18px 0;
}



.myth-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 2rem 0;
}

.myth-card,
.fact-card {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.myth-card {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.6);
}

.fact-card {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.6);
}

.myth-label {
  color: #f97316;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
  display: block;
}

.fact-label {
  color: #22c55e;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
  display: block;
}



.resources-list {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 2rem;
  border-radius: 18px;
}

.resource-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.resource-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.resource-name {
  font-weight: 700;
  color: #f9fafb;
  font-size: 1.1rem;
}



.table-responsive {
  overflow-x: auto;
  margin-bottom: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 23, 42, 0.98);
  min-width: 620px;
}

th,
td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(30, 64, 175, 0.4);
  font-size: 0.9rem;
}

th {
  background: linear-gradient(90deg, #0b1120 0%, #020617 100%);
  color: #a855f7;
  font-weight: 600;
}

td {
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}



.site-footer {
  background: linear-gradient(180deg, #020617 0%, #020617 100%);
  color: #d4d4d4;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.8;
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.site-footer p {
  margin: 10px auto;
  max-width: 900px;
  color: #e5e7eb;
}

.site-footer strong {
  color: #ffffff;
  font-weight: 600;
}

.site-footer a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

.site-footer .footer-warning {
  color: #f97316;
  font-weight: bold;
  font-size: 15px;
}

.site-footer .footer-links {
  font-size: 13px;
}

.site-footer .footer-links a {
  color: #9ca3af;
  margin: 0 10px;
}

.site-footer .footer-links a:hover {
  color: #38bdf8;
}

.site-footer .footer-copyright {
  margin-top: 22px;
  font-size: 12px;
  color: #6b7280;
  padding-top: 18px;
  border-top: 1px solid #1f2937;
}



@media (max-width: 900px) {

  .info-grid,
  .resp-grid {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-toggle {
    display: block;
  }

  h1 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .myth-fact-grid {
    grid-template-columns: 1fr;
  }

  .login-card,
  .register-card {
    padding: 2.2rem 1.6rem;
  }

  .account-banner {
    padding: 2.1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .top-strip {
    font-size: 0.7rem;
    padding-inline: 0.5rem;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .pill-container {
    gap: 0.4rem;
  }

  .pill {
    padding-inline: 0.8rem;
  }

  table {
    min-width: 0;
  }
}