:root{
  --bg:#0c0d11;
  --card:#12141b;
  --border:rgba(255,255,255,.08);
  --muted:#9aa0b4;
  --accent:#8fd3ff;
}

*{
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  margin:0;
  background:var(--bg);
  color:#fff;
}

/* ===== CONTAINER ===== */
.container{
  max-width:960px;
  margin:auto;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* ===== CARD ===== */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
}

/* ===== TITLES ===== */
.section-title{
  color:var(--accent);
  font-size:18px;
  font-weight:700;
}

.text-muted{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

/* ===== HERO ===== */
.hero-card{
  text-align:center;
  padding:28px 20px;
}

.logo{
  width:150px;
  margin:auto;
}

.hero-text{
  margin-top:14px;
  font-size:14px;
  color:var(--muted);
}

/* ===== SOCIAL ===== */
.social-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.social-item{
  min-width:140px;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  transition:.25s;
}

.social-item:hover{
  background:rgba(143,211,255,.18);
  color:#fff;
  transform:translateY(-3px);
}

/* ===== FOOTER ===== */
.footer-card{
  max-width:960px;
  margin:24px auto;
  padding:14px;
  text-align:center;
  font-size:13px;
  color:var(--muted);
  background:var(--card);
  border-radius:14px;
  border:1px solid var(--border);
}

/* ===== NAVBAR ===== */
.navbar{
  position:sticky;
  top:0;
  z-index:10000;
  background:rgba(12,13,17,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}

.navbar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  position:relative;
}

.menu-btn{
  position:absolute;
  left:18px;
  font-size:22px;
  cursor:pointer;
  color:#c7d2fe;
}

.site-name{
  font-weight:800;
  letter-spacing:1px;
  font-size:15px;
}

/* ===== DROPDOWN ===== */
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:var(--card);
  border-bottom:1px solid var(--border);
  display:flex;
  flex-direction:column;
  transform:translateY(-10px);
  opacity:0;
  pointer-events:none;
  transition:.25s;
}

.dropdown-menu.active{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.dropdown-menu a{
  padding:14px 18px;
  font-size:14px;
  font-weight:600;
  color:var(--muted);
  text-decoration:none;
}

.dropdown-menu a:hover{
  background:rgba(143,211,255,.12);
  color:#fff;
}

/* ================================================= */
/* =================== NEWS ======================== */
/* ================================================= */

.news-banner{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  background:url("../img/banner-news.jpg") center / contain no-repeat;
  background-color:#0c0d11;
}

.banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.6),
    rgba(0,0,0,.2)
  );
}

.banner-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:0 24px 22px;
}

.banner-content h1{
  font-size:28px;
  font-weight:800;
  margin:0;
}

.banner-content p{
  font-size:14px;
  color:#c7d2ff;
}

/* ===== RESPONSIVE ===== */
@media(min-width:768px){
  .hero-text{
    font-size:15px;
  }

  .section-title{
    font-size:19px;
  }
}

/* ===== COLLABORATORS ===== */
.collab-section{
  margin-top:34px;
}

.collab-card{
  display:flex;
  gap:20px;
  align-items:center;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  animation:fadeUp .6s ease both;
}

.collab-logo{
  width:96px;
  height:96px;
  object-fit:contain;
  border-radius:14px;
  background:#0c0d11;
  padding:10px;
}

.collab-info h3{
  margin:0;
  font-size:16px;
  font-weight:700;
}

.collab-info p{
  margin:8px 0 12px;
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}

.collab-link{
  display:inline-block;
  padding:8px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  color:var(--accent);
  transition:.25s;
}

.collab-link:hover{
  background:rgba(143,211,255,.15);
  color:#fff;
  transform:translateY(-2px);
}

.collab-card{
  margin-top:18px;
}

.section-center{
  text-align:center;
  margin-bottom:20px;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(14px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:600px){
  .collab-card{
    flex-direction:column;
    text-align:center;
  }
}