
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #55aa4e;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
    color: #ccc;
}

.toptop {
    scroll-behavior: smooth;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    color: #55aa4e;
    padding: 8px 14px;
    border-radius: 48px;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    display: none;
    z-index: 999;
    transition: background-color 0.3s ease;
}

.toptop:hover {
    background-color: rgba(30, 30, 30, 0.7);
    color: #b4e853;
}

.text { 
    color: #FF5151;
    text-decoration: none;
    display: inline;
    background-image: linear-gradient(to bottom, transparent 20%, currentColor 17%);
    background-position: 0 100%;
    transition: background-size 0.5s ease-in-out 0.2s;
    background-repeat: no-repeat;
    background-size: 0% 4px;
}

.text:hover,
.text:focus {
    color: #FF5151;
    text-decoration: none;
    background-size: 100% 4px;
    transition-delay: 0s;
}

  .shell-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      padding: 1rem;
  }

  .shell-card {
      background-color: #1e1e1e;
      border: 0.5px solid #55aa4e;
      border-radius: 8px;
      box-shadow: none;
      overflow: hidden;
      display: flex;
      flex-direction: column;
  }

  .shell-card:hover,
  .shell-card:active {
      background-color: rgba(30, 30, 30, 0.67);
      border: 1px solid #b4e853;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(86, 170, 78, 0.57);
  }

  .shell-card img {
      width: 100%;
      height: auto;
      object-fit: cover;
      /* Atau contain tergantung kebutuhan */
      cursor: -webkit-zoom-in;
      cursor: zoom-in;
  }

  .name {
      text-align: center;
  }

  .shell-card h2 {
      margin: 10px;
      color: #55aa4e;
  }

  .shell-card .info {
      padding: 0 100px 10px 10px;
      font-size: 14px;
      color: #ccc;
  }

  .shell-card .info .size {
      font-size: 14px;
      font-weight: bold;
      color: #636c72;
  }

  .shell-card a {
      margin: 0 10px 10px 10px;
      color: #55aa4e;
      text-decoration: none;
  }

  .shell-card a:hover,
  .shell-card a:active {
      color: #ccc;
      text-decoration: underline;
  }
  .footer {
      text-align: center;
  }

  @media (max-width: 480px) {
      .shell-container {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 768px) {
      .shell-container {
          grid-template-columns: 1fr;
      }
  }