* {
  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;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px 20px; /* batas atas ditambah */
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* jarak antar embed */
}

.embed-card {
  width: 320px;
  background: transparent;
  border-radius: 20px;
  text-align: center;
  padding: 25px 20px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}

.embed-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.embed-title {
  font-size: 18px;
  color: white;
  font-weight: bold;
  margin-bottom: 8px;
}

.embed-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.embed-button {
  background: white;
  color: #4b5580;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #90a3d4;
  display: inline-block;
  transition: all 0.2s ease;
}

.embed-button:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 #7c8fbc;
}

.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;
  }
  }
    
