.top-bg-image {
  background-image: url('../images/bgtop-body.png'); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 250px; 
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.ip-address {
  position: relative;
  z-index: 9;
  margin-top: 100px;
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 16px;
  padding: 10px 0;
  border-radius: 8px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.ip-address a {
  color: #fff;
  text-decoration: none;
  
}

/* Main container di bawah header */
.main-container {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 0 20px; /* biar nggak mentok di pinggir layar kecil */
  margin-top: 20px;
}

/* Card tetap di atas background */
.content-card {
  background-color: white;
  width: 100%;
  max-width: 1080px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
  transition: all 0.3s ease-in-out;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .content-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: 15px;
    border-radius: 8px;
  }
}


.footer {
  background-color: #00075B;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 5;
  margin-top: 20px;
  box-shadow: 5px 10px 18px #888888;
}

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

#wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

iframe {
  width: 100%;
  border: none;
}

@media (max-width: 768px) {
  .peak h1 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #00075B;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #00075B, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* PAGINATION */
#pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.pagination-link {
  text-decoration: none;
  color: #00075B;
  padding: 6px 12px;
  border-radius: 4px;
}

.pagination-link:hover:not(.disabled):not(.active) {
  background-color: #ffffff;
}

.pagination-link.active {
  background-color: #00075B;
  color: white;
  font-weight: bold;
}

.pagination-link.disabled {
  pointer-events: none;
  color: #6c757d;
}

.pagination-dots {
  color: #6c757d;
  padding: 6px 10px;
  font-weight: bold;
}
/*--------------------------------------------------------------