
  :root {
    --primary: #8b0000;
    --secondary: #2c2c2c;
    --accent: #d4af37;
    --text-light: #f5f5f5;
    --text-dark: #1a1a1a;
    --background-dark: #121212;
    --background-light: #f5f5f5;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.1);
  }

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

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

  section {
    position: relative;
    padding: 5rem 0;
  }

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

  .content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--accent);
  }

  h3 {
    font-size: 1.8rem;
    color: var(--accent);
  }

  p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }

  /* Hero Section */
  .hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--background-dark);
    overflow: hidden;
  }

  .hero-section .content-wrapper {
    max-width: 800px;
  }

  .hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
  }

  /* Intro Section */
  .intro-section {
    background-color: var(--secondary);
    padding: 4rem 0;
  }

  .intro-section p {
    max-width: 800px;
  }

  /* Regions Section */
  .regions-section {
    background-color: var(--background-dark);
    padding: 5rem 0;
    z-index: 111;
  }

  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .region-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .region-card {
    background-color: rgba(44, 44, 44, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .region-card:hover {
    transform: translateY(-10px);
  }

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

  .region-content {
    padding: 2rem;
  }

  .region-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .region-features li {
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
  }

  .region-features i {
    color: var(--accent);
    margin-right: 0.5rem;
  }

  /* Unique Locations */
  .unique-locations {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 5rem 0;
  }

  .location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .location-item {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    transition: transform 0.3s ease;
  }

  .location-item:hover {
    transform: translateX(10px);
  }

  .location-item h3 {
    display: flex;
    align-items: center;
  }

  .location-item i {
    margin-right: 1rem;
    font-size: 1.5rem;
  }

  /* Hidden Treasures */
  .hidden-treasures {
    background-color: var(--background-dark);
    padding: 5rem 0;
  }

  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  .treasures-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .treasure-item {
    display: flex;
    flex-direction: column;
    background-color: rgba(44, 44, 44, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .treasure-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .treasure-content {
    padding: 2rem;
  }

  /* Player Tips */
  .player-tips {
    background-color: var(--secondary);
    padding: 5rem 0;
  }

  .tips-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .tip {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
  }

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

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

  /* Community Section */
  .community-section {
    background-color: var(--background-dark);
    padding: 5rem 0;
    text-align: center;
  }

  .discovery-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background-color: rgba(44, 44, 44, 0.8);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
  }

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

  label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Roboto', sans-serif;
  }

  input, textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
  }

  input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
  }

  .submit-btn {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
  }

  .submit-btn i {
    margin-right: 0.5rem;
  }

  .submit-btn:hover {
    background-color: #a50000;
  }

  /* Media Queries */
  @media (min-width: 768px) {
    .region-cards {
      grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .treasures-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .tips-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .treasure-item {
      flex-direction: row;
    }

    .treasure-item img {
      width: 40%;
      height: auto;
    }
  }

  @media (min-width: 1024px) {
    .region-cards {
      grid-template-columns: repeat(3, 1fr);
    }

    .location-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .treasures-container {
      grid-template-columns: repeat(3, 1fr);
    }

    .tips-container {
      grid-template-columns: repeat(4, 1fr);
    }

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

    .treasure-item img {
      width: 100%;
      height: 250px;
    }
  }
