/* RPG Tower Landing Page Styles */

.hero-rpgtower {
  background: linear-gradient(135deg, rgba(0, 196, 255, 0.08) 0%, rgba(138, 43, 226, 0.08) 100%),
              radial-gradient(circle at top right, rgba(0, 196, 255, 0.1), transparent 60%),
              #0a0e14;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-rpgtower::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.05), transparent 50%);
  pointer-events: none;
}

.hero-rpgtower h1 {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 196, 255, 0.3);
}

.hero-rpgtower .btn-primary {
  background: linear-gradient(135deg, #00c4ff 0%, #8a2be2 100%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-rpgtower .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 196, 255, 0.4);
  color: #ffffff;
}

.hero-rpgtower .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.2s;
}

.hero-rpgtower .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Feature Cards */
.card {
  background-color: #141920 !important;
  border: 1px solid #2d3748 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card .card-body {
  color: #ffffff;
}

.card h3,
.card h5 {
  color: #ffffff !important;
}

.card p {
  color: #e2e8f0 !important;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 196, 255, 0.2) !important;
}

.card .badge {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
}

/* Screenshot Placeholders */
.ratio {
  border-radius: var(--radius-xl, 1rem);
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-rpgtower {
    padding: 5rem 0 4rem;
  }
  
  .hero-rpgtower h1 {
    font-size: 3rem;
  }
  
  .hero-rpgtower .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

