/* =========================
   Global Styles for Shuna
   ========================= */

   body {
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    color: #fff;
    background: #0d0d0d;
    overflow-x: hidden;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(60,60,60,0.15) 0%, transparent 70%);
    animation: mist 10s infinite ease-in-out;
    z-index: 0;
  }
  
  @keyframes mist {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { transform: scale(1.2) translate(10px, 10px); opacity: 0.5; }
    100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  }
  
  .content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
  }
  
  .logo {
    width: 100px;
    border-radius: 50%;
    border: 2px solid gold;
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .banner {
    width: 100%;
    max-width: 800px;
    border: 2px solid gold;
    border-radius: 12px;
    margin: 2rem 0;
  }
  
  h1, h2, h3 {
    color: gold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  
  p, li, small {
    color: #ccc;
  }
  
  @keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 1); }
  }
  
  @keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 10px gold; }
    50% { transform: scale(1.05); box-shadow: 0 0 25px gold; }
    100% { transform: scale(1); box-shadow: 0 0 10px gold; }
  }
  
  .invite-btn {
    display: inline-block;
    margin: 1.5rem auto;
    padding: 0.8rem 1.5rem;
    background-color: gold;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 0 10px gold;
    transition: background 0.3s;
  }
  
  .invite-btn:hover {
    background-color: #ffe066;
  }
  
  nav {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 2;
  }
  
  nav a {
    color: #c4aa78;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: gold;
    text-shadow: 0 0 5px gold;
  }
  
  .changelog-entry,
  .command-entry {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid gold;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 12px;
    text-align: left;
  }
  
  footer {
    margin-top: 3rem;
    padding: 1rem;
    color: #888;
    font-size: 0.9rem;
    text-align: center;
  }
  
  /* Nur für die commands-Seite */
  .commands-page .command-entry {
    background-color: #1a1a1a;
    border: 1px solid gold;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem auto;
    max-width: 700px;
    text-align: left;
  }
  
  .commands-page .command-entry code {
    color: #ffe066;
  }
  
  .contact-page ul {
    list-style: none;
    padding: 0;
    line-height: 1.6;
  }
  
  /* ================================
     Mobile and Tablet Specific Changes
  ================================ */
  
  /* Banner auf mobilen Geräten ausblenden */
  @media screen and (max-width: 768px) {
    .banner-row {
      display: none;
    }
  }
  
  /* Auf Tablets und größeren Geräten bleibt das Banner sichtbar */
  @media screen and (min-width: 768px) {
    .banner-row {
      display: flex;
    }
  }
  
  /* Startseite: Banner auf allen Geräten anzeigen */
  .home .banner-row {
    display: flex;
  }
  