
  :root {
    --primary: #2a3b4c;
    --secondary: #e67e22;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #1a2530;
    --success: #27ae60;
    --danger: #e74c3c;
    --text: #2c3e50;
    --text-light: #f5f5f5;
    --gray: #95a5a6;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }

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

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

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

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
  }

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

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

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

  h3 {
    font-size: 1.5rem;
  }

  p {
    margin-bottom: 1rem;
  }

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

  ul {
    list-style-position: inside;
    margin-bottom: 1rem;
  }

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

  /* Background image styling */
  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.1;
  }

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

  .map-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 37, 48, 0.7), rgba(26, 37, 48, 0.9));
    z-index: 1;
  }

  .map-hero .bg-image {
    opacity: 0.8;
  }

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

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

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

  /* Map intro section */
  .map-intro {
    background-color: var(--light);
  }

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

  .intro-content {
    flex: 1;
  }

  .intro-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .intro-image:hover img {
    transform: scale(1.05);
  }

  /* Top maps section */
  .top-maps {
    background-color: #fff;
  }

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

  .map-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

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

  .map-info {
    padding: 1.5rem;
  }

  .map-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
  }

  .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .map-tips {
    margin-top: 1rem;
    background-color: rgba(52, 152, 219, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent);
  }

  .map-tips h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .map-tips ul {
    list-style-type: none;
  }

  .map-tips li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .map-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
  }

  /* Map strategies section */
  .map-strategies {
    background-color: var(--primary);
    color: var(--light);
    position: relative;
  }

  .map-strategies h2 {
    color: var(--light);
  }

  .map-strategies h2::after {
    background-color: var(--accent);
  }

  .strategy-tabs {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
  }

  .tab-buttons {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    text-align: center;
  }

  .tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .tab-btn.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid var(--accent);
  }

  .tab-content {
    padding: 2rem;
  }

  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

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

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

  .strategy-text {
    flex: 1;
  }

  .strategy-text h3 {
    color: var(--light);
  }

  .strategy-text ul {
    margin-left: 1rem;
  }

  .strategy-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  /* Map updates section */
  .map-updates {
    background-color: #f5f5f5;
  }

  .updates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .update-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    text-align: center;
  }

  .update-card:hover {
    transform: translateY(-5px);
  }

  .update-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .update-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  /* Community tips section */
  .community-tips {
    background-color: #fff;
  }

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

  .tip {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

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

  .tip-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .tip-author h3 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
  }

  .tip-author p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  blockquote {
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary);
  }

  /* Responsive styles */
  @media (min-width: 768px) {
    .map-intro .container {
      flex-direction: row;
    }

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

    .strategy-content {
      flex-direction: row;
    }

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

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

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

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

    .tips-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
