html,body{
  margin:0;
  padding:0;
  font-family:-apple-system,BlinkMacSystemFont,sans-serif;
  background:
    radial-gradient(circle at 20% 30%, #0f5eff, transparent),
    radial-gradient(circle at 80% 70%, #001f4d, transparent),
    #000814;
  color:white;
}

.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:80px;
  padding:0 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(40px);
  background:rgba(255,255,255,0.06);
}

.admin-btn{
  padding:12px 28px;
  border-radius:40px;
  background:linear-gradient(135deg,#2a7bff,#00c6ff);
  cursor:pointer;
}

.folder-grid{
  margin-top:120px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
  padding:60px;
}

.folder{
  height:180px;
  border-radius:25px;
  background:linear-gradient(160deg,#1e5fff,#0040ff);
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:22px;
  cursor:pointer;
}

.glass{
  margin:140px auto;
  width:85%;
  max-width:1200px;
  padding:40px;
  border-radius:40px;
  backdrop-filter:blur(60px);
  background:rgba(255,255,255,0.08);
}

input,select,button{
  width:100%;
  padding:12px;
  margin:10px 0;
  border-radius:15px;
  border:none;
}

button{
  background:linear-gradient(145deg,#3a7bd5,#00d2ff);
  color:white;
  cursor:pointer;
}

.breaking {
  position: fixed;
  bottom: 20px;              /* 20px Abstand vom unteren Rand */
  left: 20px;                /* 20px Abstand links */
  right: 20px;               /* 20px Abstand rechts */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  padding: 16px 30px;
  font-size: 18px;
  font-weight: 700;
  color: white;

  background: rgba(255, 0, 0, 0.8);   /* roter Balken */
  backdrop-filter: blur(20px);        /* Apple Liquid Glass */
  -webkit-backdrop-filter: blur(20px);

  border-radius: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 -5px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  text-align: center;
  z-index: 9999;
  max-width: calc(100% - 40px);       /* sorgt für Abstand zu den Rändern */
  margin: 0 auto;
}

/* Button zum Schließen */
.breaking button {
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.breaking button:hover {
  background: rgba(255, 255, 255, 0.6);
  color: black;
}

/* Optional: responsive Schriftgröße auf kleinen Geräten */
@media (max-width: 768px) {
  .breaking {
    font-size: 16px;
    padding: 12px 20px;
  }
}

.clock-box{
  position:fixed;
  bottom:20px;
  right:20px;
  backdrop-filter:blur(25px);
  background:rgba(255,255,255,0.1);
  padding:12px 20px;
  border-radius:25px;
}

img{
  max-width:100%;
  border-radius:20px;
  margin-top:10px;
}