/* Testing Page Overrides - Dark theme with glassmorphism */

body.testing-page {
  background: #000000;
  color: #F1F1F5;
  position: relative;
  min-height: 100vh;
}

/* Purple neon accents on background */
body.testing-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(61, 21, 206, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(144, 70, 234, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Noise texture - 2-3% opacity */
body.testing-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* Header styling - matching the design */
body.testing-page .main-header {
  position: relative !important;
  z-index: 9999 !important;
  background: transparent !important;
  border-bottom: none !important;
}

body.testing-page .main-header::after {
  display: none;
}

/* White logo - override gradient */
body.testing-page .main-header .logo-icon svg path {
  fill: rgba(255, 255, 255, 0.95) !important;
  opacity: 1 !important;
}

body.testing-page .main-header .logo-icon svg defs linearGradient stop {
  stop-color: rgba(255, 255, 255, 0.95) !important;
}

body.testing-page .main-header .logo-icon svg {
  opacity: 1 !important;
}

body.testing-page .main-header .logo-section {
  margin-left: 12px;
}

/* White navigation links */
body.testing-page .main-header .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.testing-page .main-header .nav-link:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Crea tu Evento button - white background with black text */
body.testing-page .main-header .btn-create-event {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 8px !important;
  transition: all 0.2s ease;
}

body.testing-page .main-header .btn-create-event:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #000000 !important;
}

/* Acceder al Panel button - transparent with white border */
body.testing-page .main-header .btn-signup {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 8px !important;
}

body.testing-page .main-header .btn-signup:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Mobile menu and search buttons */
body.testing-page .mobile-menu-btn {
  display: none !important; /* Hidden by default (desktop) */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0 !important;
  line-height: 0 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

body.testing-page .mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

body.testing-page .hamburger-line {
  background: rgba(255, 255, 255, 0.9) !important;
}
  stroke: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .search-btn {
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .search-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

body.testing-page .search-btn svg {
  stroke: rgba(255, 255, 255, 0.8) !important;
}

/* Search section overrides */
body.testing-page .search-section {
  background: transparent;
  padding: 20px 0;
}

body.testing-page .search-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

body.testing-page .search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body.testing-page .search-input:focus {
  border-color: rgba(168, 85, 247, 0.7);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body.testing-page .search-input:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

body.testing-page .search-icon {
  color: rgba(255, 255, 255, 0.5);
}

body.testing-page .search-icon path {
  stroke: rgba(255, 255, 255, 0.5);
}

body.testing-page .search-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Show search by default on homepage, including mobile */
@media (max-width: 768px) {
  body.testing-page .mobile-menu-btn {
    display: flex !important; /* Show on mobile */
  }
  
  body.testing-page .search-section {
    display: block !important;
  }
}

/* ⭐ 2. Improved spacing - Category Chips Section */
body.testing-page .categories-section {
  background: transparent;
  padding: 40px 0;
  position: relative;
  z-index: 3;
}

body.testing-page .categories-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

body.testing-page .categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ⭐ 8. Improved category chips - darker, outline border, purple hover */
body.testing-page .category-chip {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: #C7C7D1;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

body.testing-page .category-chip:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(168, 85, 247, 0.6);
  color: #F1F1F5;
  box-shadow: none;
}

body.testing-page .category-chip.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 85, 247, 0.7);
  color: #F1F1F5;
  box-shadow: none;
}

/* ⭐ 9. Subtle gradient dividers */
body.testing-page .categories-section::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  margin-top: 24px;
}

/* Slider section overrides */
body.testing-page .slider-section {
  background: transparent;
  position: relative;
  z-index: 3;
  margin-top: 20px;
  margin-bottom: 16px !important;
  padding-bottom: 0 !important;
}

body.testing-page .slider-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.testing-page .owl-carousel {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ⭐ 2. Improved spacing - Events section */
body.testing-page .events-section {
  background: transparent;
  position: relative;
  z-index: 3;
  padding-top: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 60px;
}

body.testing-page .events-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ⭐ 7. Typography hierarchy - larger titles, smaller subtitles */
body.testing-page .events-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 8px;
}

body.testing-page .events-subtitle {
  color: #9A9AA5;
  font-size: 14px;
  font-weight: 400;
}

body.testing-page .events-header {
  margin-bottom: 32px;
}

/* ⭐ 2. Improved spacing - event cards grid */
body.testing-page .events-list {
  gap: 20px;
}

/* No results message */
body.testing-page .no-results-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  width: 100%;
}

body.testing-page .no-results-message svg {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

body.testing-page .no-results-message h3 {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

body.testing-page .event-card.hidden {
  display: none !important;
}

/* ⭐ 5. Improved hover + ⭐ 6. Softer corners */
body.testing-page .event-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
}

body.testing-page .event-card:hover {
  transform: none;
  box-shadow: none;
}

body.testing-page .event-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}

body.testing-page .event-image img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

body.testing-page .event-card:hover .event-image img {
  transform: none;
}

body.testing-page .event-content {
  position: relative;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ⭐ 3. Softer text colors + ⭐ 7. Typography hierarchy */
body.testing-page .event-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 2px;
  text-shadow: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.testing-page .event-venue {
  color: #9A9AA5;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 2px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.testing-page .event-datetime {
  color: #a78bfa;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
  text-shadow: none;
  line-height: 1.3;
}

body.testing-page .event-price {
  color: #9A9AA5;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  text-shadow: none;
  background: none;
  -webkit-text-fill-color: #9A9AA5;
  filter: none;
  animation: none;
  line-height: 1.3;
}

/* ⭐ 9. Subtle gradient dividers between sections */
body.testing-page .events-section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  margin-bottom: 40px;
}

/* Footer overrides */
body.testing-page .footer {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  position: relative;
  z-index: 3;
  padding: 48px 0;
}

body.testing-page .footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Remove hard borders from footer */
body.testing-page .footer-divider {
  border: none !important;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) !important;
  height: 1px !important;
  margin: 24px 0 !important;
}

body.testing-page .footer-top,
body.testing-page .footer-middle,
body.testing-page .footer-bottom {
  border: none !important;
}

/* Footer credits line */
body.testing-page .footer-credits {
  opacity: 0.4;
  font-size: 12px;
  text-align: center;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 0;
}

body.testing-page .footer-link {
  color: rgba(255, 255, 255, 0.85);
}

body.testing-page .footer-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

body.testing-page .footer-description {
  color: rgba(255, 255, 255, 0.75);
}

body.testing-page .footeropyright {
  color: rgba(255, 255, 255, 0.85);
}

body.testing-page .language-text {
  color: rgba(255, 255, 255, 0.85);
}

body.testing-page .footer-address p {
  color: rgba(255, 255, 255, 0.75);
}

body.testing-page .footer svg path,
body.testing-page .footer svg {
  fill: rgba(255, 255, 255, 0.85) !important;
  stroke: rgba(255, 255, 255, 0.85) !important;
}

/* New footer styles */
body.testing-page .footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.testing-page .footer-nav-title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body.testing-page .footer-right {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

body.testing-page .footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}

body.testing-page .footer-bottom-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

body.testing-page .footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}

body.testing-page .footer-social-link:hover {
  opacity: 1;
}

body.testing-page .footer-social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

body.testing-page .footer-bottom-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

body.testing-page .footer-legal-link {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
  opacity: 0.8;
}

body.testing-page .footer-legal-link:hover {
  opacity: 1;
}

body.testing-page .footer-copyright {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  opacity: 0.8;
}

@media (min-width: 640px) {
  body.testing-page .footer-social-link {
    width: 24px;
    height: 24px;
  }

  body.testing-page .footer-social-link img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  body.testing-page .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  body.testing-page .footer-right {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  body.testing-page .footer-bottom {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  body.testing-page .footer-bottom-right {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  body.testing-page .footer-container {
    padding: 0 3.75rem;
  }
}

body.testing-page .language-icon svg path {
  fill: rgba(255, 255, 255, 0.85) !important;
}

/* Mobile nav overrides - Premium glassmorphism design */
body.testing-page .mobile-nav-overlay {
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000 !important;
}

body.testing-page .mobile-nav {
  background: linear-gradient(to bottom, rgba(20, 20, 35, 0.90), rgba(10, 10, 20, 0.80));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10001 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

body.testing-page .mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-bottom: none;
  margin-bottom: 0;
}

body.testing-page .mobile-nav-links {
  padding: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.testing-page .mobile-nav-link {
  color: #E4E4EC;
  font-size: 18px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  font-weight: 400;
}

body.testing-page .mobile-nav-link:hover {
  color: #A855F7;
  background: rgba(168, 85, 247, 0.15);
  box-shadow: none;
}

body.testing-page .mobile-nav-divider {
  background: rgba(255, 255, 255, 0.05);
  margin: 0;
  height: 1px;
}

body.testing-page .mobile-nav-close {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

body.testing-page .mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
}

body.testing-page .mobile-nav-close svg {
  stroke: rgba(255, 255, 255, 0.85);
}

body.testing-page .mobile-logo svg path {
  fill: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .mobile-nav-actions {
  padding: 0;
  margin: 24px 20px;
}

body.testing-page .mobile-login-btn {
  width: 100%;
  border-radius: 14px;
  padding: 14px;
  font-size: 16px;
  background: linear-gradient(135deg, #3D15CE 0%, #9046EA 100%);
  box-shadow: 0 4px 18px rgba(61, 21, 206, 0.18);
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  border: none;
  transition: all 0.2s ease;
}

body.testing-page .mobile-login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(61, 21, 206, 0.25);
  background: linear-gradient(135deg, #4D25DE 0%, #A050FA 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body.testing-page .categories-wrapper {
    gap: 8px;
  }

  body.testing-page .category-chip {
    padding: 8px 16px;
    font-size: 13px;
  }

  body.testing-page .events-title {
    font-size: 32px;
  }

  body.testing-page .events-section {
    padding: 60px 0;
  }

  body.testing-page .search-container,
  body.testing-page .categories-container,
  body.testing-page .slider-container,
  body.testing-page .events-container {
    padding: 0 16px;
  }

  /* Layout horizontal en mobile - lista vertical */
  body.testing-page .events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  body.testing-page .event-card {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.testing-page .event-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  body.testing-page .event-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    margin-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  body.testing-page .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Override for event page main image container */
  body.testing-page .event-right-column .event-image-container {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: 1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: transparent !important;
  }

  body.testing-page .event-right-column .event-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border: none !important;
    border-radius: 16px !important;
  }

  body.testing-page .event-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  body.testing-page .event-title {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.testing-page .event-venue {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.testing-page .event-datetime {
    color: #a78bfa;
    text-shadow: none;
  }

  body.testing-page .event-datetime,
  body.testing-page .event-venue,
  body.testing-page .event-price {
    font-size: 13px;
    margin-bottom: 2px;
  }

  body.testing-page .event-card:hover {
    transform: none;
    box-shadow: none;
  }
  
  body.testing-page .event-card:active {
    opacity: 1;
  }

  /* No results message mobile */
  body.testing-page .no-results-message {
    padding: 40px 20px;
  }

  body.testing-page .no-results-message svg {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  body.testing-page .no-results-message h3 {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* Logos Carousel Section */
body.testing-page .unete-venues-section {
  margin: 80px 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 3;
}

body.testing-page .unete-venues-title {
  font-size: clamp(20px, 3vw, 28px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

body.testing-page .unete-venues-carousel {
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}

body.testing-page .unete-venues-track {
  display: flex;
  gap: 40px;
  animation: scrollRight 30s linear infinite;
  width: fit-content;
  padding: 0;
}

body.testing-page .unete-venues-track:hover {
  animation-play-state: paused;
}

body.testing-page .unete-venue-logo {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.testing-page .unete-venue-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 8 - 40px * 7)); /* Move exactly one set (8 logos + 7 gaps) */
  }
}

@media (max-width: 768px) {
  body.testing-page .unete-venues-section {
    margin: 60px 0;
  }

  body.testing-page .unete-venues-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  body.testing-page .unete-venue-logo {
    width: 120px;
    height: 65px;
  }

  body.testing-page .unete-venues-track {
    gap: 30px;
    animation: scrollRightMobile 30s linear infinite;
  }
}

@keyframes scrollRightMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-120px * 8 - 30px * 7)); /* Move exactly one set for mobile (8 logos + 7 gaps) */
  }
}

/* ============================================
   Event Testing Page Styles
   ============================================ */

/* Event Hero Section - Hidden, using color gradient instead */
body.testing-page .event-hero-bg {
  display: none !important;
}

body.testing-page .hero-overlay {
  display: none !important;
}

body.testing-page .hero-image {
  display: none !important;
}

/* Event Main Container */
body.testing-page .event-main {
  background: transparent;
  position: relative;
  z-index: 3;
  min-height: 100vh;
}

/* Event Container */
body.testing-page .event-container {
  position: relative;
  z-index: 10;
}

/* Event Content Grid */
body.testing-page .event-content-grid {
  background: transparent;
}

/* Event Title */
body.testing-page .event-title {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.testing-page .event-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Event Meta Items */
body.testing-page .event-meta-item {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .event-meta-item svg {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .event-badge {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .event-countdown {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Share Button */
body.testing-page .share-button {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .share-button:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Event Image Container - Mobile */
@media (max-width: 767px) {
  body.testing-page .event-right-column .event-image-container {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: 1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: transparent !important;
  }

  body.testing-page .event-right-column .event-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border: none !important;
    border-radius: 16px !important;
  }

  body.testing-page .event-right-column {
    order: -1 !important;
    margin-bottom: 0 !important;
  }
}

/* Section Titles */
body.testing-page .section-title {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .section-icon {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Ticket Cards */
body.testing-page .ticket-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .ticket-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(168, 85, 247, 0.5) !important;
  box-shadow: none !important;
}

body.testing-page .ticket-name {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .ticket-description {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.testing-page .ticket-price {
  color: #A855F7 !important;
  text-shadow: none !important;
}

/* Ticket Icon - White */
body.testing-page .ticket-icon {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .ticket-icon svg {
  stroke: rgba(255, 255, 255, 0.9) !important;
  fill: none !important;
}

body.testing-page .ticket-icon svg path {
  stroke: rgba(255, 255, 255, 0.9) !important;
  fill: none !important;
}

/* Quantity Controls - White buttons */
body.testing-page .quantity-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .quantity-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: rgba(255, 255, 255, 1) !important;
}

body.testing-page .quantity-btn:disabled {
  opacity: 0.4 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

body.testing-page .quantity-display {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Buy Tickets Button */
body.testing-page .buy-tickets-btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.testing-page .buy-tickets-btn:hover {
  background: #f9fafb !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

/* Event Details Section */
body.testing-page .event-details-section {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .description-content {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.testing-page .info-card {
  background: transparent;
}

body.testing-page .info-icon {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

body.testing-page .info-content h3 {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .info-content p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* About Section */
body.testing-page .about-details {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .about-item {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .about-item svg {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .about-section .description-content {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Location Section */
body.testing-page .location-section {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .location-address {
  background: rgba(255, 255, 255, 0.05) !important;
}

body.testing-page .location-address p {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .maps-button {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

body.testing-page .maps-button:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

body.testing-page .map-container {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .map-placeholder {
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Organizer Section */
body.testing-page .organizer-card {
  background: transparent;
}

body.testing-page .organizer-avatar {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .organizer-name a {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .organizer-name a:hover {
  color: #A855F7 !important;
  text-shadow: none !important;
}

body.testing-page .instagram-link {
  color: #A855F7 !important;
  text-shadow: none !important;
}

body.testing-page .instagram-link:hover {
  color: #C084FC !important;
  text-shadow: none !important;
}

/* Checkout Section */
/* Tickets Section */
body.testing-page .tickets-section {
  position: relative;
  min-height: 100vh !important;
}

body.testing-page .tickets-section.active {
  display: block !important;
}

/* Tickets Hero Background - Hidden, using color gradient instead */
body.testing-page .tickets-hero-bg {
  display: none !important;
}

body.testing-page .tickets-section-main {
  background: transparent !important;
  position: relative;
  z-index: 3;
  min-height: 100vh !important;
}

/* Ensure tickets and checkout have same background style */
body.testing-page .tickets-container,
body.testing-page .checkout-container {
  background: transparent !important;
}

body.testing-page .tickets-content,
body.testing-page .checkout-content {
  background: transparent !important;
}

body.testing-page .tickets-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

body.testing-page .tickets-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

body.testing-page .tickets-title {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  margin: 1rem 0 !important;
}

/* New Ticket Cards - Testing Theme */
body.testing-page .ticket-card-new {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body.testing-page .ticket-card-new:not(.sold-out):hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

body.testing-page .ticket-name-new {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.testing-page .soldout-badge-new {
  color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .price-amount {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.testing-page .strikethrough-price {
  color: rgba(255, 255, 255, 0.5) !important;
}

body.testing-page .price-fees {
  color: rgba(255, 255, 255, 0.6) !important;
}

body.testing-page .ticket-description-new {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.testing-page #toggleBreakdown {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .timer-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .continue-checkout-btn {
  background: linear-gradient(135deg, #3D15CE 0%, #9046EA 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

body.testing-page .continue-checkout-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #4D25DE 0%, #A050FA 100%) !important;
}

body.testing-page .continue-checkout-btn:disabled {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  cursor: not-allowed !important;
}

/* Checkout Section */
body.testing-page .checkout-section {
  position: relative;
  min-height: 100vh !important;
}

body.testing-page .checkout-section.active {
  display: block !important;
}

/* Checkout Hero Background - Hidden, using color gradient instead */
body.testing-page .checkout-hero-bg {
  display: none !important;
}

body.testing-page .checkout-main {
  background: transparent !important;
  position: relative;
  z-index: 3;
  min-height: 100vh !important;
}

body.testing-page .back-button {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.8) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 1rem !important;
  font-size: 0.95rem !important;
  padding: 0 !important;
  transition: color 0.2s ease !important;
}

body.testing-page .back-button:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.testing-page .back-button svg {
  stroke: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page #ticket-selection-section {
  margin-bottom: 2rem;
}

body.testing-page .form-title {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .form-field label {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .form-field input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .form-field input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

body.testing-page .form-field input:focus {
  border-color: rgba(168, 85, 247, 0.7) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

body.testing-page .warning-notice {
  color: rgba(245, 101, 101, 0.9) !important;
}

body.testing-page .warning-icon {
  color: rgba(245, 101, 101, 0.9) !important;
}

/* Change all black text in checkout to white */
body.testing-page .terms-notice {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .insurance-description {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .insurance-price {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .info-notice {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .price-line {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .price-line span {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Insurance Cards */
body.testing-page .insurance-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .insurance-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(168, 85, 247, 0.5) !important;
  box-shadow: none !important;
}

body.testing-page .insurance-card.selected {
  border-color: rgba(168, 85, 247, 0.7) !important;
  background: rgba(168, 85, 247, 0.15) !important;
  box-shadow: none !important;
}

/* Order Summary */
body.testing-page .order-summary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
}

body.testing-page .summary-title {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .event-name {
  color: rgba(255, 255, 255, 0.9) !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
  -webkit-line-clamp: none !important;
  line-clamp: none !important;
  display: block !important;
}

/* Event Title - Testing Theme */
body.testing-page .event-title-section h1.event-title,
body.testing-page .tables-info .event-title {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
  -webkit-line-clamp: none !important;
  line-clamp: none !important;
  display: block !important;
}

body.testing-page .event-date,
body.testing-page .event-location {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.testing-page .summary-item {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .summary-total {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Continue Payment Button */
body.testing-page .btn-continue-payment {
  background: linear-gradient(135deg, #3D15CE 0%, #9046EA 100%) !important;
  color: #ffffff !important;
}

body.testing-page .btn-continue-payment:hover {
  background: linear-gradient(135deg, #4D25DE 0%, #A050FA 100%) !important;
}

/* Table Cards */
body.testing-page .table-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .table-card:hover {
  border-color: rgba(168, 85, 247, 0.5) !important;
  box-shadow: none !important;
}

body.testing-page .table-card.selected {
  border-color: rgba(168, 85, 247, 0.7) !important;
  box-shadow: none !important;
}

body.testing-page .table-name {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.testing-page .table-detail {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.testing-page .table-description {
  color: rgba(255, 255, 255, 0.6) !important;
}

body.testing-page .table-price {
  color: #A855F7 !important;
  text-shadow: none !important;
}

/* Modal */
body.testing-page .modal-overlay {
  background: rgba(0, 0, 0, 0.8) !important;
}

body.testing-page .modal-content {
  background: rgba(20, 20, 35, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Floating Sticky Timer - Testing Theme - HIDDEN */
body.testing-page .floating-timer {
  display: none !important;
}

body.testing-page .floating-timer.visible {
  display: none !important;
}

body.testing-page .floating-timer .label {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.testing-page .floating-timer .value {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.testing-page .floating-progress {
  background: rgba(255, 255, 255, 0.1) !important;
}

body.testing-page .floating-progress-bar {
  background: linear-gradient(90deg, #3D15CE 0%, #9046EA 100%) !important;
}
