/* BASIC RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #ff6bcb, #845ec2);
  color:#fff;
  min-height:100vh;
}

/* HEADER */
.header {
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  padding:15px 0;
  position:sticky;
  top:0;
}

.container {
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo span {
  color:#ffe300;
}

/* NAV */
nav a {
  margin-left:20px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

nav a:hover {
  color:#ffe300;
}

/* HERO */
.hero {
  text-align:center;
  margin-top:40px;
  padding:20px;
}

.hero h1 {
  font-size:35px;
}

.updated {
  margin-top:10px;
  color:#ffe79a;
}

.hero-buttons {
  margin-top:20px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
}

.btn {
  background:#00000035;
  backdrop-filter: blur(10px);
  padding:12px 20px;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:600;
  transition:0.3s;
  border:1px solid #ffffff40;
}

.btn:hover {
  background:#ffffff30;
}

/* GRID */
.grid {
  width:90%;
  margin:40px auto;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:25px;
}

/* CARD */
.card {
  background:#ffffff25;
  backdrop-filter: blur(15px);
  padding:20px;
  border-radius:15px;
  border:1px solid #ffffff30;
}

/* POSTS */
.post {
  padding:12px 0;
  border-bottom:1px solid #ffffff30;
}

.post:last-child {
  border:none;
}

.sidebar a {
  display:block;
  padding:10px 0;
  color:white;
  text-decoration:none;
}

.sidebar a:hover {
  color:#ffe300;
}

/* FOOTER */
footer {
  text-align:center;
  margin:30px 0;
  opacity:0.8;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .grid {
    grid-template-columns:1fr;
  }
}
