
  :root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --light: #ecf0f1;
    --dark: #1a2530;
    --text: #333;
    --text-light: #ecf0f1;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
  }

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

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

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

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

  h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
  }

  h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 0.8rem auto;
  }

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

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

  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

  ul, ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
  }

  li {
    margin-bottom: 0.5rem;
  }

  a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
  }

  a:hover {
    color: var(--accent);
  }

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

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

  .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.5));
    z-index: 1;
  }

  .content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
  }

  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

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

  .intro-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .intro-content {
    flex: 1;
  }

  .intro-image {
    flex: 1;
    text-align: center;
  }

  @media (min-width: 768px) {
    .intro-section .container {
      flex-direction: row;
      align-items: center;
    }
  }

  /* Strategy Types Section */
  .strategy-types {
    padding: 4rem 0;
    background-color: #fff;
  }

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

  .strategy-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

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

  .strategy-tips {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .strategy-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

  /* Battle Tactics Section */
  .battle-tactics {
    position: relative;
    padding: 4rem 0;
    color: var(--light);
  }

  .battle-tactics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
  }

  .battle-tactics .container {
    position: relative;
    z-index: 2;
  }

  .battle-tactics h2 {
    color: var(--light);
  }

  .tactics-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .tactics-text {
    flex: 1;
  }

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

  .tactic-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
  }

  .tactic-item h3 {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .tactics-image {
    flex: 1;
    text-align: center;
  }

  .image-caption {
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }

  @media (min-width: 768px) {
    .tactics-content {
      flex-direction: row;
    }

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

  /* Faction Strategies Section */
  .faction-strategies {
    padding: 4rem 0;
    background-color: var(--light);
  }

  .tabs-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .tab-btn {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .tab-btn:hover {
    background: var(--secondary);
  }

  .tab-btn.active {
    background: var(--secondary);
  }

  .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
  }

  .tab-content.active {
    display: block;
  }

  .faction-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .faction-image {
    flex: 1;
    text-align: center;
  }

  .faction-text {
    flex: 1;
  }

  @media (min-width: 768px) {
    .faction-content {
      flex-direction: row;
      align-items: center;
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Pro Tips Section */
  .pro-tips {
    padding: 4rem 0;
    background-color: #fff;
  }

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

  .tip-card {
    background: var(--primary);
    color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .tip-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .tip-header i {
    font-size: 2rem;
    color: var(--accent);
  }

  .tip-header h3 {
    color: var(--light);
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .tips-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

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

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

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
  }

  .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
  }

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

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

  .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--light);
    color: var(--light);
  }

  .btn-secondary:hover {
    background-color: var(--light);
    color: var(--primary);
  }

  @media (min-width: 768px) {
    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }

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