* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Verdana', sans-serif;
  }
  
  body {
    background: linear-gradient(to bottom, #4caf50, #37853a, #f0f0f0);
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }
  
  .logo {
    display: flex;
    align-items: center;
    max-width: 60%;
  }
  
  .logo img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #4caf50;
  }
  
  main {
    margin-top: 100px;
    text-align: center;
    flex: 1;
  }
  
  .banner-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
  }
  
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 3s forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }
  
  .btn {
    background: #4caf50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
  }
  
  .btn:hover {
    background: #45a049;
    transform: translateY(-3px);
  }
  
  footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    width: 100%;
    text-align: center;
    margin-top: auto;
  }
  
  .block-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 20px;
  }
  
  .block-card {
    background: #2a2a2a7c;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
    border: 2px solid #4caf50;
  }
  
  .block-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .block-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .trailer-section {
    text-align: center;
    margin: 50px 0;
    color: white;
  }
  
  .trailer-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 20px;
  }
  
  .trailer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
  }
  
  .trailer-container iframe {
    width: 80%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: #1e1f22;
  }
  
  
  .trailer-section {
    text-align: center;
    margin: 50px 0;
  }
  
  .trailer-section h2 {
    font-size: 2rem;
    color: #cacaca;
    margin-bottom: 20px;
  }
  
  
  
  
  .banner-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  
  @media (max-width: 768px) {
    .banner-layer {
      height: auto;
      min-height: 200px;
    }
  }
  
  
  h2 {
    font-size: 36px;
    color: #2a7d2e; 
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0;
    letter-spacing: 1.5px;
  }
  
  
  @media (max-width: 768px) {
    h2 {
      font-size: 28px;
    }
  }
  
  .up{
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  
  form {
    max-width: 600px; 
    width: 90%;
    margin: 50px auto;
    padding: 25px;
    background: rgba(0, 50, 0, 0.8); 
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: 0.3s;
  }
  
  form:hover {
    transform: scale(1.02);
  }
  
  h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #b5ffb5;
  }
  
  label {
    font-weight: bold;
    font-size: 18px;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: #265326;
    color: white;
    outline: none;
  }
  
  input::placeholder, textarea::placeholder {
    color: #a3d8a3;
  }
  
  button {
    background: #4caf50;
    color: white;
    font-size: 20px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
  }
  
  button:hover {
    background: #367a37;
    transform: scale(1.05);
  }
  
  
  @media (max-width: 768px) {
    form {
      max-width: 90%;
    }
  }
  
  
  .scroll-in {
      opacity: 0;
      transform: translateY(50px); 
      transition: transform 0.8s ease, opacity 0.8s ease;
  }
  
  
  .scroll-in.visible {
      opacity: 1;
      transform: translateY(0); 
  }
  
  #discord-section {
    background: rgba(30, 60, 30, 0.9); 
    padding: 40px 20px;
    text-align: center;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 100, 0, 0.4);
    max-width: 800px;
  }
  
  #discord-section h2 {
    font-size: 32px;
    color: #b5ffb5;
    margin-bottom: 20px;
  }
  
  iframe {
    border: 2px solid #4caf50;
    border-radius: 8px;
    margin-bottom: 25px;
  }
  
  .discord-button {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #2e7d32); 
    color: white;
    padding: 14px 28px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .discord-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 150, 0, 0.7);
  }
  
 
  @media (max-width: 768px) {
    #discord-section {
      padding: 20px 10px;
    }
    #discord-section h2 {
      font-size: 24px;
    }
    .discord-button {
      font-size: 18px;
      padding: 12px 24px;
    }
  }
  
  
  .nav {
      display: flex;
      align-items: center;
  }
  
  .nav-links {
      display: flex;
      list-style: none;
      gap: 20px;
      margin: 0;
      padding: 0;
  }
  
  .nav-links li a {
      text-decoration: none;
      color: #fff;
      font-size: 1rem;
      font-weight: bold;
      transition: color 0.3s ease;
  }
  
  
  .nav-links li a:hover {
      color: #4caf50;
  }
  
  
  .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
  }
  
  .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
  }
  
  @media (max-width: 768px) {
      .nav-links {
          display: none;
          position: absolute;
          top: 100%;
          right: 0;
          background: linear-gradient(90deg, #4caf50, #2e7d32);
          width: 100%;
          flex-direction: column;
          align-items: center;
          gap: 15px;
          padding: 10px 0;
      }
  
      .nav-links.active {
          display: flex;
      }
  
      .hamburger {
          display: flex;
      }
  
      .hamburger.open span:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
      }
  
      .hamburger.open span:nth-child(2) {
          opacity: 0;
      }
  
      .hamburger.open span:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
      }
  }
  
 
  .card-container {
    display: flex;
    flex-direction: row;
    background-color: #3e3e3e;
    color: #f0f0f0;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    max-width: 900px;
  }
  .card-image {
    width: 50%;
    object-fit: cover;
  }
  .card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #4caf50;
  }
  .card-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .card-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .card-content button {
    background-color: #43a047;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .card-content button:hover {
    transform: scale(1.05);
  }
  
  
  @media (max-width: 768px) {
    .card-container {
      flex-direction: column;
      margin: 20px;
    }
    .card-image {
      width: 100%;
      height: 200px;
    }
    .card-content {
      padding: 20px;
    }
  }
  
  
  .shop-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    background-color: #2e2e2e;
  }
  .shop-card {
    background-color: #4caf50;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    color: #f0f0f0;
    transition: transform 0.3s ease;
  }
  
  .shop-card:hover {
    transform: scale(1.01);
  }
  
  .shop-card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #388e3c;
  }
  .shop-card h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  .shop-card p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .shop-card button {
    background-color: #43a047;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .shop-card button:hover {
    transform: scale(1.05);
  }
  
 
  @media (max-width: 768px) {
    .shop-container {
      grid-template-columns: 1fr;
      padding: 20px;
    }
  }
  

  .faq-container {
    margin: 40px;
    background-color: #2e2e2e;
    padding: 20px;
    border-radius: 12px;
  }
  .faq-item {
    border-bottom: 1px solid #555;
    padding: 15px 0;
  }
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    color: #4caf50;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color: #f0f0f0;
    padding-top: 10px;
  }
  .faq-icon {
    transition: transform 0.5s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 500px;
  }
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .rank-upgrade-container { background-color: #1e1e1e; color: #f0f0f0; padding: 20px; }
  .rank-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .rank-card { background-color: #333; border-radius: 8px; padding: 10px; text-align: center; }
  .rank-card img { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 10px; }
  .rank-card button { background-color: #4caf50; color: #000; border: none; padding: 8px 16px; border-radius: 4px; }
  table { width: 100%; border-collapse: collapse; margin-top: 20px; }
  th, td { border: 1px solid #444; padding: 8px; text-align: center; }
  th { background-color: #4caf50; color: #000; }
  td { background-color: #2e2e2e; }

  .updates-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
  }
  .update-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: #2e2e2e;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .update-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f0c000;
    text-align: left;
  }
  .update-text p {
    font-size: 16px;
    color: #f0f0f0;
    text-align: left;
  }
  .update-image img {
    width: 100%;
    border-radius: 8px;
  }
  
 
  @media (max-width: 768px) {
    .update-card {
      grid-template-columns: 1fr;
    }
    .update-image {
      order: -1;
    }
  }
  
  .rules-container {
    padding: 40px;
    background-color: #1e1e1e;
    color: #f0f0f0;
  }
  .rules-container h2 {
    color: #f0c000;
  }
  .rules-container h1 {
    color: #388e3c;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .rules-container p {
    margin-bottom: 10px;
  }
  
  .nova-container {
    background-color: #1e1e1e;
    color: #f0f0f0;
    padding: 50px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .nova-container h1 {
    color: #f0c000;
    font-size: 36px;
    margin-bottom: 20px;
  }
  .nova-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .nova-container:hover {
    transform: scale(1.01);
  }

  .impressum-container {
    background-color: #1e1e1e;
    color: #f0f0f0;
    padding: 50px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .impressum-container h1 {
    color: #f0c000;
    font-size: 36px;
    margin-bottom: 20px;
  }
  .impressum-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .impressum-container:hover {
    transform: scale(1.01);
  }

  .cosmetics-container {
    display: flex;
    flex-direction: row;
    background-color: #3e3e3e;
    color: #f0f0f0;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    max-width: 900px;
  }
  .cosmetics-image {
    width: 50%;
    object-fit: cover;
  }
  .cosmetics-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color:  #2e2e2e;
  }
  .cosmetics-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .cosmetics-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  
  @media (max-width: 768px) {
    .cosmetics-container {
      flex-direction: column;
      margin: 20px;
    }
    .cosmetics-image {
      width: 100%;
      height: 200px;
    }
    .cosmetics-content {
      padding: 20px;
    }
  }

#cosmetic-btn {
    background-color: #7fbe44;
    color: #fff;
    padding: 20px 50px;
    font-size: 24px;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

#cosmetic-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

#cosmetic-btn:hover:before {
    left: 100%;
}

#cosmetic-btn:hover {
    background-color: #339933;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}


.cosmeticsd-container {
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 50px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  text-align: center;
  transition: transform 0.3s ease;
}

.cosmeticsd-container:hover {
  transform: scale(1.01);
}