    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to bottom, #dcdcdc, #000000);
      color: #fff;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header, footer {
      background-color: #222;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin-left: 1.5rem;
      font-weight: bold;
    }

    .wiki-container {
      display: flex;
      width: 100%;
      max-width: 1500px;
      padding: 1rem;
      flex-grow: 1;
      align-items: flex-start;
      margin: 0 auto;
    }

    aside.categories {
      width: 500px;
      background-color: #111;
      padding: 1rem;
      border-radius: 10px;
      margin-right: 2rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      align-self: flex-start;
      display: flex;
      flex-direction: column;
    }

    aside.categories h2 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      border-bottom: 2px solid #0077ff;
      padding-bottom: 0.5rem;
    }

    aside.categories ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem 0;
      flex-grow: 0;
    }

    aside.categories li {
      margin-bottom: 1rem;
    }

    aside.categories a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      display: block;
      padding: 0.5rem;
      background-color: #333;
      border-radius: 5px;
      transition: background-color 0.2s ease;
      cursor: pointer;
      user-select: none;
    }

    aside.categories a.active, aside.categories a:hover {
      background-color: #0077ff;
    }

    section.content {
      flex-grow: 1;
      background-color: #111;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      max-height: 80vh;
      overflow-y: auto;
    }

    section.content h2 {
      margin-top: 0;
      margin-bottom: 1rem;
      color: #00aaff;
    }

    section.content p, section.content li {
      line-height: 1.5;
      font-size: 1.1rem;
      color: #ddd;
    }

    .ville-link {
      color: #99ccff;
      text-decoration: underline;
    }
    .ville-link:hover {
      color: #00aaff;
    }
    
    .news-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .news-card {
      background-color: #111;
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
      max-width: 350px;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      transition: transform 0.3s ease;
    }

    .news-card:hover {
      transform: translateY(-5px);
    }

    .news-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .news-content {
      padding: 1rem;
    }

    .news-content .tags {
      margin-bottom: 0.5rem;
    }

    .news-content .tags span {
      background-color: #0077ff;
      color: white;
      font-size: 0.75rem;
      padding: 0.3rem 0.6rem;
      border-radius: 5px;
      margin-right: 0.5rem;
    }

    .news-content h3 {
      margin: 0.5rem 0;
      font-size: 1.2rem;
    }

    .news-content p {
      font-size: 0.9rem;
      color: #ccc;
    }
  .dropdown {
    display: inline-block;
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e1e1e;
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
  }

  .dropdown-content a:hover {
    background-color: #333;
  }