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;
  top:20px;
  left:50%;
  transform:translateX(-50%);

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  padding:14px 40px;

  font-size:18px;
  font-weight:700;
  letter-spacing:1px;
  color:white;

  background:rgba(255,0,0,0.9);

  border-radius:40px;

  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,0.25);

  box-shadow:
  0 12px 35px rgba(0,0,0,0.45),
  inset 0 1px 0 rgba(255,255,255,0.35);

  width:auto;
  max-width:600px;

  text-align:center;
  z-index:9999;
}

.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;
}