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

:root {
  --bg-color: #000;
  --text-color: #f1f1f1;
  --terminal-bg: #1a1a1a;
  --terminal-header: #333;
  --accent-color: #50fa7b;
  --dark-section: #0a0a0a;
  --macos-terminal-bg: #2d2d2d;
  --macos-terminal-text: #f0f0f0;
  --macos-prompt-color: #4ec9b0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Source Code Pro", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
  background-image: url("assets/color_flames.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

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

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tkt-logo {
  height: 50px;
  width: auto;
}

header h1 {
  font-size: 20px;
  color: var(--accent-color);
  font-family: "ADM-3A", monospace;
}

nav ul {
  display: flex;
  list-style: none;
  margin-right: 20px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent-color);
}

/* Slack authorization button styling */
nav > a {
  margin-left: auto;
}

/* Hero Section */
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
}

.hero {
  padding: 75px 0 50px;
  text-align: left;
}

.hero h1 {
  font-size: max(8px, 1.5vw);
  margin-bottom: max(10px, 1vw);
  color: var(--text-color);
  font-weight: 300;
  font-family: "ADM-3A", monospace;
  white-space: nowrap;
}

.hero h2 {
  font-size: 24px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .container .root {
  color: var(--accent-color);
}

.stats {
  margin-bottom: 20px;
  font-size: 18px;
}

.tagline {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 30px;
}

/* Background Spacer */
.bg-spacer {
  height: 100vh; /* Takes up full viewport height instead of half */
  width: 100%;
  margin-bottom: -42vh; /* Add extra space below the spacer */
  /* No background color or other styling to ensure the body background image shows through */
}

/* Terminal */
.terminal-section {
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

.terminal {
  width: 800px;
  max-width: 95%;
  background-color: var(--terminal-bg);
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.terminal-header {
  background-color: var(--terminal-header);
  padding: 8px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #444;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
  margin-right: 15px;
}

.btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.close {
  background-color: #ff5f56;
}

.minimize {
  background-color: #ffbd2e;
}

.maximize {
  background-color: #27c93f;
}

.terminal-title {
  flex-grow: 1;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.terminal-body {
  padding: 15px;
  min-height: 300px;
}

.prompt {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.output {
  color: var(--text-color);
  padding-left: 10px;
}

.output h1 {
  color: var(--text-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.output p {
  margin-bottom: 15px;
}

.output ul {
  list-style-type: none;
  margin-bottom: 15px;
  padding-left: 10px;
}

.output li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.output li:before {
  content: ">>";
  position: absolute;
  left: -10px;
  color: var(--text-color);
}

.highlight {
  color: var(--text-color);
  font-weight: bold;
}

.command {
  color: #d1d2d3;
  margin-bottom: 15px;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: normal;
}

.blinking-cursor {
  width: 10px;
  height: 18px;
  background-color: #f8f8f2;
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* About Section */
.dark-section {
  background-color: var(--dark-section);
  padding: 80px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.two-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.two-col > div {
  flex: 1;
}

.two-col h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.two-col p {
  margin-bottom: 15px;
}

.highlight-text {
  padding: 15px;
  background-color: rgba(80, 250, 123, 0.1);
  border-left: 3px solid var(--accent-color);
  margin: 20px 0;
  font-weight: bold;
  color: var(--text-color);
}

.mini-terminal {
  background-color: var(--terminal-bg);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mini-terminal-header {
  background-color: var(--terminal-header);
  padding: 5px 10px;
  border-bottom: 1px solid #444;
}

.mini-terminal-title {
  font-size: 12px;
  color: #aaa;
}

.mini-terminal-body {
  padding: 15px;
  min-height: 60px;
  color: var(--accent-color);
}

/* Manifesto Section */
.manifesto-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.manifesto-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
}

.quote {
  margin-bottom: 30px;
}

.quote p {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.quote-comparison {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 20px;
  border-radius: 6px;
}

.quote-comparison p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
}

.pricing-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.pricing-table {
  margin: 0 auto 40px;
  max-width: 600px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table th,
table td {
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid #333;
}

table th {
  background-color: #111;
  color: var(--accent-color);
}

.highlight-row {
  background-color: rgba(80, 250, 123, 0.05);
}

.pricing-notes {
  margin-bottom: 40px;
}

.calculator {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

.calculator h3 {
  margin-bottom: 15px;
  color: var(--text-color);
}

.calc-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.calc-form input {
  background-color: #111;
  border: 1px solid #333;
  color: var(--text-color);
  padding: 8px 12px;
  border-radius: 4px;
  width: 100%;
}

.calc-result {
  font-weight: bold;
  color: var(--accent-color);
}

/* Features Section */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.feature {
  padding: 20px;
}

.feature h3 {
  color: var(--text-color);
  margin-bottom: 15px;
}

.full-width {
  grid-column: 1 / -1;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  text-align: center;
}

/* Command Section */
.command-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.command-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
}

.command-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.command-terminal {
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: left;
  background-color: var(--terminal-bg);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

.command-terminal pre {
  margin: 0;
}

.command-terminal code {
  color: var(--text-color);
  font-family: "Source Code Pro", monospace;
  white-space: pre;
  line-height: 1.5;
}

/* Regex Section */
.regex-section {
  padding: 80px 0;
  background-color: var(--dark-section);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.regex-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-color);
  text-align: center;
}

.regex-section p {
  margin-bottom: 20px;
  text-align: center;
}

.regex-example {
  background-color: var(--terminal-bg);
  border-radius: 6px;
  padding: 20px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.regex-input {
  margin-bottom: 15px;
}

.regex-input .prompt {
  color: var(--accent-color);
}

.regex-output {
  padding-left: 15px;
  border-left: 2px solid var(--accent-color);
}

.regex-output code {
  background-color: #282a36;
  color: var(--text-color);
  padding: 2px 5px;
  border-radius: 3px;
}

/* Join Section */
.join-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.join-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
}

.join-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.pact-options {
  margin-bottom: 60px;
}

.pact-table {
  max-width: 600px;
  margin: 0 auto;
}

.join-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--terminal-bg);
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.join-form h3 {
  font-family: "ADM-3A", monospace;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #111;
  border: 1px solid #333;
  color: var(--text-color);
  padding: 10px 15px;
  border-radius: 4px;
  font-family: "Source Code Pro", monospace;
}

.form-group textarea {
  resize: vertical;
}

.join-button {
  background-color: #ff5555;
  color: var(--text-color);
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: "Source Code Pro", monospace;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
  font-family: "ADM-3A", monospace;
}

.join-button:hover {
  background-color: #ff3333;
}

/* Footer */
footer {
  padding: 20px 0;
  background-color: #0a0a0a;
  border-top: 1px solid #222;
  text-align: center;
}

footer p {
  font-size: 12px;
  color: #777;
}

/* Media Queries */
@media (max-width: 768px) {
  .two-col {
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero .container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .hero {
    display: flex;
    justify-content: center;
    text-align: left;
  }

  .hero h1 {
    font-size: 8px;
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }

  .hero h2 {
    font-size: 20px;
  }

  .tagline {
    font-size: 24px;
  }

  .terminal {
    width: 100%;
  }

  body {
    background-size: 200%; /* Zoom out the background image on mobile */
    background-position: center; /* Keep it centered */
  }
}

/* ===== BETA PAGE SPECIFIC STYLES ===== */

/* Beta section container */
.beta-section {
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.beta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.beta-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ffff;
}

.beta-content .tagline {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

/* Mini terminal styles for beta page */
.beta-content .mini-terminal {
  width: 80%;
  margin: 0 auto 40px;
  background-color: var(--macos-terminal-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  font-family: "Menlo", "Monaco", "Source Code Pro", monospace;
}

.beta-content .mini-terminal-header {
  background: linear-gradient(to bottom, #ececec, #d1d1d1);
  padding: 10px 15px;
  border-bottom: 1px solid #b1b1b1;
  display: flex;
  align-items: center;
}

.beta-content .mini-terminal-title {
  font-size: 13px;
  color: #333;
  text-align: center;
  width: 100%;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
}

/* Add macOS-style window buttons */
.beta-content .mini-terminal-title::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #ff5f56;
  border-radius: 50%;
  box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}

.beta-content .mini-terminal-body {
  padding: 20px;
  text-align: left;
  font-family: "Menlo", "Monaco", "Source Code Pro", monospace;
  color: var(--macos-terminal-text);
  line-height: 1.5;
  background-color: var(--macos-terminal-bg);
  position: relative;
}

/* Add a subtle terminal glow effect */
.beta-content .mini-terminal-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  pointer-events: none;
}

.beta-content .mini-terminal-body p {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

/* Terminal intro and description styling */
.terminal-intro {
  padding-left: 0 !important;
  margin-bottom: 5px !important;
}

.terminal-description {
  color: var(--macos-terminal-text);
  padding-left: 0 !important;
  margin-bottom: 20px !important;
  font-style: italic;
  opacity: 0.8;
}

/* Add bash-style prompt */
.beta-content .mini-terminal-body p:first-child {
  color: var(--macos-terminal-text);
  padding-left: 0;
  margin-bottom: 20px;
}

/* Terminal user and path styling */
.terminal-user {
  color: #56b6c2; /* Cyan color for username */
  font-weight: bold;
}

.terminal-path {
  color: #98c379; /* Green color for path */
  font-weight: bold;
}

.beta-content .command {
  color: var(--macos-terminal-text);
  margin: 10px 0;
  position: relative;
  padding-left: 0;
  font-size: 14px;
}

/* Add bash-style prompt before commands */
.beta-content .command::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--macos-prompt-color);
  font-weight: bold;
}

/* Add a blinking cursor after the last command */
.beta-content .command:last-child::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  background-color: var(--macos-terminal-text);
  margin-left: 5px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

/* Features highlight section */
.features-highlight {
  margin: 40px auto;
  display: flex;
  justify-content: center;
}

.features-highlight ul {
  list-style-type: none;
  padding: 0;
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

.features-highlight li {
  margin: 15px 0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 30px;
}

.features-highlight li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff5252;
}

.features-highlight .highlight {
  color: #ff5252;
  font-weight: 700;
}

/* Join form styles */
.beta-content .join-form {
  background-color: rgba(40, 40, 40, 0.7);
  padding: 30px;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.beta-content .join-form h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #ff5252;
}

.beta-content .join-form p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.beta-content .form-group {
  margin-bottom: 15px;
}

.beta-content .form-group input,
.beta-content .form-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: none;
  background-color: #222;
  color: #fff;
  font-size: 16px;
  font-family: "Source Code Pro", monospace;
}

.beta-content .form-group input::placeholder,
.beta-content .form-group select {
  color: #888;
}

.beta-content .join-button {
  background-color: #ff5252;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
  width: 100%;
}

.beta-content .join-button:hover {
  background-color: #ff2d2d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .beta-content .mini-terminal {
    width: 95%;
  }

  .beta-content h2 {
    font-size: 2rem;
  }

  .beta-content .tagline {
    font-size: 1.1rem;
  }

  .features-highlight li {
    font-size: 1rem;
  }
}

/* Slack Interface Styles */
.slack-container {
  max-width: 800px;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background-color: #1a1d21;
  padding: 16px;
}

.slack-header {
  background-color: #1a1d21;
  padding: 0 0 10px 0;
  display: flex;
  align-items: center;
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: transparent;
  margin-right: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 20%;
}

.app-name {
  font-weight: bold;
  font-size: 18px;
  color: #d1d2d3;
  margin-right: 6px;
}

.app-label {
  font-size: 12px;
  background-color: #424242;
  color: #d1d2d3;
  padding: 2px 4px;
  border-radius: 3px;
  margin-right: 4px;
  display: inline-block;
}

.timestamp {
  color: #d1d2d3;
  font-size: 14px;
  display: inline-block;
}

.message-container {
  border: 1px solid #383838;
  border-radius: 3px;
  background-color: #222529;
  overflow: hidden;
}

.message-content {
  padding: 16px;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: auto;
  text-align: left;
}

.command {
  color: #d1d2d3;
  margin-bottom: 15px;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: normal;
}

.ticket-info {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.ticket-info li {
  margin-bottom: 8px;
  color: #d1d2d3;
}

.key {
  color: #d1d2d3;
  font-weight: normal;
}

.status-change {
  color: #d1d2d3;
}

.status-new {
  color: #e67e22;
}

.status-closed {
  color: #64ff7e;
}

.sealed-message {
  margin-top: 24px;
  color: #d1d2d3;
}

.deprecated {
  color: #e74c3c;
}

.price {
  color: #64ff7e;
}

/* Media Queries */
@media (max-width: 768px) {
  .beta-content .slack-container {
    width: 95%;
  }

  .beta-content h2 {
    font-size: 2rem;
  }

  .beta-content .tagline {
    font-size: 1.1rem;
  }

  .features-highlight li {
    font-size: 1rem;
  }

  .two-col {
    flex-direction: column;
  }
}

/* Manifesto Page Styles */
.manifesto-content {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.manifesto-overlay {
  position: relative;
  padding: 40px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7); /* 70% opacity black overlay */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.manifesto-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--text-color);
  text-align: center;
  font-weight: 400;
}

.manifesto-content h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--text-color);
  font-weight: 400;
}

.manifesto-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.manifesto-text p {
  margin-bottom: 20px;
}

.manifesto-text ul {
  list-style-type: none;
  margin: 20px 0;
  padding-left: 20px;
}

.manifesto-text li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.manifesto-text li:before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--text-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .manifesto-overlay {
    padding: 20px;
  }

  .manifesto-content h1 {
    font-size: 28px;
  }

  .manifesto-content h2 {
    font-size: 20px;
  }

  .manifesto-text {
    font-size: 14px;
  }
}

/* Lore Page Styles */
.lore-content {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.lore-overlay {
  position: relative;
  padding: 40px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7); /* 70% opacity black overlay */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.lore-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--text-color);
  text-align: center;
  font-weight: 400;
}

.lore-content h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--text-color);
  font-weight: 400;
}

.lore-content h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  color: var(--text-color);
  font-weight: 400;
}

.lore-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.lore-text p {
  margin-bottom: 20px;
}

.lore-text ul,
.lore-text ol {
  list-style-type: none;
  margin: 20px 0;
  padding-left: 20px;
}

.lore-text li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.lore-text ul li:before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--text-color);
  font-weight: bold;
}

.lore-text ol {
  counter-reset: item;
}

.lore-text ol li:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  color: var(--text-color);
  font-weight: bold;
}

.lore-text em {
  font-style: italic;
  color: var(--accent-color);
}

.lore-text code {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 3px 6px;
  border-radius: 3px;
  font-family: "Source Code Pro", monospace;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .lore-overlay {
    padding: 20px;
  }

  .lore-content h1 {
    font-size: 28px;
  }

  .lore-content h2 {
    font-size: 20px;
  }

  .lore-content h3 {
    font-size: 18px;
  }

  .lore-text {
    font-size: 14px;
  }
}

@font-face {
  font-family: "ADM-3A";
  src: url("assets/fonts/adm-3a.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
