body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #050008;
  color: white;
}

nav {
  background: #09000f;
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid #7b2cff;
  position:fixed;
  width:100%;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 10px;
  font-weight: bold;
}

nav a:hover {
  color: #b266ff;
}

.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
    url("images/spawn.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
  
.hero-content h1 {
  font-size: 90px;
  color: #b266ff;
  margin: 0;
}

.hero-content p {
  font-size: 24px;
}

.ip {
  color: #d8b4ff;
  font-weight: bold;
}

button {
  background: #8a2be2;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 15px 28px;
  margin: 10px;
  font-size: 18px;
  cursor: pointer;
}

button:hover {
  background: #b266ff;
  transform: scale(1.05);
}

section {
  padding: 80px 40px;
  text-align: center;
}

h1 {
  color: #b266ff;
  font-size: 48px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: #140020;
  border: 1px solid #8a2be2;
  border-radius: 18px;
  padding: 30px;
  width: 260px;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.25);
}

.card h2 {
  color: #c084fc;
}

.large {
  width: 80%;
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.team-title{
  color:#c084fc;
  margin-top:70px;
  margin-bottom:30px;
  font-size:38px;
}

.team-image{
  width:160px;
  margin-bottom:20px;
  transition:0.3s;
}

.team-image:hover{
  transform:scale(1.08);
}

.cards{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;
  align-items:flex-start;
}

.card{
  background:#140020;
  border:1px solid #8a2be2;
  border-radius:18px;
  padding:30px;
  width:260px;
  text-align:center;
  box-shadow:0 0 25px rgba(138,43,226,.25);
}

.feature-card{
  cursor:pointer;
  transition:0.3s;
}

.feature-card:hover{
  transform:translateY(-4px);
}

.feature-detail{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.5s ease;
}

.feature-detail p{
  margin-top:18px;
  color:#cfcfcf;
  line-height:1.6;
}

.feature-card.open .feature-detail{
  max-height:300px;
}

.partner-card{
  cursor:pointer;
  transition:0.3s;
}

.partner-card:hover{
  transform:translateY(-4px);
}

.partner-detail{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.5s ease;
}

.partner-detail p{
  margin-top:18px;
  color:#cfcfcf;
  line-height:1.6;
}

.partner-card.open .partner-detail{
  max-height:250px;
}

.bewerbung-card{
  cursor:pointer;
  transition:0.3s;
}

.bewerbung-card:hover{
  transform:translateY(-4px);
}

.bewerbung-detail{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.6s ease;
  margin-top:15px;
}

.bewerbung-card.open .bewerbung-detail{
  max-height:1500px;
}

.bewerbung-detail iframe{
  border:none;
  border-radius:14px;
  background:white;
}

.bewerbung-info{
  text-align:center;
  color:#d8b4ff;
  margin-bottom:40px;
  font-size:18px;
}

.admin-button{
  position:fixed;
  bottom:20px;
  left:20px;
  z-index:999;
}

.admin-button a{
  background:#140020;
  border:1px solid #8a2be2;
  color:#b266ff;
  padding:8px 16px;
  border-radius:12px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
  box-shadow:0 0 12px rgba(138,43,226,.2);
}

.admin-button a:hover{
  background:#240035;
  box-shadow:0 0 18px rgba(138,43,226,.45);
}

.admin-button{
  position:fixed;
  bottom:20px;
  left:20px;
  z-index:999;
}

.admin-button a{
  background:#140020;
  border:1px solid #8a2be2;
  color:#b266ff;
  padding:8px 16px;
  border-radius:12px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
  box-shadow:0 0 12px rgba(138,43,226,.2);
}

.admin-button a:hover{
  background:#240035;
  box-shadow:0 0 18px rgba(138,43,226,.45);
}

.admin-login-card,
.admin-panel-card{
  background:#140020;
  border:1px solid #8a2be2;
  border-radius:18px;
  padding:30px;
  max-width:600px;
  margin:auto;
  box-shadow:0 0 25px rgba(138,43,226,.25);
  text-align:center;
}

.admin-login-card input,
.admin-panel-card input{
  width:100%;
  padding:14px;
  margin-top:15px;
  border-radius:10px;
  border:1px solid #8a2be2;
  background:#09000f;
  color:white;
  font-size:16px;
  box-sizing:border-box;
}

.admin-panel-card textarea{
  width:100%;
  padding:14px;
  margin-top:15px;
  border-radius:10px;
  border:1px solid #8a2be2;
  background:#09000f;
  color:white;
  font-size:16px;
  box-sizing:border-box;
}

#loginStatus,
#saveStatus{
  color:#c084fc;
  font-weight:bold;
  margin-top:20px;
}

.admin-tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:35px;
}

.tab-button{
  background:#140020;
  border:1px solid #8a2be2;
  color:white;
  border-radius:14px;
  padding:14px 24px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.tab-button:hover{
  background:#240035;
  transform:scale(1.04);
}

.tab-button.active{
  background:#8a2be2;
  box-shadow:0 0 20px rgba(138,43,226,.45);
}

.admin-tab-content{
  display:none;
}

.admin-tab-content.active{
  display:block;
}

.console-card{
  max-width:1000px;
}

.console-placeholder{
  background:#050008;
  border:1px solid #8a2be2;
  border-radius:14px;
  padding:30px;
  min-height:350px;
  color:#d8b4ff;
  text-align:center;
}

.console-stats{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:25px;
}

.stat-box{
  background:#140020;
  border:1px solid #8a2be2;
  border-radius:16px;
  padding:18px;
  min-width:180px;
  text-align:center;
  box-shadow:0 0 18px rgba(138,43,226,.22);
}

.stat-box h3{
  color:#c084fc;
  margin-bottom:10px;
  font-size:18px;
}

.stat-box p{
  color:white;
  font-size:28px;
  font-weight:bold;
}

.application-admin-card{
  max-width:1200px;
}

.bewerbung-sheet{
  margin-top:20px;
}

.bewerbung-sheet iframe{
  border:none;
  border-radius:14px;
  background:white;
}