/* Allgemeine Stildefinitionen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.dynamic-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #ddd;
  line-height: 1.6;
}

main {
  padding: 0 20px;
}

/* Hypixel Container & Kategorien */
.hypixel-Container {  
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Karten */
.hypixel-Card {
  width: 250px;
  outline: 2px solid #fe6e00;
  padding: 15px;
  background: #1a1a1a;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hypixel-Card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 110, 0, 0.3);
}

.hypixel-Card img {
  width: 100px;
  margin: 10px auto;
  border-radius: 4px;
  transition: transform 0.2s ease-in-out;
}

.hypixel-Card img:hover {
  transform: scale(1.05);
}

.hypixel-Card h4 {
  color: #fff;
  margin-bottom: 5px;
}

.hypixel-Card p {
  margin: 4px 0;
  font-size: 0.9rem;
}

/* SkyCrypt Button */
.btn-skycrypt {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 8px;
  transition: background 0.2s ease-in-out;
}

.btn-skycrypt:hover {
  background-color: #218838;
}

.skycrypt-link {
  text-decoration: none;
}

.hypixel-intro {
    text-align: center;
    margin-bottom: 40px;
}

.hypixel-intro h1 {
    color: #fe6e00;
    margin-bottom: 15px;
}

p.absatz {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.category-info {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #bbb;
}

.hypixel-join {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 6px;
}

.hypixel-join h2 {
    color: #fe6e00;
    margin-bottom: 10px;
}

.hypixel-join a {
    color: #28a745;
    font-weight: bold;
}
h3 {
    color: #fe6e00;
    font-size: 1.4rem;
}