
body { 
    font-family: 'Inter', sans-serif; 
    background-color: #050505; 
    color: #ffffff; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; /* Smoother fonts on mobile */
    -moz-osx-font-smoothing: grayscale;
}
.bebas { 
    font-family: 'Bebas Neue', cursive; 
}
.neon-bg { 
    background: linear-gradient(135deg, #ff007a 0%, #7e00ff 100%); 
}
.live-pulse { 
    width: 10px; 
    height: 10px; 
    background: #00ff00; 
    border-radius: 50%; 
    animation: pulse 1.2s infinite; 
}
@keyframes pulse { 
    0% { transform: scale(0.9); opacity: 1; } 
    50% { transform: scale(1.2); opacity: 0.5); } 
    100% { transform: scale(0.9); opacity: 1; } 
}
::-webkit-scrollbar { 
    width: 4px; 
}
::-webkit-scrollbar-track { 
    background: #000; 
}
::-webkit-scrollbar-thumb { 
    background: #333; 
    border-radius: 10px; 
}

/* --- Mobile UX & Typography Optimizations --- */

/* Prose (Content) Styling - News Site Standard */
.prose-invert h1, .prose-invert h2, .prose-invert h3, .prose-invert h4, .prose-invert h5, .prose-invert h6 {
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-style: italic;
  font-weight: normal; 
  letter-spacing: 0.05em; 
  margin-top: 1.5em; /* Better spacing between sections */
  margin-bottom: 0.5em;
}

.prose-invert p {
  color: #cbd5e1; /* Lighter gray for better contrast on mobile screens (slate-300) */
  font-size: 1.05rem; /* Slightly larger text for mobile readability */
  line-height: 1.75; /* News site standard line-height */
  margin-bottom: 1.25em;
}

.prose-invert ul, .prose-invert ol {
  color: #cbd5e1;
  padding-left: 1.25em; 
  margin-bottom: 1.25em;
}

.prose-invert li {
  margin-bottom: 0.5em; 
}

/* Heading Sizes optimized for Mobile responsiveness */
.prose-invert h1 {
  font-size: 2rem; 
  line-height: 2.25rem;
}
@media (min-width: 768px) {
    .prose-invert h1 {
        font-size: 2.5rem;
        line-height: 2.75rem;
    }
}

.prose-invert h2 {
  font-size: 1.5rem; 
  line-height: 2rem;
  color: #f472b6; /* Pink-400 for subheadings to guide eye */
}

.prose-invert h3 {
  font-size: 1.25rem; 
  line-height: 1.75rem;
  color: #60a5fa; /* Blue-400 for sub-subheadings */
}

/* Button & Interactive Elements - Touch Optimization */
button, a {
    touch-action: manipulation; /* Improves touch response */
}

/* Specific styles for buttons/elements */
.shadow-3xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 40px rgba(255, 0, 122, 0.3);
}

/* Ad-Ready Container Utilities (Semantic) */
/* These classes ensure content doesn't jump around when ads load */
.content-wrapper {
    contain: content;
}

/* Loading spinner */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background-color: rgba(0, 0, 0, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; 
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.loading-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.loading-spinner {
  width: 4rem; 
  height: 4rem; 
  border-width: 4px; 
  border-color: rgba(255, 255, 255, 0.05); 
  border-top-color: #ff007a; 
  border-radius: 9999px; 
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile menu slide-in animation */
.mobile-menu-container {
  position: absolute;
  top: 5rem; 
  left: 0;
  width: 100%;
  background-color: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  z-index: 40;
}

.mobile-menu-container.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
