.home-container {
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 60px 20px;
  position: relative;
  z-index: 10;
  background: linear-gradient(
    120deg,
    #0a0a1a,
    #1a0b2e,
    #3d1c31,
    #241a0b,
    #0a0a1a
  );
  background-size: 400% 400%;
  animation: nebulaFlow 10s ease infinite;
}
@keyframes nebulaFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.home-header {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease-out;
}
.home-header h1 {
  font-family: "Cinzel", serif;
  font-size: 3.2rem;
  color: #ffd700;
  margin: 0 0 5px 0;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  letter-spacing: 2px;
}
.home-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #e0e0e0;
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}
.home-footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.home-footer p {
  margin: 0;
  padding: 10px 25px;
  background: rgba(20, 5, 25, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.home-footer p:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}
.home-footer strong {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.mode-card {
  background: rgba(15, 5, 25, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mode-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.mode-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
}
.mode-card:hover::before {
  opacity: 1;
}
.mode-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  transition: transform 0.4s;
}
.mode-card.zodiak i {
  color: #8a2be2;
  text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}
.mode-card.shio i {
  color: #ff4500;
  text-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}
.mode-card.weton i {
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}
.mode-card.tarot i {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}
.mode-card:hover i {
  transform: scale(1.15);
}
.mode-card h2 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  margin: 0 0 8px 0;
  color: #fff;
  letter-spacing: 1px;
}
.mode-card p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}
.mode-card.locked {
  cursor: not-allowed;
  filter: grayscale(0.8);
  opacity: 0.7;
}
.mode-card.locked:hover {
  transform: none;
  border-color: rgba(255, 215, 0, 0.15);
  box-shadow: none;
}
.mode-card.locked:hover i {
  transform: none;
}
.coming-soon-badge,
.beta-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: white;
  letter-spacing: 1px;
  z-index: 2;
}
.coming-soon-badge {
  background: rgba(80, 80, 80, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0e0e0;
}
.beta-badge {
  background: linear-gradient(135deg, #ff4500, #ff8c00);
  border: 1px solid rgba(255, 215, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .home-container {
    padding: 15px 15px 60px 15px;
  }
  .home-header {
    margin-bottom: 20px;
  }
  .home-header h1 {
    font-size: 2.2rem;
  }
  .home-header p {
    font-size: 0.9rem;
  }
  .mode-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mode-card {
    flex-direction: row;
    text-align: left;
    padding: 15px;
    justify-content: flex-start;
    align-items: center;
  }
  .card-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .mode-card i {
    font-size: 2.2rem;
    margin-bottom: 0;
    margin-right: 15px;
    width: 40px;
    text-align: center;
  }
  .mode-card h2 {
    font-size: 1.15rem;
    margin-bottom: 3px;
  }
  .mode-card p {
    font-size: 0.8rem;
  }
  .coming-soon-badge,
  .beta-badge {
    top: 10px;
    right: 10px;
    font-size: 0.6rem;
    padding: 3px 8px;
  }
  .home-footer {
    bottom: 10px;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
  }
  .home-footer p {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 15px;
  }
}
