.cosmic-arcade-section {
  background: radial-gradient(circle at center, #1a103c 0%, #0b0f29 100%);
  padding: 130px 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.arcade-card {
  background: linear-gradient(145deg, #161235, #0f0b29);
  border: 2px solid #3a2a75;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.arcade-card:hover {
  transform: translateY(-8px);
  border-color: #e6ca65;
  box-shadow: 0 15px 35px rgba(230, 202, 101, 0.3);
}
.arcade-img-box {
  height: 150px;
  background: radial-gradient(circle, #2a1b4e 0%, #0b0f29 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  border-bottom: 1px solid #3a2a75;
}
.arcade-content {
  padding: 20px;
  text-align: center;
}
.arcade-title {
  font-family: "Orbitron", sans-serif;
  color: #ffeaa7;
  font-size: 18px;
  margin-bottom: 10px;
}
.arcade-desc {
  font-size: 13px;
  color: #b2bec3;
  margin-bottom: 20px;
  min-height: 40px;
}
.play-btn {
  background: linear-gradient(45deg, #d4af37, #f3e5ab);
  color: #0b0f29;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: 0.2s;
}
.play-btn:hover {
  background: linear-gradient(45deg, #f3e5ab, #d4af37);
  color: #0b0f29;
  text-decoration: none;
  box-shadow: 0 0 15px #d4af37;
}

/* Pagination Styles */
.arcade-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.arcade-pagination button {
  background: #161235;
  border: 2px solid #3a2a75;
  color: #ffeaa7;
  font-family: "Orbitron", sans-serif;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}
.arcade-pagination button:hover,
.arcade-pagination button.active {
  background: #d4af37;
  color: #0b0f29;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}
.arcade-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #161235;
  color: #b2bec3;
}
