/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hintergrund und Schriftfarben */
body {
  background-color: #120e14;  /* Dunkleres Grau */
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}

/* HEADER */
.page-header {
  width: 100%;
  height: 2.4rem;
  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  padding: 0 1rem;
  z-index: 999;

  animation: slideIn 0.5s ease-out;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo:hover {
  text-shadow: 0 0 5px rgba(248, 240, 255, 0.8),
               0 0 15px rgba(240, 230, 255, 0.6);
}

.header-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
}

.header-links a {
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 0.5rem;
}

.header-links a:hover {
  text-decoration: underline;
  transition: text-shadow 0.3s;
  text-shadow: 0 0 30px rgba(248, 240, 255, 0.8);
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.center-panel {
 background-color: #120e1466;
 border-radius: 12px;
 padding: 2rem;
 width: 80%;
 max-width: 1400px;
 text-align: center;
 box-shadow: 0 0 15px rgba(248, 240, 255, 0.6),
     0 0 30px rgba(240, 230, 255, 0.3);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 margin: auto;
 margin-top: 5rem;
}

.center-panel h1 {
 font-size: 2.8rem;
 text-align: center;
 color: #F8F0FF;
 margin-bottom: 1rem;
 text-shadow: 0 0 10px rgba(248, 240, 255, 0.8);
 transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
}

.center-panel h1:hover {
 transform: scale(1.05);
 color: #F8F0FF;
 text-shadow: 0 0 15px rgba(248, 240, 255, 0.8);
}

.center-panel .info-text {
 font-size: 1.5rem;
 color: #F8F0FF;
 margin-bottom: 2rem;
 text-align: center;
 width: 100%;
 transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
}

.center-panel .info-text:hover {
 transform: scale(1.05);
 color: #F0E6FF;
 text-shadow: 0 0 15px rgba(240, 230, 255, 0.8);
}

.center-panel .p {
 font-size: 1.2rem;
 color: #CCCCCC;
 margin-bottom: 2rem;
 text-align: center;
 width: 100%;
 transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
}

.center-panel .p:hover {
 transform: scale(1.05);
 color: #F0E6FF;
 text-shadow: 0 0 15px rgba(240, 230, 255, 0.8);
}

/* Twitch-Button Styling */
.twitch-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: #9146ff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 1rem;
}

.twitch-connect:hover {
  background-color: #772ce8;
  transform: scale(1.05);
}

.twitch-logo {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

	.suggestions-button {
	  display: flex;
	  align-items: center;
	  gap: 10px;
	  background-color: #2e2e2e;
	  padding: 10px 20px;
	  border-radius: 8px;
	  text-decoration: none;
	  color: #f5f0ff;
	  margin-top: 20px;
	  transition: all 0.3s ease;
	  box-shadow: 0 0 5px rgba(248, 240, 255, 0.2);
	}

	.suggestions-link {
		display: inline-block;
		margin: 20px auto;
		padding: 10px 20px;
		font-size: 16px;
		background-color: #9146ff;
		color: #ffffff;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		text-align: center;
		transition: background-color 0.3s ease, transform 0.3s ease;
	}

.suggestions-link:hover {
    background-color: #772ce8;
    transform: scale(1.05);
}

 /* Bereich für PHP-Ausgabe */
 .php-output {
   margin-top: 1.5rem;
   padding: 1rem 2rem; /* Added padding left and right */
   border-radius: 8px;
   width: 100%;
   color: #CCCCCC;
   font-size: 1.2rem;
   text-align: center;
   font-family: 'Montserrat', sans-serif;
   box-shadow: none;
 }

 .php-output:hover {
   color: #D8BFD8; /* Light purple color */
   text-shadow: 0 0 10px #D8BFD8;
   transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
 }

   /* FOOTER */
   .page-footer {

     text-align: center;
     padding: 1rem;
     margin-top: auto; /* Footer ans Seitenende schieben */
   }

   .footer-text {
     font-size: 1.4rem;
     color: #FFFFFF; /* Weißer Text */
     text-decoration: none; /* Keine Unterstreichung */
     transition: text-shadow 0.3s;
   }

   .footer-text:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
           0 0 10px rgba(216, 191, 216, 0.6);
     }
