/* Global */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  padding: 16px 24px 40px;
}

/* HERO */
.hero {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #FFD700, #DAA520); border: 1px solid #B8860B;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: black;
  font-weight: 800;
}

.hero-content p {
  color: black;
  font-weight: 500;
}

/* Sliding buttons wrapper */
.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 80px;
  margin-bottom: 20px;
}

/* Slide buttons */
.slide-btn {
  font-size: 40px;
  background: none;
  border: none;
  color: #FFD700;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
  user-select: none;
}

.slide-btn:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Sliding options */
.options-slider {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 20px;
  scrollbar-width: none;
  width: 100%;
}

.options-slider::-webkit-scrollbar {
  display: none;
}

.options-track {
  display: inline-flex;
  gap: 10px;
}

.option {
  background: #020617;
  height: 100px;
  width: 200px;
  color: #e5e7eb;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3); background-color: #111;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.option:hover { border-color: #FFD700; color: #FFD700; box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2); transform: translateY(-2px); }

/* CARDS */
.cards-row {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 0 40px;
}

/* Cube card */
.card {
  background: #181818;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s ease;
  border: 2px solid #FFD700;
  color: #FFD700;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(255, 215, 0, 0.5);
}

