/* Copy your existing content.css file here - the one from the documents */
/* Base styles for markdown content */
.prose {
  max-width: 65rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #333;
  line-height: 1.7;
}

/* Headings */
.prose h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  color: #1a1a1a;
}

.prose h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
  color: #1a1a1a;
}

.prose h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: #1a1a1a;
}

.prose h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  color: #1a1a1a;
}

/* Paragraphs */
.prose p {
  margin-bottom: 1rem;
}

/* Lists */
.prose ul,
.prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

/* Links */
.prose a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.prose a:hover {
  color: #1e40af;
}

/* Blockquotes */
.prose blockquote {
  border-left: 4px solid #d1d5db;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 1rem 0;
  font-style: italic;
  background-color: #f9f9f9;
}

/* Code blocks */
.prose pre {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  overflow-x: auto;
}

.prose code {
  background-color: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: monospace;
}

/* Tables */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.prose th,
.prose td {
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
}

.prose th {
  background-color: #f3f4f6;
  font-weight: 700;
}

/* Images */
.prose img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.5rem;
}

/* Horizontal rule */
.prose hr {
  margin: 2rem 0;
  border-top: 1px solid #d1d5db;
}

/* Custom betting styles */
.betting-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.betting-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.odds-button {
  transition: all 0.2s ease;
}

.odds-button:hover {
  transform: scale(1.05);
}

/* Age verification modal animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  animation: fadeInScale 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prose {
    padding: 1rem 0.75rem;
  }
  
  .prose h1 {
    font-size: 2rem;
  }
  
  .prose h2 {
    font-size: 1.75rem;
  }
  
  .prose h3 {
    font-size: 1.5rem;
  }

  .betting-card {
    margin-bottom: 1rem;
  }
}

/* Navigation custom styles */
.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: #3b82f6;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:hover::after {
  width: 100%;
}

/* Button styles */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* FAQ accordion styles */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

/* Tag cloud styles */
.tag-cloud .tag {
  transition: all 0.2s ease;
}

.tag-cloud .tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Loading animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

/* Contact form styles */
.form-input {
  transition: all 0.2s ease;
}

.form-input:focus {
  ring: 2px;
  ring-color: #3b82f6;
  border-color: #3b82f6;
}

/* Footer styles */
.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #3b82f6;
}

/* Partner logo hover effects */
.partner-logo {
  transition: all 0.2s ease;
  filter: grayscale(100%);
}

.partner-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Payment method styles */
.payment-method {
  transition: all 0.2s ease;
  opacity: 0.7;
}

.payment-method:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Hero section styles */
.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Category card styles */
.category-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

/* Utility classes */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.backdrop-blur-custom {
  backdrop-filter: blur(10px);
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}