
  :root {
    --primary: #8b0000;
    --secondary: #3a0000;
    --accent: #ff6b00;
    --text: #e0e0e0;
    --background: #120707;
    --card-bg: #1a0a0a;
    --border: #4a0000;
    --overlay: rgba(0, 0, 0, 0.85);
  }

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

  body {
    font-family: 'Cinzel', 'Times New Roman', serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
  }

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

  h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
  }

  h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

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

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

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

  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 {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

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

  .hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
  }

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

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

  .intro-content {
    display: flex;
    gap: 3rem;
    align-items: center;
  }

  .intro-text {
    flex: 1;
  }

  .intro-content img {
    flex: 1;
    max-width: 450px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border);
    transition: transform 0.3s;
  }

  .intro-content img:hover {
    transform: scale(1.03);
  }

  /* Item Categories */
  .item-categories {
    position: relative;
    background-color: var(--secondary);
    padding: 5rem 0;
  }

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

  .category-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .category-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
  }

  /* Top Items */
  .top-items {
    background-color: var(--background);
    padding: 5rem 0;
  }

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

  .item-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .item {
    display: flex;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-right: 1px solid var(--border);
  }

  .item-details {
    padding: 1.5rem;
    flex: 1;
  }

  .item-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .legendary, .unique, .set {
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.9rem;
  }

  .legendary {
    background-color: #8b5a00;
    color: #fff;
  }

  .unique {
    background-color: #5a3a00;
    color: #ff9900;
  }

  .set {
    background-color: #005a3a;
    color: #00ff9d;
  }

  .item-power {
    font-weight: bold;
    color: var(--accent);
  }

  .item-description {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .item-source {
    font-style: italic;
    font-size: 0.9rem;
    color: #aaa;
  }

  /* Crafting System */
  .crafting-system {
    position: relative;
    padding: 5rem 0;
  }

  .crafting-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .crafting-text {
    flex: 3;
  }

  .crafting-image {
    flex: 2;
  }

  .crafting-image img {
    width: 100%;
    border-radius: 5px;
    border: 2px solid var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }

  .crafting-text ul {
    list-style-type: none;
    margin-left: 1rem;
  }

  .crafting-text li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .crafting-text li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.5rem;
  }

  /* Item Builds */
  .item-builds {
    background-color: var(--card-bg);
    padding: 5rem 0;
  }

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

  .build-card {
    background-color: var(--secondary);
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
  }

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

  .build-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .build-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 3px;
  }

  .build-item i {
    color: var(--accent);
    font-size: 1.2rem;
  }

  /* FAQ Section */
  .item-faq {
    background-color: var(--background);
    padding: 5rem 0;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--card-bg);
    cursor: pointer;
  }

  .faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
  }

  .faq-question i {
    color: var(--accent);
    transition: transform 0.3s;
  }

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
  }

  .faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
  }

  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

  .faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .faq-answer li {
    margin-bottom: 0.5rem;
  }

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

    h2 {
      font-size: 2rem;
    }

    .hero-section h1 {
      font-size: 2.5rem;
    }

    .intro-content {
      flex-direction: column;
    }

    .intro-content img {
      max-width: 100%;
    }

    .item {
      flex-direction: column;
    }

    .item img {
      width: 100%;
      height: auto;
      border-right: none;
      border-bottom: 1px solid var(--border);
    }

    .crafting-content {
      flex-direction: column;
    }

    .build-items {
      grid-template-columns: 1fr;
    }
  }

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