
  :root {
    --primary: #2a1b3d;
    --secondary: #44318d;
    --accent: #e98a15;
    --light: #f2f2f2;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #f2f2f2;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

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

  body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  section {
    padding: 80px 0;
    position: relative;
  }

  h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.1;
  }

  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
  }

  .btn-primary {
    background-color: var(--accent);
    color: var(--light);
  }

  .btn-primary:hover {
    background-color: #d97a05;
    transform: translateY(-2px);
  }

  .btn-secondary {
    background-color: var(--secondary);
    color: var(--light);
  }

  .btn-secondary:hover {
    background-color: #372a73;
    transform: translateY(-2px);
  }

  /* Hero Section */
  .hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
  }

  .hero-section h1, .hero-section p {
    color: var(--light);
  }

  .hero-intro {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
  }

  /* Maps Overview */
  .maps-overview {
    background-color: var(--light);
  }

  .maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }

  .map-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }

  .map-card:hover {
    transform: translateY(-5px);
  }

  .map-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .map-card h3, .map-card p {
    padding: 0 1.5rem;
  }

  .map-card h3 {
    margin-top: 1.5rem;
  }

  .map-card p {
    padding-bottom: 1.5rem;
  }

  /* Map Editor */
  .map-editor {
    background-color: var(--secondary);
    color: var(--light);
  }

  .map-editor h2, .map-editor h3 {
    color: var(--light);
  }

  .editor-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .editor-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
  }

  .feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
  }

  .feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
  }

  /* Legendary Maps */
  .legendary-maps {
    background-color: var(--light);
  }

  .timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }

  .timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary);
    top: 0;
    bottom: 0;
    left: 100px;
    margin-left: -2px;
  }

  .timeline-item {
    display: flex;
    margin-bottom: 3rem;
  }

  .year {
    min-width: 100px;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--accent);
    text-align: right;
    padding-right: 2rem;
    position: relative;
  }

  .year::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--accent);
    border: 4px solid var(--secondary);
    top: 0;
    border-radius: 50%;
    z-index: 1;
  }

  .content {
    padding-left: 2rem;
  }

  /* Map Tips */
  .map-tips {
    background-color: var(--primary);
    color: var(--light);
  }

  .map-tips h2, .map-tips h3 {
    color: var(--light);
  }

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

  .tip-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease;
  }

  .tip-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
  }

  .tip-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  /* Community Maps */
  .community-maps {
    background-color: var(--light);
    text-align: center;
  }

  .section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
  }

  .community-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .cta-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }

  .cta-card:hover {
    transform: translateY(-5px);
  }

  .cta-card button {
    margin-top: 1rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

    .timeline::before {
      left: 31px;
    }

    .timeline-item {
      flex-direction: column;
    }

    .year {
      text-align: left;
      padding-left: 50px;
      padding-right: 0;
      margin-bottom: 1rem;
    }

    .year::after {
      left: 20px;
      right: auto;
    }

    .content {
      padding-left: 50px;
    }
  }

  @media (max-width: 480px) {
    section {
      padding: 60px 0;
    }

    h1 {
      font-size: 2rem;
    }

    h2 {
      font-size: 1.75rem;
    }
  }
