* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url('/pict/background/storagecosplay.jpg') no-repeat center center/cover;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 360px;
  padding: 40px 20px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
}

.name {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 30px;
  line-height: 1.5;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.btn {
  background: white;
  color: #4b5580;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  padding: 25px 25px 25px 55px; /* space left for icon */
  box-shadow: 5px 5px 0px #95a8d9;
  display: block;
  position: relative;
  text-align: left; /* text starts from left */
}

.btn-icon-left {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-icon-left img.icon {
  width: 43px;
  height: 43px;
}

.btn-text {
  position: absolute;
  top: 15px;   /* ubah nilai ini untuk geser ke bawah/atas */
  left: 70px;  /* ubah nilai ini untuk geser kiri/kanan */
  z-index: 2;
  cursor: pointer; /* opsional, biar terlihat interaktif */
}

.icon {
  width: 20px;
  height: 20px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px #7f90c0;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.pagination-btn {
  padding: 10px 16px;
  background: #111;
  color: #00f7ff;
  border: 1px solid #00f7ff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}

.pagination-btn:hover {
  background-color: #00f7ff;
  color: #111;
  box-shadow: 0 0 10px #00f7ff;
  }

.top-right-glow {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff, 0 0 20px #00f7ff;
  animation: glowAnim 2s infinite alternate;
  z-index: 1000;
}

@keyframes glowAnim {
  0% {
    text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff, 0 0 20px #00f7ff;
  }
  100% {
    text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff, 0 0 30px #00f7ff;
  }
}
