/* Ad Container Styles */
.ad-container {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ad-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Ad Type Specific Styles */
.horizontal-banner {
  width: 100%;
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
}

.vertical-rectangle {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.square {
  width: 100%;
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
}

.in-feed {
  width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .horizontal-banner,
  .vertical-rectangle,
  .square,
  .in-feed {
    max-width: 100%;
  }
}

/* Ad Label */
.ad-container .text-xs {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* Font definitions */
@font-face {
  font-family: 'Permanent Marker';
  src: url(/fonts/PermanentMarker-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Utility classes for the marker font */
.font-marker {
  font-family: 'Permanent Marker', cursive;
}

/* Apply marker font to headings if needed */
h1.marker, h2.marker, h3.marker, h4.marker, h5.marker, h6.marker {
  font-family: 'Permanent Marker', cursive;
}

/* Logo text with marker font */
.logo-text {
  font-family: 'Permanent Marker', cursive;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

.object_position_center_10
{
  object-position: center 10%;
}

/* Marker font utility classes */
.font-marker {
  font-family: 'Permanent Marker', cursive;
}

/* Apply marker font to headings if needed */
h1.marker, h2.marker, h3.marker, h4.marker, h5.marker, h6.marker {
  font-family: 'Permanent Marker', cursive;
}

/* Logo text with marker font */
.logo-text {
  font-family: 'Permanent Marker', cursive;
}

/* Modern landing page effects */

/* Ambient glow background for sections */
.ambient-glow {
  position: relative;
}
.ambient-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
}

/* Gradient text utility */
.text-gradient {
  background: linear-gradient(135deg, #c084fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card with subtle gradient border */
.card-modern {
  position: relative;
  background: #1f2937;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.3), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.2);
}

/* Section divider with gradient */
.section-accent {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-accent::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.4), transparent);
}

/* Genre tile gradient backgrounds */
.genre-tile {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.genre-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(124, 58, 237, 0.3);
}

/* Event date badge */
.event-date-badge {
  background: linear-gradient(135deg, #7c3aed, #6366f1);
  border-radius: 0.75rem;
  min-width: 4rem;
  text-align: center;
  padding: 0.5rem 0.75rem;
}

/* Subtle mesh background for hero */
.hero-mesh {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
}

/* CTA section glass effect */
.cta-glass {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(99, 102, 241, 0.4));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Smooth reveal animation for scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pagination styles */
.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.pagination li {
  margin: 0;
}

.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #4B5563; /* gray-600 */
  background-color: #1F2937; /* gray-800 */
  color: #D1D5DB; /* gray-300 */
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background-color: #374151; /* gray-700 */
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pagination .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  background-color: #7C3AED; /* purple-600 */
  color: white;
  border-color: #6D28D9; /* purple-700 */
  font-weight: 600;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
  border-radius: 0.375rem;
}

.pagination .disabled {
  color: #6B7280; /* gray-500 */
  cursor: not-allowed;
  opacity: 0.6;
}

.pagination .previous_page,
.pagination .next_page {
  padding: 0.5rem 1rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .pagination {
    gap: 0.125rem;
  }

  .pagination a, .pagination span {
    min-width: 2rem;
    height: 2rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }

  .pagination .gap {
    display: none;
  }
}
