
  :root {
    --primary: #8b0000;
    --secondary: #2a2a2a;
    --accent: #d4af37;
    --text-light: #f5f5f5;
    --text-dark: #1a1a1a;
    --background-dark: #121212;
    --background-light: #f0f0f0;
    --shadow: rgba(0, 0, 0, 0.3);
  }

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

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

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

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

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

  h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }

  h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
  }

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

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

  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

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

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

  /* Hero Section */
  .hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 0;
  }

  .subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 2rem;
  }

  /* Intro Section */
  .intro-section {
    background-color: var(--secondary);
    color: var(--text-light);
  }

  .intro-content {
    max-width: 60%;
  }

  .intro-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .intro-image {
    flex: 1;
    border: 5px solid var(--accent);
    transform: rotate(3deg);
    box-shadow: 0 15px 30px var(--shadow);
  }

  /* Monster Categories */
  .monsters-categories {
    background-color: var(--background-dark);
    color: var(--text-light);
    position: relative;
  }

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

  .category-card {
    background-color: rgba(42, 42, 42, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow);
    transition: transform 0.3s ease;
  }

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

  .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .icon-wrapper i {
    font-size: 2rem;
    color: var(--text-light);
  }

  /* Featured Monster */
  .featured-monster {
    background-color: var(--secondary);
    color: var(--text-light);
  }

  .monster-details {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
  }

  .monster-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px var(--shadow);
  }

  .monster-description {
    flex: 1.5;
  }

  .monster-stats {
    margin: 2rem 0;
  }

  .stat {
    margin-bottom: 1rem;
  }

  .stat-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--accent);
  }

  .stat-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
  }

  .stat-fill {
    height: 100%;
    background-color: var(--accent);
  }

  .monster-strategy h4 {
    margin-bottom: 1rem;
    color: var(--accent);
  }

  .monster-strategy ul {
    list-style-type: none;
  }

  .monster-strategy li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
  }

  .monster-strategy li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
  }

  /* Hunting Tips */
  .hunting-tips {
    position: relative;
    color: var(--text-light);
  }

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

  .tip-card {
    background-color: rgba(18, 18, 18, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow);
    border-left: 4px solid var(--accent);
  }

  .tip-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1rem;
  }

  /* Community Section */
  .community-section {
    background-color: var(--secondary);
    color: var(--text-light);
  }

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

  .testimonial {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
  }

  .quote-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1rem;
  }

  .quote-text {
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .quote-author {
    text-align: right;
    font-weight: 700;
    color: var(--accent);
  }

  /* CTA Section */
  .cta-section {
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
  }

  .cta-section h2 {
    color: var(--text-light);
  }

  .cta-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
  }

  .newsletter-form {
    max-width: 600px;
    margin: 0 auto;
  }

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

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-align: left;
  }

  input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .cta-button {
    background-color: var(--accent);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .cta-button:hover {
    background-color: #f0c14b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    h1 {
      font-size: 3rem;
    }

    h2 {
      font-size: 2.2rem;
    }

    .intro-section .container {
      flex-direction: column;
    }

    .intro-content {
      max-width: 100%;
      margin-bottom: 2rem;
    }

    .monster-details {
      flex-direction: column;
    }

    .monster-image {
      margin-bottom: 2rem;
    }
  }

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

    h2 {
      font-size: 2rem;
    }

    h3 {
      font-size: 1.5rem;
    }

    .hero-section {
      height: 60vh;
    }

    .categories-grid,
    .tips-container,
    .testimonials {
      grid-template-columns: 1fr;
    }

    section {
      padding: 3rem 0;
    }
  }
