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

:root {
  --primary-color: #e0c350;
  --secondary-color: #ff0033;
  --dark-bg: #1a1a1a;
  --darker-bg: #350c24;
  --accent-bg: #440f2e;
  --light-text: #ffe6f2;
  --border-color: #4a152c;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

body {
  font-family: 'Cinzel', serif;
  background: var(--dark-bg) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.1"><rect fill="%231a1a1a" width="100" height="100"/><path d="M0 0L100 100M100 0L0 100" stroke="%234a152c" stroke-width="1"/></svg>');
  color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Header Styles */
header {
  background: linear-gradient(to bottom, var(--accent-bg), var(--darker-bg));
  border-bottom: 1px solid var(--secondary-color);
  padding: 15px 0;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.logo-text {
  font-family: 'MedievalSharp', cursive;
  font-size: 2rem;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

/* Main Navigation */
.main-nav {
  background: linear-gradient(to bottom, var(--accent-bg), var(--darker-bg));
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  padding: 0 auto;
}

.main-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.main-nav ul li {
  margin: 0 8px;
  position: relative;
  flex: 1 0 auto;
  max-width: 200px;
  text-align: center;
}

.main-nav ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav ul li a:hover {
  color: var(--light-text);
}

.main-nav ul li a:hover::after {
  width: 80%;
}

.main-nav ul li a.active {
  color: var(--light-text);
}

.main-nav ul li a.active::after {
  width: 80%;
  background: var(--primary-color);
}

.site-title {
  font-family: 'MedievalSharp', cursive;
  font-size: 1.8rem;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2000;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.mobile-nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg) translate(12px, 12px);
}

.mobile-nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg) translate(2px, -1.5px);
}

.mobile-nav-toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.account-mobile-nav {
  display: none;
}

.main-content-area {
  flex-grow: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .site-title {
    display: none;
  }

  .main-nav .container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--darker-bg);
    padding: 5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 1500;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-links[data-visible="true"] {
    display: flex;
    transform: translateX(0%);
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .account-mobile-nav {
    display: block;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .main-nav ul li {
    width: 80%;
    max-width: 300px;
  }

  .main-nav ul li a {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-container {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  #account-panel-sidebar {
  display: none;
  }

  .content-body > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .news-item:hover {
    padding-left: 5px;
  }

  .server-status:hover {
    margin: 0 -5px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .main-nav ul li a:hover {
    background: transparent;
    border-color: transparent;
  }

  .main-nav ul li a:hover::after {
    width: 0;
  }

  .main-nav ul li a:active::after {
    width: 80%;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .main-nav ul li a,
  .main-nav ul li a::after,
  .nav-links {
    transition: none;
  }
}

/* 2009 Style Layout */
.page-container {
  display: flex;
  gap: 9px;
  margin-bottom: 30px;
}

.main-content {
  flex: 3;
}

.sidebar {
  flex: 1;
  min-width: 250px;
}

/* Content Boxes */
.content-box {
  border: 2px solid var(--border-color);
  margin-bottom: 9px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  background: linear-gradient(145deg, var(--accent-bg), var(--darker-bg));
  box-shadow: var(--card-shadow), inset 0 0 20px rgba(74, 21, 44, 0.3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome {
}

.content-header {
  background: linear-gradient(135deg, #2a0a1a 0%, #1a0510 100%);
  padding: 5px 20px;
  border-bottom: 1px solid var(--border-color);
  font-family: 'MedievalSharp', cursive;
  font-size: 1.3rem;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.content-body {
  padding: 15px;
}

/* News Section */
.news-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.news-item::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 5px;
  width: 3px;
  height: 0;
  background: var(--secondary-color);
  transition: height 0.3s ease;
}

.news-item:hover::before {
  height: calc(100% - 10px);
}

.news-item:hover {
  padding-left: 10px;
}

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

.news-date {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.news-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.news-title h3 {
  position: relative;
  display: inline-block;
}

.news-title h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s ease;
}

.news-title:hover h3::after {
  width: 100%;
}

.news-excerpt {
  color: var(--light-text);
  font-size: 0.95rem;
}

.news-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--light-text);
}

/* Server Status */
.server-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-color);
  transition: background-color 0.3s ease;
}

.server-status:hover {
  background-color: rgba(74, 21, 44, 0.2);
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 -10px;
  border-radius: 4px;
}

.server-status:last-child {
  border-bottom: none;
}

.server-name {
  color: var(--primary-color);
}

.status-online,
.status-offline {
  font-weight: bold;
}

.status-online {
  color: #4CAF50;
}

.status-offline {
  color: var(--secondary-color);
}

.status-online::before,
.status-offline::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.status-online::before {
  background-color: #4CAF50;
  box-shadow: 0 0 8px #4CAF50;
}

.status-offline::before {
  background-color: var(--secondary-color);
  box-shadow: 0 0 8px var(--secondary-color);
}

.player-count {
  color: var(--light-text);
  font-size: 0.9rem;
}

/* Buttons */
.account-button {
  font-size: 24px;
  color: var(--primary-color);
  text-decoration: none;
}

.account-button:hover {
  color: var(--light-text);
}

.cta-button {
  background: linear-gradient(to bottom, var(--secondary-color), #a30021);
  color: var(--light-text);
  border: none;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-family: 'Cinzel', serif;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.cta-button:hover {
  background: linear-gradient(to bottom, #ff1a47, #b30024);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.cta-button2,
.auth-form button[type="submit"],
.button {
  background: linear-gradient(to bottom, #8b4513, #5d2906);
  color: #f0d0a0;
  border: 2px outset #b08d57;
  padding: 12px 24px;
  font-size: 1rem;
  font-family: 'Times New Roman', Times, serif;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-shadow: 1px 1px 1px #000;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.cta-button2:hover,
.auth-form button[type="submit"]:hover,
.button:hover {
  background: linear-gradient(to bottom, #9c5523, #6d3a16);
  color: #ffd8a0;
  border: 2px outset #c9a875;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.cta-button2:active,
.auth-form button[type="submit"]:active,
.button:active {
  background: linear-gradient(to bottom, #5d2906, #8b4513);
  border: 2px inset #b08d57;
  transform: translateY(1px);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.button.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(74, 21, 44, 0.3);
  color: var(--light-text);
}

.button.danger,
.cta-button2.danger {
  background: linear-gradient(to bottom, #9c2b2b, #6e1a1a);
  color: var(--light-text);
  border: 2px outset #c45050;
}

.button.danger:hover,
.cta-button2.danger:hover {
  background: linear-gradient(to bottom, #b33030, #801f1f);
  color: #fff;
  border: 2px outset #d06060;
}

/* Footer */
footer {
  background: var(--darker-bg);
  padding: 30px 0 20px;
  border-top: 1px solid var(--border-color);
  margin-top: 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 5px;
}

.footer-column a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.copyright {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  padding-top: 15px;
}

/* Authentication Forms */
.auth-form {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background: linear-gradient(to bottom, var(--accent-bg), var(--darker-bg));
  border: 2px solid var(--border-color);
  box-shadow: var(--card-shadow);
  color: var(--light-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

.auth-form h2 {
  color: var(--primary-color);
  font-family: 'MedievalSharp', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.auth-form .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.auth-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 1.1rem;
  text-align: left;
}

.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"],
.auth-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  background-color: var(--dark-bg);
  color: var(--light-text);
  font-size: 1rem;
  font-family: 'Cinzel', serif;
  border-radius: 0;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="password"]:focus,
.auth-form input[type="email"]:focus,
.auth-form select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 8px rgba(var(--secondary-color), 0.5);
}

.auth-form p {
  margin-top: 20px;
  font-size: 0.95rem;
}

.auth-form p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-form p a:hover {
  color: var(--secondary-color);
}

.error,
.error-banner {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.success {
  color: #4CAF50;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Character List (www-specific) */
.character-list {
  display: grid;
  gap: 10px;
}

.character-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 12px 15px;
  border-bottom: 1px dashed var(--border-color);
  transition: all 0.3s ease;
}

.character-row:hover {
  background-color: rgba(74, 21, 44, 0.2);
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 -5px;
  border-radius: 4px;
}

.character-row:last-child {
  border-bottom: none;
}

.character-row .name {
  font-weight: bold;
  color: var(--primary-color);
}

.character-row .meta {
  color: var(--light-text);
  font-size: 0.88rem;
  margin-top: 4px;
}

.character-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.character-actions .button,
.character-actions .cta-button2 {
  padding: 6px 14px;
  font-size: 0.85rem;
}

/* Forms inside a content-box (account/admin edit forms) - same look as
   .auth-form's inputs, scoped so it doesn't affect .auth-form itself which
   already styles its own form-group/label/input. */
.content-body .form-group {
  margin-bottom: 15px;
  text-align: left;
  max-width: 400px;
}

.content-body .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 1rem;
}

.content-body .form-group input[type="text"],
.content-body .form-group input[type="email"],
.content-body .form-group input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  background-color: var(--dark-bg);
  color: var(--light-text);
  font-size: 1rem;
  font-family: 'Cinzel', serif;
  border-radius: 0;
}

.content-body .form-group input:focus {
  outline: none;
  border-color: var(--secondary-color);
}

/* Online Dot */
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--light-text);
  margin-right: 8px;
}

.online-dot.online {
  background-color: #4CAF50;
  box-shadow: 0 0 8px #4CAF50;
}

/* Status Widget */
.status-widget {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.status-widget .stat {
  flex: 1;
  min-width: 0;
}

.status-widget .stat .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.status-widget .stat .label {
  color: var(--light-text);
  font-size: 0.85rem;
}

/* Form styles for www pages */
.auth-form form {
  text-align: left;
}

.auth-form form label {
  text-align: left;
}

.auth-form form button[type="submit"],
.auth-form form .button {
  width: 100%;
  margin-top: 10px;
}

/* Character create form */
select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  background-color: var(--dark-bg);
  color: var(--light-text);
  font-size: 1rem;
  font-family: 'Cinzel', serif;
  border-radius: 0;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 8px rgba(var(--secondary-color), 0.5);
}

/* Page headings */
h1, h2, h3 {
  color: var(--primary-color);
  line-height: 1.25;
}

h1 {
  font-family: 'MedievalSharp', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

h2 {
  font-family: 'MedievalSharp', cursive;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* General text colors */
p {
  color: var(--light-text);
  margin-bottom: 12px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--light-text);
}

/* Wiki (www-specific) */
.wiki-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wiki-nav-list li {
  border-bottom: 1px dashed var(--border-color);
}

.wiki-nav-list li:last-child {
  border-bottom: none;
}

.wiki-nav-list a {
  display: block;
  padding: 8px 4px;
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.wiki-nav-list a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.wiki-nav-list a.active {
  color: var(--primary-color);
  font-weight: bold;
}

.wiki-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.wiki-article-card {
  display: block;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-decoration: none;
  color: var(--light-text);
  background: rgba(74, 21, 44, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wiki-article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}

.wiki-article-card .wiki-article-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.wiki-article-card .wiki-article-title {
  font-family: 'MedievalSharp', cursive;
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.wiki-article-card .wiki-article-desc {
  font-size: 0.9rem;
  color: var(--light-text);
}

.wiki-article-body h2 {
  font-family: 'MedievalSharp', cursive;
  color: var(--primary-color);
  margin: 24px 0 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
}

.wiki-article-body h2:first-child {
  margin-top: 0;
}

.wiki-article-body h3 {
  font-family: 'MedievalSharp', cursive;
  color: var(--light-text);
  font-size: 1.05rem;
  margin: 16px 0 6px;
}

.wiki-article-body p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.wiki-article-body ul,
.wiki-article-body ol {
  margin: 0 0 12px 22px;
  line-height: 1.6;
}

.wiki-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.wiki-article-body th,
.wiki-article-body td {
  text-align: left;
  padding: 6px 10px;
  border-bottom: 1px dashed var(--border-color);
}

.wiki-article-body th {
  color: var(--primary-color);
  font-family: 'MedievalSharp', cursive;
  font-weight: normal;
}

.wiki-note {
  border-left: 3px solid var(--secondary-color);
  background: rgba(74, 21, 44, 0.2);
  padding: 10px 15px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Landing page */
.landing-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  text-align: center;
}

.landing-title {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 5rem;
  color: var(--primary-color);
  text-shadow: 0 0 30px rgba(224, 195, 80, 0.3);
  margin-bottom: 0.5rem;
}

.landing-tagline {
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.landing-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
