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:0;
  left:0;
  right:0;
  padding:15px;
  text-align:center;
  backdrop-filter:blur(30px);
  background:rgba(255,0,0,0.25);
  display:flex;
  justify-content:center;
  align-items:center;
  gap: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;
}