@font-face {
  font-family: 'Minecraftia';
  src: url('fonts/Minecraft.ttf') format('truetype');
}

@font-face {
  font-family: 'Minecraft';
  src: url('fonts/Minecraftia.ttf') format('truetype');
}

    :root {
      --primary: #232323;
      --primary-light: #121212;
      --bg: #121212;
      --bg-card: #020202;
      --text-light: #cbd5e1;
      --accent: #cccccc;
    }body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.logo {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: 2.6em;
  margin: 10px 0;
  color: white;
}

p.description {
  text-align: center;
  max-width: 700px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1em;
}

.buttons {
  display: flex;
  flex-direction: column;
  border-top: 7px solid #2a2a2a;
  border-bottom: 10px solid #1c1c1c;
  border-right: 10px solid #121212;
  margin-bottom: 50px;
  width: 100%;
  max-width: 300px;
  background-color: #1a1a1a;
}

.btn {
  padding: 16px 32px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(96, 165, 250, 0.6);
}

.btn-outline {
  color: white;
}

.btn-outline:hover {
  background: linear-gradient(to bottom, #3a3a3a, #2a2a2a);
  box-shadow: 0 4px 0 #000, inset 0 0 0 2px #666;
  color: var(--bg);
  transform: translateY(-3px) scale(1.05);
}

.file-name {
  max-width: 700px;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

.file-info h2 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.4em;
}

.file-info p {
  margin: 6px 0;
  color: var(--text-light);
  line-height: 1.5;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  width: 100%;
  max-width: 800px;
  margin-bottom: 60px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}

.gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  z-index: 10;
}

.pack-info {
  text-align: left;
  max-width: 700px;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

section {
  text-align: center;
  max-width: 700px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.saweria-button {
      display: inline-flex;
      align-items: center;
      background-color: #ff9100;
      color: white;
      padding: 10px 20px;
      border: 10px solid #F3C623;
      border-top: 7px solid #FFB22C;
      border-bottom: 10px solid #F4812F;
      border-right: 10px solid #F4812F;
      border-radius: 2px;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 90%;
      margin-bottom: 20px;
    }
    .saweria-button:hover {
      background-color: #e67e00;
    }
    .saweria-button img {
      height: 24px;
      margin-right: 10px;
    }

.gmail-button {
      display: inline-flex;
      align-items: center;
      background-color: #F7CFD8;
      color: #202124;
      padding: 10px 20px;
      border: 10px solid #FED2E2;
      border-top: 7px solid #FED2E2;
      border-bottom: 10px solid #E9A5F1;
      border-right: 10px solid #E9A5F1;
      border-radius: 2px;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 90%;
    }
    .gmail-button:hover {
      background-color: #F1F3F4;
    }
    .gmail-button img {
      height: 24px;
      margin-right: 10px;
    }
footer {
  background-color: transparent;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  font-size: 14px;
  margin-bottom: 10px;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.1);
}

hr {
   display: center;
   justify-content: center;
   align-items: center;
   border: 0;
   height: 1px;
   background-color: white; 
   width: 50%;
   margin: 20px 0;
        }

.info-f {
  font-size: 14px;
}

  


    .box h2 {
      color: white;
      margin-top: 0;
    }

    a {
      color: #4da6ff;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    ul {
      padding-left: 20px;
    }
    
    .star-list {
  list-style: none; /* hilangin default bullet */
  padding-left: 0;
}

.star-list li::before {
  content: "★ "; /* karakter bintang */
  color: gold;
  margin-right: 8px;
}

/*Card disini*/
    .card {
      font-family: "Minecraftia";
      background: #1c1c1c;
      color: #fff;
      max-width: 720px;
      display: flex;
      align-items: center;
      padding: 16px;
      border-radius: 8px;
      gap: 16px;
    }

    .cover {
      width: 64px;
      height: 64px;
      object-fit: cover;
      border-radius: 4px;
    }

    .content {
      flex: 1;
    }

    .title {
      text-align: left;
      font-size: 16px;
      margin: 0;
    }

    .meta {
      font-size: 14px;
      color: #ccc;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tag {
      background: #333;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 12px;
    }

    .downloads::before {
      content: "ᯓ ";
      color: gold;
    }

    .icons {
      display: flex;
      gap: 8px;
      margin-top: 8px;
    }

    .icon-btn {
      background: #2b2b2b;
      border: none;
      color: white;
      width: 32px;
      height: 32px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
    }

    .about-project {
      background: #2a2a2a;
      margin-top: 16px;
      padding: 12px;
      border-radius: 6px;
      cursor: pointer;
      text-align: left;
      font-weight: bold;
    }
    
    /* News card disini bangsat */
.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
}

.news-card {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  max-width: 400px;
  height: 220px;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-news {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: transparent;
  color: white;
  font-weight: bold;
  font-size: 12px;
  padding: 3px 6px;
  border: 1px solid white;
  backdrop-filter: blur(30px);
}

.title-news {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 27px;
  font-size: 16px;
  font-weight: bold;
}

/* RESPONSIF: 2 kolom di layar lebar, 1 kolom di HP */
@media (min-width: 400px) {
  .news-grid {
    justify-content: space-between;
  }

  .news-card {
    flex: 0 1 calc(50% - 10px);
  }
}