/* NewCashLegends - Main CSS */
/* Sports Events Website - Spain October 2025 */

/* Fonts */


/* CSS Custom Properties */
:root {
  /* Colors */
  --newcashlegends-primary: #dc2626;
  --newcashlegends-primary-dark: #b91c1c;
  --newcashlegends-secondary: #fbbf24;
  --newcashlegends-accent: #f59e0b;
  --newcashlegends-neutral-50: #f9fafb;
  --newcashlegends-neutral-100: #f3f4f6;
  --newcashlegends-neutral-200: #e5e7eb;
  --newcashlegends-neutral-300: #d1d5db;
  --newcashlegends-neutral-400: #9ca3af;
  --newcashlegends-neutral-500: #6b7280;
  --newcashlegends-neutral-600: #4b5563;
  --newcashlegends-neutral-700: #374151;
  --newcashlegends-neutral-800: #1f2937;
  --newcashlegends-neutral-900: #111827;
  --newcashlegends-white: #ffffff;
  --newcashlegends-black: #000000;
  
  /* Typography */
  --newcashlegends-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --newcashlegends-font-secondary: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes */
  --newcashlegends-text-xs: 0.75rem;
  --newcashlegends-text-sm: 0.875rem;
  --newcashlegends-text-base: 1rem;
  --newcashlegends-text-lg: 1.125rem;
  --newcashlegends-text-xl: 1.25rem;
  --newcashlegends-text-2xl: 1.5rem;
  --newcashlegends-text-3xl: 1.875rem;
  --newcashlegends-text-4xl: 2.25rem;
  --newcashlegends-text-5xl: 3rem;
  --newcashlegends-text-6xl: 3.75rem;
  
  /* Spacing */
  --newcashlegends-space-1: 0.25rem;
  --newcashlegends-space-2: 0.5rem;
  --newcashlegends-space-3: 0.75rem;
  --newcashlegends-space-4: 1rem;
  --newcashlegends-space-5: 1.25rem;
  --newcashlegends-space-6: 1.5rem;
  --newcashlegends-space-8: 2rem;
  --newcashlegends-space-10: 2.5rem;
  --newcashlegends-space-12: 3rem;
  --newcashlegends-space-16: 4rem;
  --newcashlegends-space-20: 5rem;
  --newcashlegends-space-24: 6rem;
  --newcashlegends-space-32: 8rem;
  
  /* Border Radius */
  --newcashlegends-radius-sm: 0.375rem;
  --newcashlegends-radius-md: 0.5rem;
  --newcashlegends-radius-lg: 0.75rem;
  --newcashlegends-radius-xl: 1rem;
  --newcashlegends-radius-2xl: 1.5rem;
  --newcashlegends-radius-full: 9999px;
  
  /* Shadows */
  --newcashlegends-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --newcashlegends-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --newcashlegends-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --newcashlegends-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --newcashlegends-transition-fast: 150ms ease-in-out;
  --newcashlegends-transition-normal: 250ms ease-in-out;
  --newcashlegends-transition-slow: 350ms ease-in-out;
  
  /* Breakpoints */
  --newcashlegends-mobile: 576px;
  --newcashlegends-tablet: 992px;
  --newcashlegends-desktop: 1200px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--newcashlegends-font-primary);
  font-size: var(--newcashlegends-text-base);
  line-height: 1.6;
  color: var(--newcashlegends-neutral-800);
  background-color: var(--newcashlegends-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus Styles */
*:focus-visible {
  outline: 2px solid var(--newcashlegends-primary);
  outline-offset: 2px;
}

/* Skip Link */
.newcashlegends__skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
  padding: 8px;
  text-decoration: none;
  border-radius: var(--newcashlegends-radius-md);
  z-index: 1000;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__skip-link:focus {
  top: 6px;
}

/* Container */
.newcashlegends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--newcashlegends-space-4);
}

@media (min-width: 768px) {
  .newcashlegends__container {
    padding: 0 var(--newcashlegends-space-6);
  }
}

@media (min-width: 1024px) {
  .newcashlegends__container {
    padding: 0 var(--newcashlegends-space-8);
  }
}

/* Header */
.newcashlegends__header {
  background: var(--newcashlegends-white);
  box-shadow: var(--newcashlegends-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.newcashlegends__header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--newcashlegends-space-4) 0;
}

.newcashlegends__logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .newcashlegends__logo img {
    height: 50px;
  }
}

/* Navigation */
.newcashlegends__nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--newcashlegends-space-2);
  border-radius: var(--newcashlegends-radius-sm);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__nav-toggle:hover {
  background: var(--newcashlegends-neutral-100);
}

.newcashlegends__nav-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--newcashlegends-neutral-700);
  border-radius: var(--newcashlegends-radius-full);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__nav-toggle[aria-expanded="true"] .newcashlegends__nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.newcashlegends__nav-toggle[aria-expanded="true"] .newcashlegends__nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.newcashlegends__nav-toggle[aria-expanded="true"] .newcashlegends__nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.newcashlegends__nav-list {
  display: none;
  list-style: none;
  gap: var(--newcashlegends-space-6);
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .newcashlegends__nav-toggle {
    display: none;
  }
  
  .newcashlegends__nav-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.newcashlegends__nav-list--mobile {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--newcashlegends-white);
  box-shadow: var(--newcashlegends-shadow-lg);
  padding: var(--newcashlegends-space-4);
  gap: var(--newcashlegends-space-4);
}

.newcashlegends__nav-link {
  color: var(--newcashlegends-neutral-700);
  text-decoration: none;
  font-weight: 500;
  padding: var(--newcashlegends-space-2) var(--newcashlegends-space-3);
  border-radius: var(--newcashlegends-radius-md);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__nav-link:hover,
.newcashlegends__nav-link:focus-visible {
  color: var(--newcashlegends-primary);
  background: var(--newcashlegends-neutral-50);
}

/* Main Content */
.newcashlegends__main {
  min-height: calc(100vh - 80px);
}

/* Hero Section */
.newcashlegends__hero {
  background: linear-gradient(135deg, var(--newcashlegends-neutral-50) 0%, var(--newcashlegends-white) 100%);
  padding: var(--newcashlegends-space-16) 0;
  position: relative;
  overflow: hidden;
}

.newcashlegends__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/img/Index/bg-main.webp') no-repeat center center;
  background-size: cover;
  opacity: 0.30;
  z-index: 1;
}

.newcashlegends__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.newcashlegends__hero-title {
  font-size: var(--newcashlegends-text-4xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-6);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .newcashlegends__hero-title {
    font-size: var(--newcashlegends-text-5xl);
  }
}

@media (min-width: 1024px) {
  .newcashlegends__hero-title {
    font-size: var(--newcashlegends-text-6xl);
  }
}

.newcashlegends__hero-subtitle {
  font-size: var(--newcashlegends-text-lg);
  color: var(--newcashlegends-neutral-700);
  max-width: 800px;
  margin: 0 auto var(--newcashlegends-space-12);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .newcashlegends__hero-subtitle {
    font-size: var(--newcashlegends-text-xl);
  }
}

/* Events Gallery */
.newcashlegends__events-slider {
  position: relative;
  margin-top: var(--newcashlegends-space-12);
  width: 100%;
}

.newcashlegends__events-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--newcashlegends-space-6);
  padding: var(--newcashlegends-space-4) 0;
  width: 100%;
}

/* Responsive grid for different screen sizes */
@media (min-width: 1200px) {
  .newcashlegends__events-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .newcashlegends__events-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .newcashlegends__events-track {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--newcashlegends-space-4);
  }
}

.newcashlegends__events-track--mobile {
  grid-template-columns: 1fr;
  gap: var(--newcashlegends-space-4);
}

.newcashlegends__events-track::-webkit-scrollbar {
  display: none;
}

.newcashlegends__event-card {
  flex: 0 0 320px;
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  overflow: hidden;
  transition: var(--newcashlegends-transition-normal);
  position: relative;
}

.newcashlegends__event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--newcashlegends-shadow-xl);
}

.newcashlegends__event-card--featured {
  width: 100%;
  height: auto;
}

.newcashlegends__event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.newcashlegends__event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--newcashlegends-transition-normal);
}

.newcashlegends__event-card:hover .newcashlegends__event-image img {
  transform: scale(1.05);
}

.newcashlegends__event-content {
  padding: var(--newcashlegends-space-6);
}

.newcashlegends__event-date {
  color: var(--newcashlegends-primary);
  font-weight: 600;
  font-size: var(--newcashlegends-text-sm);
  margin-bottom: var(--newcashlegends-space-2);
}

.newcashlegends__event-title {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-2);
  line-height: 1.3;
}

.newcashlegends__event-location {
  color: var(--newcashlegends-neutral-600);
  font-size: var(--newcashlegends-text-sm);
  margin-bottom: var(--newcashlegends-space-3);
}

.newcashlegends__event-description {
  color: var(--newcashlegends-neutral-600);
  font-size: var(--newcashlegends-text-sm);
  line-height: 1.5;
  margin-bottom: var(--newcashlegends-space-4);
}


/* Disciplines Section */
.newcashlegends__disciplines-section {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-white);
}

.newcashlegends__disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--newcashlegends-space-8);
  margin-top: var(--newcashlegends-space-12);
}

.newcashlegends__discipline-card {
  background: var(--newcashlegends-white);
  border: 2px solid var(--newcashlegends-neutral-100);
  border-radius: var(--newcashlegends-radius-lg);
  padding: var(--newcashlegends-space-8);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newcashlegends__discipline-card:hover {
  border-color: var(--newcashlegends-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.newcashlegends__discipline-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--newcashlegends-space-6);
  background: var(--newcashlegends-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--newcashlegends-primary);
}

.newcashlegends__discipline-title {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-4);
}

.newcashlegends__discipline-description {
  color: var(--newcashlegends-neutral-600);
  line-height: 1.6;
  margin-bottom: var(--newcashlegends-space-6);
}

.newcashlegends__discipline-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--newcashlegends-space-6);
  padding: var(--newcashlegends-space-4);
  background: var(--newcashlegends-neutral-50);
  border-radius: var(--newcashlegends-radius-md);
}

.newcashlegends__discipline-events {
  font-weight: 600;
  color: var(--newcashlegends-primary);
}

.newcashlegends__discipline-level {
  font-size: var(--newcashlegends-text-sm);
  color: var(--newcashlegends-neutral-500);
}

/* Featured Disciplines */
.newcashlegends__featured-disciplines {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-neutral-50);
}

.newcashlegends__discipline-tabs {
  display: flex;
  justify-content: center;
  gap: var(--newcashlegends-space-2);
  margin: var(--newcashlegends-space-12) 0;
  flex-wrap: wrap;
}

.newcashlegends__discipline-tab {
  padding: var(--newcashlegends-space-3) var(--newcashlegends-space-6);
  background: var(--newcashlegends-white);
  border: 2px solid var(--newcashlegends-neutral-200);
  border-radius: var(--newcashlegends-radius-full);
  color: var(--newcashlegends-neutral-700);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newcashlegends__discipline-tab:hover {
  border-color: var(--newcashlegends-primary);
  color: var(--newcashlegends-primary);
}

.newcashlegends__discipline-tab--active {
  background: var(--newcashlegends-primary);
  border-color: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

.newcashlegends__discipline-content {
  position: relative;
}

.newcashlegends__discipline-panel {
  display: none;
}

.newcashlegends__discipline-panel--active {
  display: block;
}

/* Interactive Sections */
.newcashlegends__interactive-sections {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-white);
}

.newcashlegends__tabs {
  display: flex;
  justify-content: center;
  gap: var(--newcashlegends-space-2);
  margin-bottom: var(--newcashlegends-space-12);
  border-bottom: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__tab {
  padding: var(--newcashlegends-space-4) var(--newcashlegends-space-6);
  background: none;
  border: none;
  color: var(--newcashlegends-neutral-600);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--newcashlegends-transition-fast);
  position: relative;
}

.newcashlegends__tab:hover {
  color: var(--newcashlegends-primary);
}

.newcashlegends__tab--active {
  color: var(--newcashlegends-primary);
  border-bottom-color: var(--newcashlegends-primary);
}

.newcashlegends__tab-content {
  margin-top: var(--newcashlegends-space-8);
}

.newcashlegends__tab-panel {
  display: none;
}

.newcashlegends__tab-panel--active {
  display: block;
}

.newcashlegends__section-title {
  font-size: var(--newcashlegends-text-3xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  text-align: center;
  margin-bottom: var(--newcashlegends-space-8);
}

.newcashlegends__section-subtitle {
  font-size: var(--newcashlegends-text-lg);
  color: var(--newcashlegends-neutral-600);
  text-align: center;
  margin-bottom: var(--newcashlegends-space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Events Grid */
.newcashlegends__events-grid {
  display: grid;
  gap: var(--newcashlegends-space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .newcashlegends__events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .newcashlegends__events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.newcashlegends__events-grid--large {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .newcashlegends__events-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
}

.newcashlegends__event-card--compact {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-4);
  padding: var(--newcashlegends-space-4);
  background: var(--newcashlegends-neutral-50);
  border-radius: var(--newcashlegends-radius-lg);
  border: 1px solid var(--newcashlegends-neutral-200);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__event-card--compact:hover {
  background: var(--newcashlegends-white);
  box-shadow: var(--newcashlegends-shadow-md);
}

.newcashlegends__event-time {
  font-size: var(--newcashlegends-text-sm);
  font-weight: 600;
  color: var(--newcashlegends-primary);
  background: var(--newcashlegends-white);
  padding: var(--newcashlegends-space-2) var(--newcashlegends-space-3);
  border-radius: var(--newcashlegends-radius-md);
  min-width: 60px;
  text-align: center;
}

.newcashlegends__event-date {
  font-size: var(--newcashlegends-text-sm);
  font-weight: 600;
  color: var(--newcashlegends-primary);
  background: var(--newcashlegends-white);
  padding: var(--newcashlegends-space-2) var(--newcashlegends-space-3);
  border-radius: var(--newcashlegends-radius-md);
  min-width: 80px;
  text-align: center;
}

.newcashlegends__event-info {
  flex: 1;
}

.newcashlegends__event-card--large {
  display: flex;
  flex-direction: column;
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  overflow: hidden;
  transition: var(--newcashlegends-transition-normal);
}

.newcashlegends__event-card--large:hover {
  transform: translateY(-4px);
  box-shadow: var(--newcashlegends-shadow-xl);
}

.newcashlegends__event-card--large .newcashlegends__event-image {
  height: 250px;
}

.newcashlegends__event-card--large .newcashlegends__event-content {
  padding: var(--newcashlegends-space-8);
}

.newcashlegends__event-meta {
  display: flex;
  gap: var(--newcashlegends-space-4);
  margin-bottom: var(--newcashlegends-space-3);
  flex-wrap: wrap;
}

.newcashlegends__event-meta span {
  font-size: var(--newcashlegends-text-sm);
  color: var(--newcashlegends-neutral-600);
  background: var(--newcashlegends-neutral-100);
  padding: var(--newcashlegends-space-1) var(--newcashlegends-space-3);
  border-radius: var(--newcashlegends-radius-full);
}

.newcashlegends__event-details {
  display: flex;
  gap: var(--newcashlegends-space-4);
  margin-bottom: var(--newcashlegends-space-6);
  flex-wrap: wrap;
}

.newcashlegends__event-price {
  font-weight: 600;
  color: var(--newcashlegends-primary);
}

.newcashlegends__event-time {
  color: var(--newcashlegends-neutral-600);
}

/* Buttons */
.newcashlegends__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--newcashlegends-space-2);
  padding: var(--newcashlegends-space-3) var(--newcashlegends-space-6);
  border-radius: var(--newcashlegends-radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: var(--newcashlegends-transition-fast);
  cursor: pointer;
  border: none;
  font-size: var(--newcashlegends-text-sm);
  line-height: 1;
  position: relative;
  z-index: 1;
  min-height: 44px;
  min-width: 120px;
}

.newcashlegends__btn--primary {
  background: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

.newcashlegends__btn--primary:hover {
  background: var(--newcashlegends-primary-dark);
  transform: translateY(-1px);
}

.newcashlegends__btn--ghost {
  background: transparent;
  color: var(--newcashlegends-primary);
  border: 2px solid var(--newcashlegends-primary);
}

.newcashlegends__btn--ghost:hover {
  background: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

/* Pagination */
.newcashlegends__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--newcashlegends-space-4);
  margin-top: var(--newcashlegends-space-12);
}

.newcashlegends__pagination-btn {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-2);
  padding: var(--newcashlegends-space-3) var(--newcashlegends-space-4);
  background: var(--newcashlegends-white);
  border: 1px solid var(--newcashlegends-neutral-300);
  border-radius: var(--newcashlegends-radius-md);
  color: var(--newcashlegends-neutral-700);
  font-weight: 500;
  cursor: pointer;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__pagination-btn:hover:not(:disabled) {
  background: var(--newcashlegends-primary);
  border-color: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

.newcashlegends__pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.newcashlegends__pagination-numbers {
  display: flex;
  gap: var(--newcashlegends-space-2);
}

.newcashlegends__pagination-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--newcashlegends-white);
  border: 1px solid var(--newcashlegends-neutral-300);
  border-radius: var(--newcashlegends-radius-md);
  color: var(--newcashlegends-neutral-700);
  font-weight: 500;
  cursor: pointer;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__pagination-number:hover {
  background: var(--newcashlegends-primary);
  border-color: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

.newcashlegends__pagination-number--active {
  background: var(--newcashlegends-primary);
  border-color: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

.newcashlegends__pagination-dots {
  display: flex;
  align-items: center;
  color: var(--newcashlegends-neutral-400);
}

/* Events List Section */
.newcashlegends__events-list {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-neutral-50);
}

/* Footer */
.newcashlegends__footer {
  background: var(--newcashlegends-neutral-900);
  color: var(--newcashlegends-neutral-300);
  padding: var(--newcashlegends-space-16) 0 var(--newcashlegends-space-8);
}

.newcashlegends__footer-content {
  display: grid;
  gap: var(--newcashlegends-space-8);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .newcashlegends__footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .newcashlegends__footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.newcashlegends__footer-title {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 700;
  color: var(--newcashlegends-white);
  margin-bottom: var(--newcashlegends-space-4);
}

.newcashlegends__footer-subtitle {
  font-size: var(--newcashlegends-text-lg);
  font-weight: 600;
  color: var(--newcashlegends-white);
  margin-bottom: var(--newcashlegends-space-4);
}

.newcashlegends__footer-description {
  color: var(--newcashlegends-neutral-400);
  line-height: 1.6;
}

.newcashlegends__footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-3);
}

.newcashlegends__footer-links a {
  color: var(--newcashlegends-neutral-400);
  text-decoration: none;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__footer-links a:hover {
  color: var(--newcashlegends-white);
}

.newcashlegends__social-links {
  display: flex;
  gap: var(--newcashlegends-space-4);
}

.newcashlegends__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--newcashlegends-neutral-800);
  border-radius: var(--newcashlegends-radius-lg);
  color: var(--newcashlegends-neutral-400);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__social-links a:hover {
  background: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

.newcashlegends__footer-bottom {
  border-top: 1px solid var(--newcashlegends-neutral-800);
  margin-top: var(--newcashlegends-space-8);
  padding-top: var(--newcashlegends-space-8);
  text-align: center;
}

.newcashlegends__footer-copyright {
  color: var(--newcashlegends-neutral-500);
  font-size: var(--newcashlegends-text-sm);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.newcashlegends__animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.newcashlegends__animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.newcashlegends__animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 575px) {
  .newcashlegends__container {
    padding: 0 var(--newcashlegends-space-3);
  }
  
  .newcashlegends__hero {
    padding: var(--newcashlegends-space-12) 0;
  }
  
  .newcashlegends__hero-title {
    font-size: var(--newcashlegends-text-3xl);
  }
  
  .newcashlegends__event-card {
    flex: 0 0 280px;
  }
  
  .newcashlegends__event-card--featured {
    flex: 0 0 280px;
  }
  
  .newcashlegends__events-slider {
    margin: var(--newcashlegends-space-8) 0 0;
    width: 100%;
  }
  
  .newcashlegends__events-track {
    grid-template-columns: 1fr;
    gap: var(--newcashlegends-space-4);
    padding: 0;
  }
  
  .newcashlegends__event-card--featured {
    width: 100%;
    margin: 0;
  }
  
  
  
  .newcashlegends__disciplines-grid {
    grid-template-columns: 1fr;
    gap: var(--newcashlegends-space-6);
  }
  
  .newcashlegends__discipline-card {
    padding: var(--newcashlegends-space-6);
  }
  
  .newcashlegends__discipline-tabs {
    gap: var(--newcashlegends-space-1);
    margin: var(--newcashlegends-space-8) 0;
  }
  
  .newcashlegends__discipline-tab {
    padding: var(--newcashlegends-space-2) var(--newcashlegends-space-4);
    font-size: var(--newcashlegends-text-sm);
  }
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
  .newcashlegends__event-card--featured {
    flex: 0 0 260px;
  }
  
  .newcashlegends__events-slider {
    margin: var(--newcashlegends-space-6) 0 0;
    width: 100%;
  }
  
  .newcashlegends__events-track {
    grid-template-columns: 1fr;
    gap: var(--newcashlegends-space-3);
  }
  
  .newcashlegends__event-card {
    width: 100%;
    margin: 0;
  }
  
  
}

/* Very small devices (phones, less than 360px) */
@media (max-width: 360px) {
  .newcashlegends__event-card--featured {
    flex: 0 0 240px;
  }
  
  .newcashlegends__event-card {
    flex: 0 0 240px;
  }
  
  .newcashlegends__events-slider {
    margin: var(--newcashlegends-space-4) 0 0;
    width: 100%;
  }
  
  .newcashlegends__events-track {
    grid-template-columns: 1fr;
    gap: var(--newcashlegends-space-2);
  }
  
  .newcashlegends__event-card--featured {
    width: 100%;
    margin: 0;
  }
  
  
  .newcashlegends__tabs {
    flex-wrap: wrap;
    gap: var(--newcashlegends-space-1);
  }
  
  .newcashlegends__tab {
    padding: var(--newcashlegends-space-3) var(--newcashlegends-space-4);
    font-size: var(--newcashlegends-text-sm);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --newcashlegends-primary: #000000;
    --newcashlegends-secondary: #000000;
    --newcashlegends-neutral-600: #000000;
    --newcashlegends-neutral-700: #000000;
    --newcashlegends-neutral-800: #000000;
    --newcashlegends-neutral-900: #000000;
  }
}

/* Page Header */
.newcashlegends__page-header {
  background: linear-gradient(135deg, var(--newcashlegends-neutral-50) 0%, var(--newcashlegends-white) 100%);
  padding: var(--newcashlegends-space-16) 0;
  border-bottom: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-2);
  margin-bottom: var(--newcashlegends-space-6);
  font-size: var(--newcashlegends-text-sm);
  color: var(--newcashlegends-neutral-600);
}

.newcashlegends__breadcrumbs a {
  color: var(--newcashlegends-primary);
  text-decoration: none;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__breadcrumbs a:hover {
  text-decoration: underline;
}

.newcashlegends__breadcrumb-separator {
  color: var(--newcashlegends-neutral-400);
}

.newcashlegends__page-title {
  font-size: var(--newcashlegends-text-4xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-4);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .newcashlegends__page-title {
    font-size: var(--newcashlegends-text-5xl);
  }
}

.newcashlegends__page-subtitle {
  font-size: var(--newcashlegends-text-lg);
  color: var(--newcashlegends-neutral-600);
  max-width: 800px;
  line-height: 1.6;
}

/* Filters Section */
.newcashlegends__filters {
  background: var(--newcashlegends-white);
  padding: var(--newcashlegends-space-8) 0;
  border-bottom: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__filters-content {
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-6);
}

.newcashlegends__search-box {
  position: relative;
  max-width: 400px;
}

.newcashlegends__search-input {
  width: 100%;
  padding: var(--newcashlegends-space-4) var(--newcashlegends-space-12) var(--newcashlegends-space-4) var(--newcashlegends-space-4);
  border: 2px solid var(--newcashlegends-neutral-300);
  border-radius: var(--newcashlegends-radius-lg);
  font-size: var(--newcashlegends-text-base);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__search-input:focus {
  outline: none;
  border-color: var(--newcashlegends-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.newcashlegends__search-icon {
  position: absolute;
  right: var(--newcashlegends-space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--newcashlegends-neutral-400);
  pointer-events: none;
}

.newcashlegends__filters-row {
  display: grid;
  gap: var(--newcashlegends-space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .newcashlegends__filters-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .newcashlegends__filters-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.newcashlegends__filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-2);
}

.newcashlegends__filter-label {
  font-weight: 600;
  color: var(--newcashlegends-neutral-700);
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__filter-select {
  padding: var(--newcashlegends-space-3) var(--newcashlegends-space-4);
  border: 2px solid var(--newcashlegends-neutral-300);
  border-radius: var(--newcashlegends-radius-md);
  font-size: var(--newcashlegends-text-sm);
  background: var(--newcashlegends-white);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__filter-select:focus {
  outline: none;
  border-color: var(--newcashlegends-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.newcashlegends__filter-pills {
  display: flex;
  gap: var(--newcashlegends-space-3);
  flex-wrap: wrap;
}

.newcashlegends__filter-btn {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-2);
  padding: var(--newcashlegends-space-2) var(--newcashlegends-space-4);
  background: var(--newcashlegends-neutral-100);
  border: 2px solid var(--newcashlegends-neutral-200);
  border-radius: var(--newcashlegends-radius-full);
  color: var(--newcashlegends-neutral-700);
  font-size: var(--newcashlegends-text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__filter-btn:hover {
  background: var(--newcashlegends-neutral-200);
}

.newcashlegends__filter-btn--active {
  background: var(--newcashlegends-primary);
  border-color: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

/* Events Section */
.newcashlegends__events-section {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-neutral-50);
}

.newcashlegends__events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--newcashlegends-space-8);
  flex-wrap: wrap;
  gap: var(--newcashlegends-space-4);
}

.newcashlegends__events-count {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-2);
}

.newcashlegends__events-number {
  font-size: var(--newcashlegends-text-2xl);
  font-weight: 700;
  color: var(--newcashlegends-primary);
}

.newcashlegends__events-label {
  color: var(--newcashlegends-neutral-600);
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__sort-controls {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-3);
}

.newcashlegends__sort-label {
  font-size: var(--newcashlegends-text-sm);
  color: var(--newcashlegends-neutral-700);
  font-weight: 500;
}

.newcashlegends__sort-select {
  padding: var(--newcashlegends-space-2) var(--newcashlegends-space-3);
  border: 1px solid var(--newcashlegends-neutral-300);
  border-radius: var(--newcashlegends-radius-md);
  font-size: var(--newcashlegends-text-sm);
  background: var(--newcashlegends-white);
}

/* Event Card List Variant */
.newcashlegends__events-grid--list {
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-6);
  width: 100%;
  overflow: visible;
}

.newcashlegends__event-card--list {
  display: flex;
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  overflow: visible;
  transition: var(--newcashlegends-transition-normal);
  position: relative;
}

.newcashlegends__event-card--list:hover {
  transform: translateY(-2px);
  box-shadow: var(--newcashlegends-shadow-lg);
}

.newcashlegends__event-card--list .newcashlegends__event-image {
  flex: 0 0 300px;
  height: 200px;
}

.newcashlegends__event-card--list .newcashlegends__event-content {
  flex: 1;
  padding: var(--newcashlegends-space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newcashlegends__event-card--list .newcashlegends__event-meta {
  display: flex;
  gap: var(--newcashlegends-space-4);
  margin-bottom: var(--newcashlegends-space-3);
  flex-wrap: wrap;
}

.newcashlegends__event-card--list .newcashlegends__event-meta span {
  font-size: var(--newcashlegends-text-sm);
  color: var(--newcashlegends-neutral-600);
  background: var(--newcashlegends-neutral-100);
  padding: var(--newcashlegends-space-1) var(--newcashlegends-space-3);
  border-radius: var(--newcashlegends-radius-full);
}

.newcashlegends__event-card--list .newcashlegends__event-title {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-3);
  line-height: 1.3;
}

.newcashlegends__event-card--list .newcashlegends__event-description {
  color: var(--newcashlegends-neutral-600);
  line-height: 1.6;
  margin-bottom: var(--newcashlegends-space-4);
  flex: 1;
}

.newcashlegends__event-card--list .newcashlegends__event-details {
  display: flex;
  gap: var(--newcashlegends-space-6);
  margin-bottom: var(--newcashlegends-space-4);
  flex-wrap: wrap;
}

.newcashlegends__event-detail {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-2);
  font-size: var(--newcashlegends-text-sm);
  color: var(--newcashlegends-neutral-600);
}

.newcashlegends__event-detail svg {
  color: var(--newcashlegends-primary);
}

/* Navigation Active State */
.newcashlegends__nav-link--active {
  color: var(--newcashlegends-primary);
  background: var(--newcashlegends-neutral-50);
}

/* Empty State */
.newcashlegends__empty-state {
  text-align: center;
  padding: var(--newcashlegends-space-16) var(--newcashlegends-space-8);
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-sm);
}

.newcashlegends__empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--newcashlegends-space-6);
  color: var(--newcashlegends-neutral-400);
}

.newcashlegends__empty-state-title {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 600;
  color: var(--newcashlegends-neutral-700);
  margin-bottom: var(--newcashlegends-space-3);
}

.newcashlegends__empty-state-description {
  color: var(--newcashlegends-neutral-600);
  margin-bottom: var(--newcashlegends-space-6);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Loading State */
.newcashlegends__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--newcashlegends-space-16);
}

.newcashlegends__loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--newcashlegends-neutral-200);
  border-top: 4px solid var(--newcashlegends-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Calendar Styles */
.newcashlegends__calendar-controls {
  background: var(--newcashlegends-white);
  padding: var(--newcashlegends-space-8) 0;
  border-bottom: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--newcashlegends-space-6);
  flex-wrap: wrap;
  gap: var(--newcashlegends-space-4);
}

.newcashlegends__calendar-navigation {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-4);
}

.newcashlegends__calendar-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--newcashlegends-neutral-100);
  border: 2px solid var(--newcashlegends-neutral-200);
  border-radius: var(--newcashlegends-radius-lg);
  color: var(--newcashlegends-neutral-700);
  cursor: pointer;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__calendar-nav-btn:hover {
  background: var(--newcashlegends-primary);
  border-color: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

.newcashlegends__calendar-month {
  font-size: var(--newcashlegends-text-2xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  min-width: 200px;
  text-align: center;
}

.newcashlegends__calendar-view-toggles {
  display: flex;
  background: var(--newcashlegends-neutral-100);
  border-radius: var(--newcashlegends-radius-lg);
  padding: var(--newcashlegends-space-1);
}

.newcashlegends__view-toggle {
  padding: var(--newcashlegends-space-3) var(--newcashlegends-space-6);
  background: none;
  border: none;
  color: var(--newcashlegends-neutral-600);
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--newcashlegends-radius-md);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__view-toggle:hover {
  color: var(--newcashlegends-neutral-900);
}

.newcashlegends__view-toggle--active {
  background: var(--newcashlegends-white);
  color: var(--newcashlegends-primary);
  box-shadow: var(--newcashlegends-shadow-sm);
}

.newcashlegends__calendar-filters {
  display: flex;
  gap: var(--newcashlegends-space-3);
  flex-wrap: wrap;
}

.newcashlegends__discipline-pill {
  padding: var(--newcashlegends-space-2) var(--newcashlegends-space-4);
  background: var(--newcashlegends-neutral-100);
  border: 2px solid var(--newcashlegends-neutral-200);
  border-radius: var(--newcashlegends-radius-full);
  color: var(--newcashlegends-neutral-700);
  font-size: var(--newcashlegends-text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__discipline-pill:hover {
  background: var(--newcashlegends-neutral-200);
}

.newcashlegends__discipline-pill--active {
  background: var(--newcashlegends-primary);
  border-color: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
}

.newcashlegends__calendar-section {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-neutral-50);
}

.newcashlegends__calendar-grid {
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  overflow: hidden;
}

.newcashlegends__calendar-header-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--newcashlegends-neutral-100);
}

.newcashlegends__calendar-day-header {
  padding: var(--newcashlegends-space-4);
  text-align: center;
  font-weight: 600;
  color: var(--newcashlegends-neutral-700);
  font-size: var(--newcashlegends-text-sm);
  border-right: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__calendar-day-header:last-child {
  border-right: none;
}

.newcashlegends__calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.newcashlegends__calendar-day {
  min-height: 120px;
  padding: var(--newcashlegends-space-3);
  border-right: 1px solid var(--newcashlegends-neutral-200);
  border-bottom: 1px solid var(--newcashlegends-neutral-200);
  position: relative;
  cursor: pointer;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__calendar-day:nth-child(7n) {
  border-right: none;
}

.newcashlegends__calendar-day:hover {
  background: var(--newcashlegends-neutral-50);
}

.newcashlegends__calendar-day--other-month {
  background: var(--newcashlegends-neutral-50);
  color: var(--newcashlegends-neutral-400);
}

.newcashlegends__calendar-day--has-events {
  background: rgba(220, 38, 38, 0.05);
}

.newcashlegends__calendar-day--has-events:hover {
  background: rgba(220, 38, 38, 0.1);
}

.newcashlegends__calendar-day-number {
  font-weight: 600;
  color: var(--newcashlegends-neutral-900);
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__calendar-day--other-month .newcashlegends__calendar-day-number {
  color: var(--newcashlegends-neutral-400);
}

.newcashlegends__calendar-event-indicator {
  position: absolute;
  bottom: var(--newcashlegends-space-2);
  left: var(--newcashlegends-space-2);
  right: var(--newcashlegends-space-2);
  height: 4px;
  background: var(--newcashlegends-primary);
  border-radius: var(--newcashlegends-radius-full);
}

/* Week Calendar */
.newcashlegends__week-calendar {
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  overflow: hidden;
}

.newcashlegends__week-header {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  background: var(--newcashlegends-neutral-100);
}

.newcashlegends__week-time-column {
  padding: var(--newcashlegends-space-4);
  font-weight: 600;
  color: var(--newcashlegends-neutral-700);
  font-size: var(--newcashlegends-text-sm);
  border-right: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__week-day {
  padding: var(--newcashlegends-space-4);
  text-align: center;
  font-weight: 600;
  color: var(--newcashlegends-neutral-700);
  font-size: var(--newcashlegends-text-sm);
  border-right: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__week-day:last-child {
  border-right: none;
}

.newcashlegends__week-grid {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  min-height: 600px;
}

.newcashlegends__week-event {
  background: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
  padding: var(--newcashlegends-space-2);
  border-radius: var(--newcashlegends-radius-md);
  margin: var(--newcashlegends-space-1);
  cursor: pointer;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__week-event:hover {
  background: var(--newcashlegends-primary-dark);
}

.newcashlegends__week-event-title {
  font-size: var(--newcashlegends-text-xs);
  font-weight: 600;
  margin-bottom: var(--newcashlegends-space-1);
}

.newcashlegends__week-event-time {
  font-size: var(--newcashlegends-text-xs);
  opacity: 0.9;
}

/* Day Calendar */
.newcashlegends__day-calendar {
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  padding: var(--newcashlegends-space-8);
}

.newcashlegends__day-title {
  font-size: var(--newcashlegends-text-2xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-8);
  text-align: center;
}

.newcashlegends__day-events {
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-4);
}

.newcashlegends__day-event {
  display: flex;
  gap: var(--newcashlegends-space-4);
  padding: var(--newcashlegends-space-4);
  background: var(--newcashlegends-neutral-50);
  border-radius: var(--newcashlegends-radius-lg);
  border-left: 4px solid var(--newcashlegends-primary);
  transition: var(--newcashlegends-transition-fast);
  cursor: pointer;
}

.newcashlegends__day-event:hover {
  background: var(--newcashlegends-neutral-100);
  transform: translateX(4px);
}

.newcashlegends__day-event-time {
  font-weight: 600;
  color: var(--newcashlegends-primary);
  font-size: var(--newcashlegends-text-sm);
  min-width: 60px;
}

.newcashlegends__day-event-content {
  flex: 1;
}

.newcashlegends__day-event-title {
  font-size: var(--newcashlegends-text-lg);
  font-weight: 600;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-1);
}

.newcashlegends__day-event-location {
  color: var(--newcashlegends-neutral-600);
  font-size: var(--newcashlegends-text-sm);
}

/* Event Sidebar */
.newcashlegends__event-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--newcashlegends-white);
  box-shadow: var(--newcashlegends-shadow-xl);
  z-index: 1000;
  transition: var(--newcashlegends-transition-normal);
  overflow-y: auto;
}

.newcashlegends__event-sidebar--open {
  right: 0;
}

.newcashlegends__event-sidebar-content {
  padding: var(--newcashlegends-space-6);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.newcashlegends__event-sidebar-close {
  position: absolute;
  top: var(--newcashlegends-space-4);
  right: var(--newcashlegends-space-4);
  background: none;
  border: none;
  color: var(--newcashlegends-neutral-400);
  cursor: pointer;
  padding: var(--newcashlegends-space-2);
  border-radius: var(--newcashlegends-radius-md);
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__event-sidebar-close:hover {
  background: var(--newcashlegends-neutral-100);
  color: var(--newcashlegends-neutral-700);
}

.newcashlegends__event-sidebar-header {
  margin-bottom: var(--newcashlegends-space-6);
  padding-top: var(--newcashlegends-space-8);
}

.newcashlegends__event-sidebar-title {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-2);
}

.newcashlegends__event-sidebar-date {
  color: var(--newcashlegends-primary);
  font-weight: 600;
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__event-sidebar-body {
  flex: 1;
}

.newcashlegends__event-sidebar-detail {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-3);
  margin-bottom: var(--newcashlegends-space-4);
  color: var(--newcashlegends-neutral-700);
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__event-sidebar-detail svg {
  color: var(--newcashlegends-primary);
  flex-shrink: 0;
}

.newcashlegends__event-sidebar-description {
  color: var(--newcashlegends-neutral-600);
  line-height: 1.6;
  margin-bottom: var(--newcashlegends-space-6);
}

/* Overlay for sidebar */
.newcashlegends__sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--newcashlegends-transition-normal);
}

.newcashlegends__sidebar-overlay--open {
  opacity: 1;
  visibility: visible;
}

/* Responsive Calendar */
@media (max-width: 768px) {
  .newcashlegends__calendar-header {
    flex-direction: column;
    align-items: stretch;
    gap: var(--newcashlegends-space-4);
  }
  
  .newcashlegends__calendar-navigation {
    justify-content: center;
    gap: 4px;
  }
  
  .newcashlegends__calendar-view-toggles {
    justify-content: center;
  }
  
  .newcashlegends__calendar-day {
    min-height: 80px;
    padding: var(--newcashlegends-space-2);
  }
  
  .newcashlegends__event-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .newcashlegends__week-header,
  .newcashlegends__week-grid {
    grid-template-columns: 60px repeat(7, 1fr);
  }
  
  .newcashlegends__week-time-column {
    padding: var(--newcashlegends-space-2);
    font-size: var(--newcashlegends-text-xs);
  }
  
  .newcashlegends__week-day {
    padding: var(--newcashlegends-space-2);
    font-size: var(--newcashlegends-text-xs);
  }
}

/* Results Page Styles */
.newcashlegends__results-filters {
  background: var(--newcashlegends-white);
  padding: var(--newcashlegends-space-8) 0;
  border-bottom: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__results-section {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-neutral-50);
}

.newcashlegends__results-grid {
  display: grid;
  gap: var(--newcashlegends-space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .newcashlegends__results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .newcashlegends__results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.newcashlegends__result-card {
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  overflow: hidden;
  transition: var(--newcashlegends-transition-normal);
  position: relative;
}

.newcashlegends__result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--newcashlegends-shadow-xl);
}

.newcashlegends__result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--newcashlegends-space-6);
  border-bottom: 1px solid var(--newcashlegends-neutral-200);
  background: var(--newcashlegends-neutral-50);
}

.newcashlegends__result-event {
  flex: 1;
}

.newcashlegends__result-title {
  font-size: var(--newcashlegends-text-lg);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-1);
  line-height: 1.3;
}

.newcashlegends__result-date {
  color: var(--newcashlegends-neutral-600);
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__result-discipline {
  margin-left: var(--newcashlegends-space-4);
}

.newcashlegends__discipline-badge {
  display: inline-block;
  padding: var(--newcashlegends-space-1) var(--newcashlegends-space-3);
  border-radius: var(--newcashlegends-radius-full);
  font-size: var(--newcashlegends-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newcashlegends__discipline-badge--atletismo {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.newcashlegends__discipline-badge--formula1 {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.newcashlegends__discipline-badge--ciclismo {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.newcashlegends__discipline-badge--baloncesto {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.newcashlegends__discipline-badge--futbol {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.newcashlegends__discipline-badge--tenis {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.newcashlegends__result-content {
  padding: var(--newcashlegends-space-6);
}

.newcashlegends__result-winner {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-4);
  margin-bottom: var(--newcashlegends-space-4);
  padding: var(--newcashlegends-space-4);
  background: var(--newcashlegends-neutral-50);
  border-radius: var(--newcashlegends-radius-lg);
  border-left: 4px solid var(--newcashlegends-primary);
}

.newcashlegends__result-position {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-full);
  font-weight: 700;
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__result-participant {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-1);
}

.newcashlegends__result-name {
  font-weight: 600;
  color: var(--newcashlegends-neutral-900);
  font-size: var(--newcashlegends-text-base);
}

.newcashlegends__result-time,
.newcashlegends__result-score {
  color: var(--newcashlegends-primary);
  font-weight: 600;
  font-size: var(--newcashlegends-text-sm);
  font-family: 'Courier New', monospace;
}

.newcashlegends__result-notes {
  margin-bottom: var(--newcashlegends-space-4);
}

.newcashlegends__result-note {
  color: var(--newcashlegends-neutral-600);
  font-size: var(--newcashlegends-text-sm);
  font-style: italic;
  line-height: 1.5;
}

.newcashlegends__result-actions {
  display: flex;
  gap: var(--newcashlegends-space-3);
  flex-wrap: wrap;
}

.newcashlegends__result-actions .newcashlegends__btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.newcashlegends__load-more {
  display: flex;
  justify-content: center;
  margin-top: var(--newcashlegends-space-12);
}

.newcashlegends__load-more .newcashlegends__btn {
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-2);
  padding: var(--newcashlegends-space-4) var(--newcashlegends-space-8);
}

/* Responsive Results */
@media (max-width: 768px) {
  .newcashlegends__result-header {
    flex-direction: column;
    gap: var(--newcashlegends-space-3);
  }
  
  .newcashlegends__result-discipline {
    margin-left: 0;
    align-self: flex-start;
  }
  
  .newcashlegends__result-actions {
    flex-direction: column;
  }
  
  .newcashlegends__result-actions .newcashlegends__btn {
    flex: none;
  }
}

/* Articles Page Styles */
.newcashlegends__featured-article {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-white);
  border-bottom: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__article-card--featured {
  display: flex;
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-lg);
  overflow: hidden;
  transition: var(--newcashlegends-transition-normal);
  position: relative;
}

.newcashlegends__article-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--newcashlegends-shadow-xl);
}

.newcashlegends__article-card--featured .newcashlegends__article-image {
  flex: 0 0 50%;
  height: 400px;
}

.newcashlegends__article-card--featured .newcashlegends__article-content {
  flex: 1;
  padding: var(--newcashlegends-space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newcashlegends__articles-section {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-neutral-50);
}

.newcashlegends__articles-grid {
  display: grid;
  gap: var(--newcashlegends-space-8);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .newcashlegends__articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .newcashlegends__articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.newcashlegends__article-card {
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  overflow: hidden;
  transition: var(--newcashlegends-transition-normal);
  position: relative;
}

.newcashlegends__article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--newcashlegends-shadow-lg);
}

.newcashlegends__article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.newcashlegends__article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--newcashlegends-transition-normal);
}

.newcashlegends__article-card:hover .newcashlegends__article-image img {
  transform: scale(1.05);
}

.newcashlegends__article-content {
  padding: var(--newcashlegends-space-6);
}

.newcashlegends__article-meta {
  display: flex;
  gap: var(--newcashlegends-space-4);
  margin-bottom: var(--newcashlegends-space-3);
  flex-wrap: wrap;
}

.newcashlegends__article-category {
  background: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
  padding: var(--newcashlegends-space-1) var(--newcashlegends-space-3);
  border-radius: var(--newcashlegends-radius-full);
  font-size: var(--newcashlegends-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newcashlegends__article-date {
  color: var(--newcashlegends-neutral-600);
  font-size: var(--newcashlegends-text-sm);
  display: flex;
  align-items: center;
  gap: var(--newcashlegends-space-1);
}

.newcashlegends__article-date::before {
  content: "📅";
  font-size: var(--newcashlegends-text-xs);
}

.newcashlegends__article-title {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-2);
  line-height: 1.3;
}

.newcashlegends__article-card--featured .newcashlegends__article-title {
  font-size: var(--newcashlegends-text-3xl);
  margin-bottom: var(--newcashlegends-space-3);
}

.newcashlegends__article-subtitle {
  color: var(--newcashlegends-primary);
  font-size: var(--newcashlegends-text-sm);
  font-weight: 600;
  margin-bottom: var(--newcashlegends-space-3);
  font-style: italic;
}

.newcashlegends__article-card--featured .newcashlegends__article-subtitle {
  font-size: var(--newcashlegends-text-lg);
  margin-bottom: var(--newcashlegends-space-4);
}

.newcashlegends__article-excerpt {
  color: var(--newcashlegends-neutral-600);
  line-height: 1.6;
  margin-bottom: var(--newcashlegends-space-4);
}

.newcashlegends__article-card--featured .newcashlegends__article-excerpt {
  font-size: var(--newcashlegends-text-lg);
  margin-bottom: var(--newcashlegends-space-6);
}

/* Responsive Articles */
@media (max-width: 768px) {
  .newcashlegends__article-card--featured {
    flex-direction: column;
  }
  
  .newcashlegends__article-card--featured .newcashlegends__article-image {
    flex: none;
    height: 250px;
  }
  
  .newcashlegends__article-card--featured .newcashlegends__article-content {
    padding: var(--newcashlegends-space-6);
  }
  
  .newcashlegends__article-card--featured .newcashlegends__article-title {
    font-size: var(--newcashlegends-text-2xl);
  }
  
  .newcashlegends__article-card--featured .newcashlegends__article-subtitle {
    font-size: var(--newcashlegends-text-base);
  }
  
  .newcashlegends__article-card--featured .newcashlegends__article-excerpt {
    font-size: var(--newcashlegends-text-base);
  }
}

/* Contact Page Styles */
.newcashlegends__contact-section {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-neutral-50);
}

.newcashlegends__contact-content {
  display: grid;
  gap: var(--newcashlegends-space-12);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .newcashlegends__contact-content {
    grid-template-columns: 2fr 1fr;
    gap: var(--newcashlegends-space-16);
  }
}

.newcashlegends__contact-form-container {
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  padding: var(--newcashlegends-space-8);
}

.newcashlegends__contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-6);
}

.newcashlegends__form-title {
  font-size: var(--newcashlegends-text-2xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-2);
}

.newcashlegends__form-description {
  color: var(--newcashlegends-neutral-600);
  margin-bottom: var(--newcashlegends-space-6);
}

.newcashlegends__form-group {
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-2);
}

.newcashlegends__form-label {
  font-weight: 600;
  color: var(--newcashlegends-neutral-700);
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__form-input,
.newcashlegends__form-select,
.newcashlegends__form-textarea {
  padding: var(--newcashlegends-space-4);
  border: 2px solid var(--newcashlegends-neutral-300);
  border-radius: var(--newcashlegends-radius-lg);
  font-size: var(--newcashlegends-text-base);
  transition: var(--newcashlegends-transition-fast);
  background: var(--newcashlegends-white);
}

.newcashlegends__form-input:focus,
.newcashlegends__form-select:focus,
.newcashlegends__form-textarea:focus {
  outline: none;
  border-color: var(--newcashlegends-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.newcashlegends__form-input:invalid,
.newcashlegends__form-textarea:invalid {
  border-color: var(--newcashlegends-primary);
}

.newcashlegends__form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.newcashlegends__form-error {
  color: var(--newcashlegends-primary);
  font-size: var(--newcashlegends-text-sm);
  margin-top: var(--newcashlegends-space-1);
  display: none;
}

.newcashlegends__form-error--visible {
  display: block;
}

.newcashlegends__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--newcashlegends-space-3);
  cursor: pointer;
  font-size: var(--newcashlegends-text-sm);
  line-height: 1.5;
}

.newcashlegends__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--newcashlegends-primary);
}

.newcashlegends__checkbox-text {
  color: var(--newcashlegends-neutral-700);
}

.newcashlegends__checkbox-text a {
  color: var(--newcashlegends-primary);
  text-decoration: none;
}

.newcashlegends__checkbox-text a:hover {
  text-decoration: underline;
}

.newcashlegends__btn--full-width {
  width: 100%;
  justify-content: center;
}

.newcashlegends__contact-info {
  background: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-xl);
  box-shadow: var(--newcashlegends-shadow-md);
  padding: var(--newcashlegends-space-8);
  height: fit-content;
}

.newcashlegends__info-title {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-3);
}

.newcashlegends__info-description {
  color: var(--newcashlegends-neutral-600);
  margin-bottom: var(--newcashlegends-space-8);
}

.newcashlegends__contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-6);
  margin-bottom: var(--newcashlegends-space-8);
}

.newcashlegends__contact-method {
  display: flex;
  gap: var(--newcashlegends-space-4);
  align-items: flex-start;
}

.newcashlegends__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--newcashlegends-primary);
  color: var(--newcashlegends-white);
  border-radius: var(--newcashlegends-radius-lg);
  flex-shrink: 0;
}

.newcashlegends__contact-details {
  flex: 1;
}

.newcashlegends__contact-method-title {
  font-size: var(--newcashlegends-text-base);
  font-weight: 600;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-1);
}

.newcashlegends__contact-method-value {
  color: var(--newcashlegends-neutral-700);
  font-weight: 500;
  margin-bottom: var(--newcashlegends-space-1);
}

.newcashlegends__contact-method-description {
  color: var(--newcashlegends-neutral-500);
  font-size: var(--newcashlegends-text-sm);
}

.newcashlegends__contact-hours {
  border-top: 1px solid var(--newcashlegends-neutral-200);
  padding-top: var(--newcashlegends-space-6);
}

.newcashlegends__hours-title {
  font-size: var(--newcashlegends-text-lg);
  font-weight: 600;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-4);
}

.newcashlegends__hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--newcashlegends-space-3);
}

.newcashlegends__hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--newcashlegends-space-2) 0;
}

.newcashlegends__hours-day {
  color: var(--newcashlegends-neutral-700);
  font-weight: 500;
}

.newcashlegends__hours-time {
  color: var(--newcashlegends-neutral-600);
  font-size: var(--newcashlegends-text-sm);
}

/* Form Success/Error States */
.newcashlegends__form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #16a34a;
  color: #16a34a;
  padding: var(--newcashlegends-space-4);
  border-radius: var(--newcashlegends-radius-lg);
  margin-bottom: var(--newcashlegends-space-4);
  display: none;
}

.newcashlegends__form-success--visible {
  display: block;
}

.newcashlegends__form-error-message {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid #dc2626;
  color: #dc2626;
  padding: var(--newcashlegends-space-4);
  border-radius: var(--newcashlegends-radius-lg);
  margin-bottom: var(--newcashlegends-space-4);
  display: none;
}

.newcashlegends__form-error-message--visible {
  display: block;
}

/* Responsive Contact */
@media (max-width: 768px) {
  .newcashlegends__contact-form-container {
    padding: var(--newcashlegends-space-6);
  }
  
  .newcashlegends__contact-info {
    padding: var(--newcashlegends-space-6);
  }
  
  .newcashlegends__contact-method {
    flex-direction: column;
    gap: var(--newcashlegends-space-3);
  }
  
  .newcashlegends__contact-icon {
    width: 40px;
    height: 40px;
  }
}

/* Legal Pages Styles */
.newcashlegends__legal-content {
  padding: var(--newcashlegends-space-16) 0;
  background: var(--newcashlegends-white);
}

.newcashlegends__legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--newcashlegends-neutral-700);
}

.newcashlegends__legal-text h2 {
  font-size: var(--newcashlegends-text-2xl);
  font-weight: 700;
  color: var(--newcashlegends-neutral-900);
  margin: var(--newcashlegends-space-12) 0 var(--newcashlegends-space-6);
  padding-bottom: var(--newcashlegends-space-3);
  border-bottom: 2px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__legal-text h2:first-child {
  margin-top: 0;
}

.newcashlegends__legal-text h3 {
  font-size: var(--newcashlegends-text-xl);
  font-weight: 600;
  color: var(--newcashlegends-neutral-900);
  margin: var(--newcashlegends-space-8) 0 var(--newcashlegends-space-4);
}

.newcashlegends__legal-text p {
  margin-bottom: var(--newcashlegends-space-6);
  text-align: justify;
}

.newcashlegends__legal-text ul,
.newcashlegends__legal-text ol {
  margin: var(--newcashlegends-space-4) 0 var(--newcashlegends-space-6);
  padding-left: var(--newcashlegends-space-8);
}

.newcashlegends__legal-text li {
  margin-bottom: var(--newcashlegends-space-2);
}

.newcashlegends__legal-text strong {
  color: var(--newcashlegends-neutral-900);
  font-weight: 600;
}

.newcashlegends__legal-text a {
  color: var(--newcashlegends-primary);
  text-decoration: none;
  font-weight: 500;
}

.newcashlegends__legal-text a:hover {
  text-decoration: underline;
}

.newcashlegends__legal-footer {
  background: var(--newcashlegends-neutral-50);
  padding: var(--newcashlegends-space-6);
  border-radius: var(--newcashlegends-radius-lg);
  margin-top: var(--newcashlegends-space-12);
  border-left: 4px solid var(--newcashlegends-primary);
}

.newcashlegends__legal-footer p {
  margin-bottom: var(--newcashlegends-space-2);
  font-size: var(--newcashlegends-text-sm);
  color: var(--newcashlegends-neutral-600);
}

.newcashlegends__legal-footer p:last-child {
  margin-bottom: 0;
}

/* Table of Contents for Legal Pages */
.newcashlegends__legal-toc {
  background: var(--newcashlegends-neutral-50);
  padding: var(--newcashlegends-space-6);
  border-radius: var(--newcashlegends-radius-lg);
  margin-bottom: var(--newcashlegends-space-8);
  border: 1px solid var(--newcashlegends-neutral-200);
}

.newcashlegends__legal-toc h3 {
  font-size: var(--newcashlegends-text-lg);
  font-weight: 600;
  color: var(--newcashlegends-neutral-900);
  margin-bottom: var(--newcashlegends-space-4);
  margin-top: 0;
}

.newcashlegends__legal-toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.newcashlegends__legal-toc li {
  margin-bottom: var(--newcashlegends-space-2);
}

.newcashlegends__legal-toc a {
  color: var(--newcashlegends-primary);
  text-decoration: none;
  font-size: var(--newcashlegends-text-sm);
  display: block;
  padding: var(--newcashlegends-space-1) 0;
  transition: var(--newcashlegends-transition-fast);
}

.newcashlegends__legal-toc a:hover {
  text-decoration: underline;
  color: var(--newcashlegends-primary-dark);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .newcashlegends__legal-text {
    padding: 0 var(--newcashlegends-space-4);
  }
  
  .newcashlegends__legal-text h2 {
    font-size: var(--newcashlegends-text-xl);
    margin: var(--newcashlegends-space-8) 0 var(--newcashlegends-space-4);
  }
  
  .newcashlegends__legal-text h3 {
    font-size: var(--newcashlegends-text-lg);
    margin: var(--newcashlegends-space-6) 0 var(--newcashlegends-space-3);
  }
  
  .newcashlegends__legal-text ul,
  .newcashlegends__legal-text ol {
    padding-left: var(--newcashlegends-space-6);
  }
  
  .newcashlegends__legal-footer {
    padding: var(--newcashlegends-space-4);
  }
}

/* Events Page Mobile Styles */
@media (max-width: 768px) {
  .newcashlegends__events-section {
    padding: var(--newcashlegends-space-8) 0;
  }
  
  .newcashlegends__container {
    padding: 0 var(--newcashlegends-space-4);
  }
  
  .newcashlegends__filters {
    flex-direction: column;
    gap: var(--newcashlegends-space-4);
    margin-bottom: var(--newcashlegends-space-6);
  }
  
  .newcashlegends__filters-group {
    flex: 1;
  }
  
  .newcashlegends__filters-row {
    flex-direction: column;
    gap: var(--newcashlegends-space-3);
  }
  
  .newcashlegends__sort-controls {
    flex-direction: column;
    align-items: stretch;
    gap: var(--newcashlegends-space-2);
  }
  
  .newcashlegends__events-grid--list {
    gap: var(--newcashlegends-space-4);
  }
  
  .newcashlegends__event-card--list {
    flex-direction: column;
    min-height: auto;
    overflow: visible;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-image {
    flex: none;
    height: 200px;
    width: 100%;
    border-radius: var(--newcashlegends-radius-xl) var(--newcashlegends-radius-xl) 0 0;
    overflow: hidden;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-content {
    padding: var(--newcashlegends-space-4);
    flex: 1;
    min-height: auto;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-meta {
    flex-direction: column;
    gap: var(--newcashlegends-space-2);
    align-items: flex-start;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-details {
    flex-direction: column;
    gap: var(--newcashlegends-space-3);
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-detail {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .newcashlegends__filters {
    padding: var(--newcashlegends-space-4);
  }
  
  .newcashlegends__filters-group {
    margin-bottom: var(--newcashlegends-space-3);
  }
  
  .newcashlegends__event-card--list {
    margin-bottom: var(--newcashlegends-space-4);
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-image {
    height: 150px;
    border-radius: var(--newcashlegends-radius-xl) var(--newcashlegends-radius-xl) 0 0;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-content {
    padding: var(--newcashlegends-space-3);
    min-height: auto;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-title {
    font-size: var(--newcashlegends-text-lg);
    margin-bottom: var(--newcashlegends-space-2);
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-description {
    font-size: var(--newcashlegends-text-sm);
    line-height: 1.5;
    margin-bottom: var(--newcashlegends-space-3);
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-details {
    margin-bottom: var(--newcashlegends-space-3);
  }
}

@media (max-width: 360px) {
  .newcashlegends__event-card--list {
    margin-bottom: var(--newcashlegends-space-3);
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-image {
    height: 120px;
    border-radius: var(--newcashlegends-radius-xl) var(--newcashlegends-radius-xl) 0 0;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-content {
    padding: var(--newcashlegends-space-2);
    min-height: auto;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-title {
    font-size: var(--newcashlegends-text-base);
    margin-bottom: var(--newcashlegends-space-2);
    line-height: 1.3;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-description {
    font-size: var(--newcashlegends-text-xs);
    line-height: 1.4;
    margin-bottom: var(--newcashlegends-space-2);
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-meta {
    margin-bottom: var(--newcashlegends-space-2);
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-meta span {
    font-size: var(--newcashlegends-text-xs);
    padding: var(--newcashlegends-space-1) var(--newcashlegends-space-2);
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-details {
    margin-bottom: var(--newcashlegends-space-2);
  }
  
  .newcashlegends__event-card--list .newcashlegends__btn {
    width: 100%;
    text-align: center;
  }
}

/* Print Styles */
@media print {
  .newcashlegends__header,
  .newcashlegends__footer,
  .newcashlegends__pagination,
  .newcashlegends__filters {
    display: none;
  }
  
  .newcashlegends__main {
    padding: 0;
  }
  
  .newcashlegends__event-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--newcashlegends-neutral-300);
  }
  
  .newcashlegends__event-card--list {
    flex-direction: column;
  }
  
  .newcashlegends__event-card--list .newcashlegends__event-image {
    flex: none;
    height: 150px;
  }
}
