
  :root {
    --primary: #d10000;
    --primary-dark: #950000;
    --secondary: #1e1e1e;
    --accent: #ff6b00;
    --text: #e0e0e0;
    --text-dark: #a0a0a0;
    --background: #0a0a0a;
    --background-light: #1a1a1a;
    --background-lighter: #2a2a2a;
    --border: #3a3a3a;
  }

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

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
  }

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
  }

  h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(209, 0, 0, 0.7);
  }

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

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

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

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

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

  a:hover {
    color: #fff;
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }

  ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
  }

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

  /* Hero Section */
  .hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
  }

  .hero .bg-image {
    opacity: 0.4;
  }

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

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

  /* Intro Section */
  .intro {
    padding: 5rem 0;
    background-color: var(--background-light);
  }

  .intro-content {
    flex: 1;
    padding-right: 2rem;
  }

  .intro .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .intro-image {
    flex: 1;
    min-width: 300px;
  }

  .intro-image img {
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(209, 0, 0, 0.5);
  }

  /* Classes Section */
  .classes {
    position: relative;
    padding: 5rem 0;
    background-color: var(--background);
  }

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

  .class-card {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
  }

  .class-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
  }

  .class-card h3 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .top-build {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

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

  .btn-details {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .btn-details:hover {
    background-color: var(--primary-dark);
    color: white;
  }

  /* Build Detail Section */
  .build-detail {
    padding: 5rem 0;
    background-color: var(--background-light);
  }

  .build-detail.alternate {
    background-color: var(--background);
  }

  .build-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .difficulty {
    display: flex;
    align-items: center;
    background-color: var(--background-lighter);
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }

  .difficulty-label {
    margin-right: 0.5rem;
    font-weight: bold;
  }

  .stars {
    color: var(--accent);
    margin-right: 0.5rem;
  }

  .difficulty-text {
    color: var(--text-dark);
  }

  .build-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .build-content.reverse {
    flex-direction: row-reverse;
  }

  .build-image {
    flex: 1;
    min-width: 300px;
  }

  .build-description {
    flex: 2;
    min-width: 300px;
  }

  .skill-list, .equipment-list {
    background-color: var(--background-lighter);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .skill-list li, .equipment-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .skill-list li:before, .equipment-list li:before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  .skill-name, .item-name {
    color: var(--accent);
    font-weight: bold;
  }

  .build-strategy {
    background-color: rgba(30, 30, 30, 0.6);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
  }

  /* Tier List Section */
  .tier-list {
    padding: 5rem 0;
    background-color: var(--background-light);
  }

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

  .tier-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .tier {
    background-color: var(--background-lighter);
    border-radius: 8px;
    overflow: hidden;
  }

  .tier-header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tier-s .tier-header {
    background-color: #ffaa00;
    color: #000;
  }

  .tier-s .tier-header h3 {
    color: #000;
  }

  .tier-a .tier-header {
    background-color: #ff5555;
    color: #fff;
  }

  .tier-b .tier-header {
    background-color: #5555ff;
    color: #fff;
  }

  .tier-c .tier-header {
    background-color: #55aa55;
    color: #fff;
  }

  .tier-builds {
    padding: 1.5rem 2rem;
  }

  .tier-builds li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
  }

  .class-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    border-radius: 50%;
  }

  .class-icon.necro {
    background-color: #5a5a5a;
  }

  .class-icon.barb {
    background-color: #8b0000;
  }

  .class-icon.sorc {
    background-color: #0066cc;
  }

  .class-icon.druid {
    background-color: #006600;
  }

  .class-icon.rogue {
    background-color: #660066;
  }

  /* CTA Section */
  .cta {
    position: relative;
    padding: 5rem 0;
    text-align: center;
  }

  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .cta h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

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

  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(209, 0, 0, 0.4);
  }

  .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }

  .btn-secondary:hover {
    background-color: white;
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
  }

  /* Responsive */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.7rem;
    }
    
    .hero {
      min-height: 400px;
      padding: 3rem 0;
    }
    
    .intro .container, .build-content {
      flex-direction: column;
    }
    
    .intro-content {
      padding-right: 0;
      margin-bottom: 2rem;
    }
    
    .build-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .difficulty {
      margin-top: 1rem;
    }
    
    .tier-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .tier-description {
      margin-top: 0.5rem;
    }
  }

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