
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      image-rendering: pixelated;
      image-rendering: -moz-crisp-edges;
    }

    body {
      background-color: #ffffff;
      color: #cccc00;
      font-family: "Comic Sans MS", "Arial", sans-serif;
      font-size: 20px;
      line-height: 1.4;
      overflow-x: hidden;
      cursor: default;
      min-height: 100vh;
      background-image: url('./medien/water.gif');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }

    .container {
      max-width: 90%;
      margin: 20px auto;
      padding: 20px;
      position: relative;
      border: 1px dashed #336633;
      background-color: rgba(10, 15, 10, 0.2);
      min-height: 100vh;
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #99cc00;
      text-shadow: 2px 2px 0 #336600;
    }

    .content-section {
      height: 300px;
      margin: 30px 0;
      padding: 20px;
      border: 1px dotted #446644;
      border-radius: 8px;
      background-color: rgba(15, 25, 15, 0.1);
      overflow-y: auto;
      overflow-x: hidden;
    }

    .placeholder {
      margin: 15px 0;
      padding: 10px;
      background-color: rgba(20, 30, 20, 0.3);
      border-left: 3px solid #669966;
    }



    .hidden-area {
      margin-top: 200px;
      padding: 40px 20px;
      text-align: center;
      opacity: 0.7;
      border-top: 2px dashed #446644;
    }

    .btn-rk {
      background-color: #336633;
      color: #ccffcc;
      font-size: 10px;
      /*padding: 12px 24px;*/
      border: 2px solid #669966;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: "Comic Sans MS", sans-serif;
      display: block;
   
      margin-top:40px;
      
    /*margin-left: auto;   Nach rechts schieben 
    margin-right: 50px;  Abstand vom Rand 
    margin-bottom: 10px;  Abstand von unten 
    padding: 5px 10px;
    width: auto;*/
    }

    .btn-rk:hover {
      background-color: #448844;
      transform: scale(1.05);
    }

    .footer {
      text-align: center;
      margin-top: 40px;
      padding-top: 15px;
      border-top: 1px solid #336633;
      color: #668866;
      font-size: 12px;
      position: relative;
      bottom: 0;
      width: 100%;
    }

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 rgba(153, 204, 102, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 20px rgba(153, 204, 102, 0.6);
    }
}


/* Container mit Flexbox */
.fun-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 20px;
}

/* Gemeinsame Elementeigenschaften */
.fun-element {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Individuelle Stile für jedes Element */
.fun-element:nth-child(1) {
    background: linear-gradient(135deg, rgba(51, 102, 51, 0.7), rgba(102, 153, 102, 0.7));
    border: 3px solid #66cc66;
    animation: pulse 4s infinite;
}

.fun-element:nth-child(2) {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.7), rgba(153, 102, 204, 0.7));
    border: 3px solid #9966cc;
    animation: pulse 8s infinite;
}

.fun-element:nth-child(3) {
    background: linear-gradient(135deg, rgba(51, 102, 153, 0.7), rgba(102, 153, 204, 0.7));
    border: 3px solid #6699cc;
    animation: pulse 3s infinite;
}

.fun-element:nth-child(4) {
    /*background: linear-gradient(135deg, rgba(153, 102, 51, 0.7), rgba(204, 153, 102, 0.7));*/
    border: 3px solid #cc9966;
    animation: pulse 2s infinite;
}

.feA{
  z-index:9999;
  max-width:90%;
  radius: 100px;
  border-radius: 20px;
  
}

.news{
  z-index:9999;
  max-width:90%;
  border-radius: 20px;
}

/* Hover-Effekt */
.fun-element:hover {
    transform: translateY(-10px) scale(1.1);
    z-index: 10;
}

/* Text in den Elementen */
.fun-element span {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

    /* Mobile Optimierung */
    @media (max-width: 768px) {
      body {
        font-size: 16px;
      }
      
      .container {
        max-width: 95%;
        margin: 10px auto;
        padding: 15px;
      }
      
      h1 {
        font-size: 24px;
        margin-bottom: 20px;
      }
      
      .content-section {
        padding: 15px;
        margin: 20px 0;
      }
      
      /*.btn-rk {
        font-size: 18px;
        padding: 10px 20px;
        width: 100%;
        margin: 5px 0;
      }*/
      
      /* Button an den rechten Rand schieben */
.btn-rk {
    display: block;
    margin-left: auto;  /* Nach rechts schieben */
    margin-right: 20px; /* Abstand vom Rand */
    margin-bottom: 2px; /* Abstand von unten */
    padding: 5px 10px;
    font-size: 7px;
    width: auto; /* Nicht volle Breite */
}
      
      .hidden-area {
        margin-top: 100px;
        padding: 20px 10px;
      }
      
      /*.fun-element {
        width: 80px;
        height: 80px;
      }*/
    
  

    .fun-container {
        gap: 15px;
        padding: 0 10px;
    }
    
    .fun-element {
        width: 80px;
        height: 80px;
    }

}

    @media (max-width: 480px) {
      body {
        font-size: 14px;
      }
      
      .container {
        padding: 10px;
      }
      
      h1 {
        font-size: 20px;
      }
      
     /* .btn-rk {
        font-size: 16px;
        padding: 8px 16px;
      }*/
      
    .fun-showcase {
        gap: 20px;
    }
    
    .fun-showcase {
        gap: 15px;
    }
    
    .fun-element {
        width: 120px;
        height: 120px;
        font-size: 24px;
    }
}

/* Optional: Hintergrund-Overlay */
.fun-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: -1;
}
      /* Button an den rechten Rand schieben */
.btn-rk {
    display: block;
    margin-left: auto;  /* Nach rechts schieben */
    margin-right: 20px; /* Abstand vom Rand */
    margin-bottom: 2px; /* Abstand von unten */
    padding: 5px 10px;
    font-size: 12px;
    width: auto; /* Nicht volle Breite */
}
}
