/* Grundstyles */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #1a1a1a, #2d2e30);
      color: #eee;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    html {
      overflow-y: scroll;
    }

    header {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 60px;
      background-color: #121212cc;
      box-shadow: 0 2px 10px rgba(0,0,0,0.7);
      z-index: 10;
      height: 80px;
    }

    .logo-container {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 50px;
    }
    .logo-img {
      height: 60px;
      user-select: none;
      transition: transform 0.3s ease;
    }
    .logo-img:hover {
      transform: scale(1.1);
      filter: drop-shadow(0 0 2px #a8c922);
    }

    .nav-left,
    .nav-right {
      top: 50%;
      display: flex;
      gap: 35px;
      font-weight: 600;
      font-size: 16px;
    }

    .nav-left {
      left: 60px;
    }
    .nav-right {
      right: 60px;
    }

    .nav-left a,
    .nav-right a {
      color: #eee;
      text-decoration: none;
      position: relative;
      padding-bottom: 6px;
      transition: color 0.3s ease;
      letter-spacing: 0.03em;
    }
    .nav-left a::after,
    .nav-right a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2.5px;
      background-color: #a8c922;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.25s ease;
    }
    .nav-left a:hover::after,
    .nav-right a:hover::after,
    .nav-left a.active::after,
    .nav-right a.active::after {
      transform: scaleX(1);
      transform-origin: left;
    }
    .nav-left a:hover,
    .nav-right a:hover {
      color: #a8c922;
    }

    main {
      flex-grow: 1;
      max-width: 900px;
      margin: 60px auto 0;
      padding: 0 20px;
      text-align: center;
    }
    main h1 {
      font-size: 3.2rem;
      color: #a8c922;
      margin-bottom: 12px;
      text-shadow: 0 0 8px #a8c922cc;
    }
    main p {
      font-size: 1.25rem;
      line-height: 1.6;
      color: #ccc;
      margin-bottom: 16px;
      text-shadow: 0 0 6px #0009;
    }

    footer {
      background-color: #121212cc;
      color: #888;
      text-align: center;
      padding: 25px 20px;
      margin-top: 80px;
      font-size: 14px;
      user-select: none;
      box-shadow: inset 0 1px 4px #0008;
    }
    .socials {
      margin-top: 12px;
      display: flex;
      justify-content: center;
      gap: 24px;
    }
    .socials a {
      color: #a8c922;
      font-weight: 700;
      text-decoration: none;
      font-size: 18px;
      transition: color 0.3s ease;
    }
    .socials a:hover {
      color: #d0e84f;
    }

    /* Responsive */
    @media (max-width: 700px) {
      header {
        padding: 15px 20px;
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
      }
      .nav-left,
      .nav-right {
        position: static;
        transform: none;
        margin: 8px 0;
        gap: 18px;
        font-size: 14px;
      }
      .logo-container {
        margin: 10px 0;
      }
      main {
        margin-top: 40px;
        padding: 0 15px;
      }
    }

    a.button {
      display: inline-block;
      margin-top: 15px;
      background-color: #a8c922;
      color: #1a1a1a;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    a.button:hover {
      background-color: #d0e84f;
      transform: scale(1.05);
    }