/* D&D Page Styles */
.dnd-hero {
  text-align: center;
  margin-bottom: 50px;
  padding: 50px 20px;
}

.dnd-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #dc2626 0%, #8b5cf6 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.dnd-hero p {
  font-size: 1.3rem;
  opacity: 1;
  font-style: italic;
  color: #ffffff;
}

.dnd-content {
  padding: 0 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.adventure-panel {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(76, 29, 149, 0.3) 100%);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.adventure-panel h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.adventure-card {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.adventure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
  border-color: rgba(139, 92, 246, 0.6);
}

.adventure-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.adventure-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #8b5cf6;
}

.adventure-card p {
  font-size: 1rem;
  opacity: 1;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.adventure-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  margin-top: auto;
  align-self: center;
}

.adventure-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.adventure-link svg {
  transition: transform 0.3s ease;
}

.adventure-link:hover svg {
  transform: translateY(2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .dnd-hero h1 {
    font-size: 2.5rem;
  }

  .dnd-hero p {
    font-size: 1.1rem;
  }

  .adventure-panel {
    padding: 25px;
  }

  .adventure-panel h2 {
    font-size: 2rem;
  }

  .adventure-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .adventure-card {
    padding: 25px;
  }

  .adventure-icon {
    font-size: 3rem;
  }

  .adventure-card h3 {
    font-size: 1.5rem;
  }
}
