
  :root {
    --primary: #cd2f2f;
    --secondary: #2a2a2a;
    --text: #f0f0f0;
    --background: #121212;
    --accent: #8a6c3d;
    --light-accent: #d4b16a;
  }

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

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

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

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

  h2 {
    font-size: 2.5rem;
    color: var(--light-accent);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

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

  h3 {
    font-size: 1.5rem;
    color: var(--light-accent);
    margin-bottom: 1rem;
  }

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

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

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

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

  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-section .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    border-left: 4px solid var(--primary);
  }

  .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-accent);
  }

  /* Lore Section */
  .lore-section {
    background-color: var(--secondary);
  }

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

  .lore-item {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

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

  .lore-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent);
  }

  /* Characters Section */
  .characters-section {
    background-color: var(--background);
    position: relative;
  }

  .character-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .character-card {
    display: flex;
    flex-direction: column;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

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

  .character-info {
    padding: 1.5rem;
  }

  /* Gameplay Section */
  .gameplay-section {
    background-color: var(--secondary);
    padding: 5rem 0;
  }

  .gameplay-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .feature i {
    color: var(--primary);
    margin-bottom: 1rem;
  }

  /* Trivia Section */
  .trivia-section {
    position: relative;
    padding: 5rem 0;
  }

  .trivia-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trivia-item {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--accent);
  }

  /* Quiz Section */
  .quiz-section {
    background-color: var(--secondary);
    padding: 5rem 0;
  }

  .quiz-container {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .quiz-intro {
    margin-bottom: 2rem;
  }

  .quiz-question {
    margin-bottom: 2rem;
  }

  .quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .quiz-options label {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 3px;
  }

  .quiz-options label:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .quiz-options input {
    margin-right: 10px;
  }

  .quiz-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
  }

  .quiz-submit:hover {
    background-color: #a82525;
  }

  .quiz-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(40, 40, 40, 0.8);
    border-radius: 5px;
    display: none;
  }

  /* Links */
  a {
    color: var(--light-accent);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--primary);
    text-decoration: underline;
  }

  /* Responsive Styles */
  @media (min-width: 768px) {
    .lore-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .character-card {
      flex-direction: row;
    }

    .character-card img {
      width: 40%;
      height: auto;
    }

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

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

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

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

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

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