:root{
  --background-color:#000000;
  --primary-color:#ffffff;
  --secondary-color:#131313;
  --button-color:#ffee02;
  --font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:var(--font-family);
  color:var(--primary-color);
  background:#1a1a1a url('https://res.cloudinary.com/dnpmuuz3s/image/upload/v1759314588/1af48f96-b9c0-4faa-9dd5-cb6b5dd599ea_fblmlh.jpg') center/cover fixed no-repeat;
}

.top-bar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(6px);
}
.top-bar .title{font-weight:700;font-size:16px}

.menu-toggle{position:absolute;opacity:0;width:1px;height:1px;pointer-events:none}
.menu-icon-box{display:inline-flex;align-items:center;justify-content:center;padding:8px 10px;background:#474747;border-radius:10px;cursor:pointer}
.menu-icon{display:flex;flex-direction:column;gap:6px}
.menu-icon .bar{height:5px;width:35px;background:#e45353;border-radius:25px}
#menu-toggle:checked~.sidebar{transform:translateX(0)}

.sidebar{
  height:100%;
  width:250px;
  position:fixed;
  top:0;
  left:0;
  z-index:1100;
  background-color:#111;
  padding-top:60px;
  transform:translateX(-250px);
  transition:transform .3s ease;
  border-right:2px solid #e45353;
}
.sidebar a,.sidebar .close-btn{display:block;text-decoration:none;transition:.3s}
.sidebar a{padding:14px 8px 14px 32px;font-size:18px;color:#818181}
.sidebar a:hover{color:#f1f1f1;background-color:#222}
.sidebar .close-btn{position:absolute;top:8px;right:16px;font-size:36px;color:#e45353;cursor:pointer;line-height:1}
.sidebar hr{border:0;border-top:1px solid #333;margin:10px 0}

.main-container{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:48px;
  max-width:1200px;
  margin:0 auto;
}

.row{
  display:grid;
  grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);
  align-items:center;
  gap:12px;
  padding:12px;
  background:rgba(0,0,0,0.5);
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.4);
}

.row .content{order:1}
.row .media{order:2}
.row:nth-child(even) .content{order:2}
.row:nth-child(even) .media{order:1}

.content{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:6px;
  min-width:0;
}
.content h2{
  margin:0;
  font-size:1.2rem;
  line-height:1.2;
  color:#ffee02;
}
.content p{
  margin:0;
  opacity:.9;
  font-size:.95rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#e45353;
  color:#fff;
  padding:.5rem .85rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  white-space:nowrap;
  width:max-content;
  transition: transform .2s ease,background .3s ease;
}
.btn:hover{
  background:#ff0000;
  transform:scale(1.1);
}

.media{
  position:relative;
  aspect-ratio:3/3;
  overflow:hidden;
  background:#000;
  border-radius:10px;
  min-width:180px;
}
.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
