/*
 * TDS 2026 DARK THEME STYLES
 * Modern dark theme for Tusdesafios
 * Based on index2 design system
 */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ================================
   CSS VARIABLES
   ================================ */
:root {
  --bg-base: #151515;
  --bg-surface: #1c1c1c;
  --bg-elevated: #242424;
  --border: #2e2e2e;
  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-muted: #6b6b6b;
  --accent: #ffffff;
  --accent-hover: #e0e0e0;
}

/* ================================
   BASE STYLES
   ================================ */
.tds2026-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================
   TYPOGRAPHY
   ================================ */
.title-display {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.title-section {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.label-caps {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ================================
   TOP BANNER
   ================================ */
.top-banner {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(124, 58, 237, 0.2) 50%, rgba(59, 130, 246, 0.2) 100%);
  border-bottom: 1px solid rgba(168, 85, 247, 0.4);
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #e9d5ff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.top-banner i.bi-megaphone-fill {
  font-size: 1rem;
  color: #d8b4fe;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}
.top-banner-text {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.top-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 0.25rem;
  transition: all 0.2s;
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
}
.top-banner-cta:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25));
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}
.top-banner-cta i {
  font-size: 0.9rem;
}

/* ================================
   NAVBAR
   ================================ */
.navbar-main {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1040;
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}
.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  padding: 0.5rem 0.75rem;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link i { font-size: 1.1rem; }
.brand-text {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-align: center;
}
.brand-text img {
  width: 190px;
  height: auto;
  display: block;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 380px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.15s;
  border-radius: 6px;
}
.nav-dropdown-item:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}
.user-avatar {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border: 2px solid var(--border);
  transition: border-color 0.15s;
}
.user-avatar:hover { border-color: var(--text-secondary); }
.btn-search-nav {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.15s;
}
.btn-search-nav:hover { color: var(--text-primary); }

/* ================================
   BUTTONS
   ================================ */
.btn-cta {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem 1.3rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-cta:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(59, 130, 246, 0.25));
  border-color: rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
}
.btn-filter {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 1.25rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-filter:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.btn-filter span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ================================
   EVENT CARDS
   ================================ */
.event-card {
  background: var(--bg-surface);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.event-card:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border);
}
.event-card:hover .event-img {
  transform: scale(1.03);
}
.event-img-wrap {
  position: relative;
  overflow: hidden;
}
.event-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.event-img-empty {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.5rem;
}
.event-img-default {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.event-img-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}
.event-date {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(21, 21, 21, 0.95);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  text-align: center;
  line-height: 1;
}
.event-date-day {
  font-size: 1.2rem;
  font-weight: 800;
  display: block;
  color: var(--text-primary);
}
.event-date-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Event Badges */
.badge-2026 {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-2026-new {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  border: 1px solid rgba(168, 85, 247, 0.6);
  color: #e9d5ff;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}
.badge-2026-going {
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #6ee7b7;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* Small counter badge variant */
.badge-2026-counter {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  border: 1px solid rgba(168, 85, 247, 0.6);
  color: #e9d5ff;
  box-shadow: 0 2px 6px rgba(168, 85, 247, 0.2);
}

.event-body {
  padding: 0.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-sport {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}
.event-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-primary);
}
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.35rem;
}
.event-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  background: var(--bg-elevated);
  border-radius: 4px;
  color: var(--text-secondary);
}
.event-location {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.event-location i { font-size: 0.75rem; }

/* ================================
   BOTTOM BAR
   ================================ */
.bottom-bar-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  pointer-events: none;
  z-index: 100;
}
.bottom-bar {
  max-width:560px;
  margin: 0 auto;
  background: rgba(21, 21, 21, 0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  pointer-events: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.bottom-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
  flex: 1;
}
.bottom-nav-item:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}
.bottom-nav-item i {
  font-size: 1.15rem;
}
.bottom-nav-item.primary {
  color: var(--text-primary);
  font-weight: 600;
}
.bottom-nav-item.primary:hover {
  background: var(--bg-elevated);
}
.bottom-nav-item.avatar-item {
  flex: 0;
  padding:  ;
}
.bottom-avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border);
}
@media (max-width: 576px) {
  .navbar-main {
    padding: 0.5rem 0.5rem;
  }
  .navbar-left .bi-list {
    font-size: 1.6rem;
  }
  .brand-text img {
    max-width: 130px;
  }
  .nav-link {
    padding: 0.5rem;
  }
  .bottom-bar {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .bottom-bar-wrap {
    padding: 0;
  }
  .bottom-nav-item {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem 0.5rem;
    font-size: 0.7rem;
  }
  .bottom-nav-item i {
    font-size: 1.25rem;
  }
}

/* ================================
   FOOTER
   ================================ */
.footer-main {
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 0rem;
  margin-top: 3rem;
}
.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-link:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.footer-social-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-right: 0.5rem;
}
.footer-social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.15s;
}
.footer-social-link:hover {
  color: var(--text-primary);
}
.footer-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-secondary-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-secondary-link:hover {
  color: var(--text-secondary);
}
.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2rem;
}
.footer-cta {
  text-align: center;
  padding: 3rem 1.5rem 6rem;
}
.footer-cta-box {
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}
.footer-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.footer-cta-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--text-primary);
  color: var(--bg-base);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
}
.footer-cta-btn:hover {
  background: var(--accent-hover);
  color: var(--bg-base);
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-secondary {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ================================
   OFFCANVAS / FILTERS
   ================================ */
.offcanvas-minimal {
  background: var(--bg-base) !important;
  border-left: 1px solid var(--border);
  width: 340px !important;
}
.offcanvas-minimal .list-group {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.75rem;
}
.offcanvas-minimal .list-group:last-of-type {
  border-bottom: none;
}
.offcanvas-minimal .list-group-item.fw-semibold {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.offcanvas-minimal .link-light {
  opacity: 0.85;
  transition: opacity 0.15s;
}
.offcanvas-minimal .link-light:hover {
  opacity: 1;
}
.filter-section {
  margin-bottom: 2rem;
}
.filter-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.filter-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.15s;
}
.filter-chip:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.filter-chip.active {
  background: var(--text-primary);
  color: var(--bg-base);
  border-color: var(--text-primary);
}
.filter-input {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  width: 100%;
}
.filter-input:focus {
  outline: none;
  border-color: var(--accent);
}
.filter-input::placeholder { color: var(--text-muted); }

/* ================================
   NOTIFICATIONS
   ================================ */
.notif-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.15s;
}
.notif-btn:hover { color: var(--text-primary); }
.notif-badge {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
}
.notif-offcanvas {
  background: var(--bg-base) !important;
  border-left: 1px solid var(--border);
  width: 360px !important;
}
.notif-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notif-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.notif-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.notif-item {
  display: block;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}
.notif-item:hover {
  background: var(--bg-surface);
}
.notif-item.unread {
  background: var(--bg-surface);
  border-left: 3px solid var(--text-primary);
}
.notif-item.unread:hover {
  background: var(--bg-elevated);
}
.notif-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.notif-type.carrera {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}
.notif-type.articulo {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
.notif-type.podcast {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}
.notif-type.otro {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}
.notif-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notif-item.unread .notif-text {
  color: var(--text-primary);
  font-weight: 500;
}
.notif-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.notif-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

/* ================================
   USER DRAWER
   ================================ */
.drawer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.drawer-stat {
  background: var(--bg-surface);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}
.drawer-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
}
.drawer-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.drawer-section {
  margin-bottom: 1.5rem;
}
.drawer-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.drawer-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem;
  text-decoration: none;
  display: block;
  transition: all 0.15s;
}
.drawer-card:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
}
.drawer-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.drawer-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.drawer-btn-primary {
  background: var(--text-primary);
  color: var(--bg-base);
}
.drawer-btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-base);
}
.drawer-btn-secondary {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.drawer-btn-secondary:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.drawer-btn-ai {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
}
.drawer-btn-ai:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(59, 130, 246, 0.25));
  border-color: rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
}
.drawer-podcast-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}
.drawer-quick-links {
  display: flex;
  gap: 0.5rem;
}
.drawer-quick-link {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.15s;
}
.drawer-quick-link:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.drawer-quick-link i {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

/* ================================
   HERO SEARCH (INDEX2)
   ================================ */
.hero-search {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-tagline {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.hero-counter {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.hero-counter span {
  color: var(--text-primary);
  font-weight: 700;
}
.search-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.search-input-wrap {
  position: relative;
  flex: 1;
}
.search-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 6rem 1rem 3rem;
  font-size: 1rem;
  color: var(--text-primary);
  width: 100%;
  transition: all 0.2s;
}
.search-bar::placeholder { color: var(--text-muted); }
.search-bar:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-primary);
  color: var(--bg-base);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
}
.search-btn:hover { background: var(--accent-hover); }

/* ================================
   SPORT PILLS
   ================================ */
.sport-pills {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.sport-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.15s;
}
.sport-pill:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.sport-pill.active {
  background: var(--text-primary);
  color: var(--bg-base);
  border-color: var(--text-primary);
}
.sport-pill.active .badge-2026-counter {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border-color: #6d28d9;
  color: white;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.3);
}

/* Sport pill as checkbox */
.btn-check:checked + .sport-pill {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
  font-weight: 600;
}
.btn-check:checked + .sport-pill:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  border-color: rgba(168, 85, 247, 0.6);
  color: #d8b4fe;
}

/* ================================
   EVENTS GRID
   ================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1200px) { .events-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 992px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .events-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* ================================
   MONTH DIVIDER
   ================================ */
.month-divider {
  margin: 2.5rem 0 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.month-divider:first-of-type { margin-top: 0; }
.month-name {
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: capitalize;
}
.month-count {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ================================
   PODCAST SECTION
   ================================ */
.podcast-section {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.podcast-section-grid {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.podcast-section-grid iframe {
  flex: 1;
  min-height: 352px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.section-link {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}
.section-link:hover { color: var(--text-primary); }
.podcast-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.podcast-grid::-webkit-scrollbar { display: none; }
.podcast-item {
  flex: 0 0 auto;
  min-width: 200px;
  max-width: 240px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}
.podcast-item:hover .podcast-cover {
  opacity: 0.85;
}
.podcast-cover {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.2s;
}
.podcast-info {
  min-width: 0;
  flex: 1;
}
.podcast-meta {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.podcast-title {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-secondary);
  margin-bottom: 0.15rem;
}
.podcast-duration {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.podcast-duration i { font-size: 0.65rem; }

/* ================================
   MARQUEE
   ================================ */
.marquee-section {
  margin-bottom: 2rem;
}
.marquee-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.marquee-label i { color: white; }
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  animation: scroll 45s linear infinite;
}
.marquee-content:hover { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap;
  padding: 0 0rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}
.marquee-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.marquee-item a:hover { color: var(--text-primary); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ================================
   INDEX2 WRAPPER
   ================================ */
.index2-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ================================
   ADD EVENT CTA
   ================================ */
.add-event-cta {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
}

/* ================================
   ARTICLES GRID (INDEX2)
   ================================ */
.articles-grid-2026 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.article-card-2026 {
  background: var(--bg-surface);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.article-card-2026:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border);
}
.article-card-2026:hover .article-img {
  transform: scale(1.03);
}
.article-img-wrap {
  position: relative;
  overflow: hidden;
}
.article-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.article-img-empty {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2rem;
}
.article-date {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(21, 21, 21, 0.95);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  text-align: center;
  line-height: 1;
}
.article-date-day {
  font-size: 1.2rem;
  font-weight: 800;
  display: block;
  color: var(--text-primary);
}
.article-date-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.article-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
}
.ad-section-2026 {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.pagination-wrapper {
  text-align: center;
  margin: 3rem 0;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .articles-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .articles-grid-2026 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ================================
   HOW-TO 2 PAGE
   ================================ */
.howto2-content {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.howto2-intro {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.howto2-intro strong {
  color: var(--text-primary);
}
.howto2-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: 12px;
  background: var(--bg-surface);
}
.howto2-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}
.howto2-steps {
  margin-bottom: 3rem;
}
.howto2-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.15s;
}
.howto2-step:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
}
.howto2-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #c084fc;
}
.howto2-step-content {
  flex: 1;
}
.howto2-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.howto2-step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}
.howto2-step-content strong {
  color: var(--text-primary);
}
.howto2-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.15s;
}
.howto2-link:hover {
  color: #f3f4f6;
  text-decoration: underline;
}
.howto2-cta {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 16px;
  text-align: center;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
}
.howto2-cta h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}
.howto2-screenshot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.howto2-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 576px) {
  .howto2-step {
    flex-direction: column;
    gap: 1rem;
  }
  .howto2-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ================================
   SHOW2 WRAPPER & LAYOUT
   ================================ */
.show2-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  padding-bottom: 20px;
  -webkit-font-smoothing: antialiased;
}
.show2-wrapper a {
  color: var(--text-secondary);
}
.show2-wrapper a:hover {
  color: var(--text-primary);
}
.show2-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.show2-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.show2-image {
  flex: 0 0 320px;
  max-width: 320px;
  position: sticky;
  top: 5rem;
  align-self: flex-start;
}
.show2-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.show2-details {
  flex: 1;
  min-width: 0;
}

/* ================================
   SHOW2 TYPOGRAPHY & META
   ================================ */
.show2-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  color: var(--text-primary);
}
.show2-presenter {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.show2-presenter a {
  color: var(--text-secondary);
  text-decoration: none;
}
.show2-presenter a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}
.show2-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.show2-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.show2-description a {
  color: #d1d5db;
}
.show2-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.show2-meta-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.1;
  border: 1px solid var(--border);
}
.show2-meta-icon .day-name {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.show2-meta-icon .day-num {
  font-size: 1rem;
  font-weight: 700;
  display: block;
}
.show2-meta-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.show2-meta-text strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.95rem;
}

/* ================================
   SHOW2 TAGS & LINKS
   ================================ */
.show2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.show2-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
}
.show2-tag:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}
.show2-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.show2-link-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.15s;
}
.show2-link-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-muted);
}

/* ================================
   SHOW2 BUTTONS
   ================================ */
.show2-left-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  width: 100%;
}
.show2-left-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.4rem;
  width: 100%;
  transition: all 0.15s;
  text-align: center;
}
.show2-left-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.a2a_dd.show2-left-btn {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.15) !important;
  padding: 0.5rem 1rem !important;
  display: flex !important;
  align-items: center !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  min-height: 38px;
}
.a2a_dd.show2-left-btn:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(59, 130, 246, 0.12));
  border-color: rgba(168, 85, 247, 0.25) !important;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.15);
}
.show2-invite-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.4rem;
  width: 100%;
  transition: all 0.15s;
}
.show2-invite-btn:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

/* ================================
   SHOW2 CTA BLOCK
   ================================ */
.show2-cta-block {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.show2-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc !important;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.show2-cta-btn:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(59, 130, 246, 0.25));
  border-color: rgba(168, 85, 247, 0.5);
  color: #d8b4fe !important;
}
.show2-cta-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.show2-cta-btn-secondary:hover {
  background: var(--bg-base);
  border-color: var(--text-muted);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.show2-cta-btn-secondary i {
  font-size: 1.1rem;
}
.show2-cta-going {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85rem 1.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.show2-cta-subtext {
  font-size: 0.8rem;
  font-weight: 400;
}
.show2-cta-subtext a {
  color: #34d399;
  text-decoration: underline;
}
.show2-cta-social {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}
.show2-cta-social-title {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
.show2-attendee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.show2-attendee:hover {
  color: var(--text-primary);
}
.show2-attendee .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.bottom-nav-item.cta {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  font-weight: 600;
  flex: 1;
}
.bottom-nav-item.cta:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(59, 130, 246, 0.25));
  border-color: rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
}
.bottom-nav-item.cta.going-active {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.bottom-nav-item.cta.going-active:hover {
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
}

/* ================================
   SHOW2 USER & SIGNUP CARDS
   ================================ */
.show2-user-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 0.75rem;
  width: 100%;
}
.show2-user-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.show2-user-header:hover {
  color: var(--text-primary);
}
.show2-user-header img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.show2-user-name {
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.2;
}
.show2-user-name small {
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  font-size: 0.75rem;
}
.show2-user-stat {
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.3rem 0;
  border-top: 1px solid var(--border);
}
.show2-user-stat a {
  color: var(--text-secondary);
  text-decoration: none;
}
.show2-user-stat a:hover {
  color: var(--text-primary);
}
.show2-user-next {
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding: 0.3rem 0;
}
.show2-user-next strong {
  color: var(--text-primary);
  display: block;
}
.show2-signup-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 0.75rem;
  text-align: center;
  width: 100%;
}
.show2-signup-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
.show2-signup-card a {
  display: block;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  padding: 0.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s;
}
.show2-signup-card a:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(59, 130, 246, 0.25));
  border-color: rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
}

/* ================================
   SHOW2 AVATARS & VIDEO
   ================================ */
.show2-avatars {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}
.show2-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-base);
  margin-left: -10px;
}
.show2-avatars .avatar:first-child {
  margin-left: 0;
}
.show2-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 1.5rem;
  border-radius: 12px;
}
.show2-video iframe, .show2-video object, .show2-video embed {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ================================
   SHOW2 TIPS & VIEWS
   ================================ */
.show2-tips {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.show2-views {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  color: #a855f7;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0;
}
.show2-views i {
  font-size: 0.85rem;
}

/* Trend badge (views trending up/down) */
.event-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  border: 1px solid;
}
.event-trend--up {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}
.event-trend--down {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
}

/* ================================
   SHOW2 MOBILE BUTTONS
   ================================ */
.show2-mobile-buttons {
  display: none;
}

/* ================================
   SHOW2 RELATED CONTENT
   ================================ */
.show2-related {
  margin-top: 3rem;
  padding-bottom: 1rem;
}
.show2-related-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.show2-related-title i {
  color: var(--text-muted);
}
.show2-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.show2-related-card {
  background: var(--bg-surface);
  border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.show2-related-card:hover {
  background: var(--bg-elevated);
  border-color: var(--border);
  color: var(--text-primary);
}
.show2-related-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.show2-related-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-elevated);
  transition: transform 0.35s ease;
}
.show2-related-card:hover .show2-related-card-img {
  transform: scale(1.03);
}
.show2-related-card-date {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(21, 21, 21, 0.95);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  text-align: center;
  line-height: 1;
}
.show2-related-card-date-day {
  font-size: 1.2rem;
  font-weight: 800;
  display: block;
  color: var(--text-primary);
}
.show2-related-card-date-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.show2-related-card-body {
  padding: 0.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.show2-related-card-sport {
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.show2-related-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-primary);
}
.show2-related-card-meta {
  margin-top: auto;
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.show2-related-card-meta i {
  font-size: 0.75rem;
}
.show2-articles-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.show2-article-item {
  display: flex;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 0.6rem;
  background: var(--bg-surface);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.15s;
}
.show2-article-item:hover {
  background: var(--bg-elevated);
  border-color: var(--border);
  color: var(--text-primary);
}
.show2-article-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--bg-elevated);
}
.show2-article-info {
  flex: 1;
  min-width: 0;
}
.show2-article-title {
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.show2-article-date {
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-top: 0.25rem;
}
.show2-related-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.show2-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ================================
   SHOW2 PODCAST & ADS
   ================================ */
.show2-podcast {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}
.show2-podcast-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.show2-podcast-title i {
  color: #1db954;
}
.show2-podcast iframe {
  border-radius: 12px;
  max-width: 100%;
}
.show2-ad {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.show2-ad-label {
  color: var(--text-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .nav-dropdown-menu { display: none; }
  .bottom-info { display: none; }
  .navbar-main {
    padding: 0.75rem 0.5rem;
    gap: 0.75rem;
  }
  .navbar-right {
    gap: 0.35rem;
  }
  .navbar-left .bi-list {
    font-size: 1.5rem;
  }
  .brand-text img {
    max-width: 150px;
    width: 100%;
    height: auto;
  }
  .hero-search { padding: 1.5rem 1rem 1rem; }
  .hero-tagline { font-size: 1.35rem; }
  .month-name { font-size: 1.35rem; }
  .podcast-item {
    min-width: 180px;
  }
  .podcast-cover {
    width: 100px;
    height: 100px;
  }
  .show2-content {
    flex-direction: column;
  }
  .show2-image {
    flex: none;
    max-width: 100%;
    width: 100%;
    position: static;
  }
  .show2-image .show2-left-buttons {
    display: none;
  }
  .show2-image .show2-user-card,
  .show2-image .show2-signup-card {
    display: none;
  }
  .show2-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .show2-title {
    font-size: 1.4rem;
  }
  .show2-extras {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .show2-related-cols {
    grid-template-columns: 1fr;
  }
}

/* ================================
   MYEVENTS2 PAGE
   ================================ */

/* Profile Header */
.myevents2-profile {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.myevents2-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--border);
  transition: border-color 0.15s;
  margin-top: 0.25rem;
}
.myevents2-avatar:hover {
  border-color: rgba(168, 85, 247, 0.5);
}
.myevents2-profile-info {
  flex: 1;
}
.myevents2-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.15s;
}
.myevents2-link:hover {
  color: #f3f4f6;
  text-decoration: underline;
}

/* Action Buttons */
.myevents2-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.btn-cta-secondary {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.3rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-cta-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
  color: var(--text-primary);
}

/* Main Grid Layout */
.myevents2-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  margin-bottom: 3rem;
}
.myevents2-main {
  min-width: 0;
}
.myevents2-sidebar {
  position: sticky;
  top: 5rem;
  align-self: start;
}

/* Month Divider */
.myevents2-month-divider {
  margin: 2.5rem 0 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.myevents2-month-divider:first-of-type {
  margin-top: 0;
}

/* Event Card */
.myevents2-event-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.15s;
}
.myevents2-event-card:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
}
.myevents2-event-link {
  text-decoration: none;
  display: block;
  margin-bottom: 1.25rem;
}
.myevents2-event-sport {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.myevents2-event-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.myevents2-event-link:hover .myevents2-event-title {
  color: #93c5fd;
}
.myevents2-event-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Event Sections */
.myevents2-section {
  margin-bottom: 1.25rem;
}
.myevents2-section:last-child {
  margin-bottom: 0;
}
.myevents2-section-title {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Chips */
.myevents2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.myevents2-chip {
  background: var(--bg-base);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
}
.myevents2-chip:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
  color: var(--text-primary);
}
.myevents2-chip-active {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
}
.myevents2-chip-active:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(59, 130, 246, 0.25));
  border-color: rgba(168, 85, 247, 0.7);
  color: #d8b4fe;
}

/* Result Buttons */
.myevents2-result-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
}
.myevents2-result-btn-add {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.15));
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}
.myevents2-result-btn-add:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(22, 163, 74, 0.25));
  border-color: rgba(34, 197, 94, 0.5);
  color: #86efac;
}
.myevents2-result-btn-saved {
  background: var(--bg-base);
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.myevents2-result-btn-saved:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
  color: var(--text-primary);
}
.myevents2-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  background: none;
}
.myevents2-remove-btn:hover {
  color: #ef4444;
}
.myevents2-remove-btn i {
  font-size: 0.9rem;
}
.myevents2-section-right {
  display: flex;
  justify-content: flex-end;
}

/* Time Form */
.myevents2-time-form {
  margin-top: 1rem;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}
.myevents2-time-inputs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.myevents2-time-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.myevents2-time-input {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.15s;
}
.myevents2-time-input:focus {
  outline: none;
  border-color: rgba(168, 85, 247, 0.5);
  background: var(--bg-elevated);
}
.myevents2-time-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.myevents2-time-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* AI Card */
.myevents2-ai-card {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.myevents2-ai-title {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.myevents2-ai-title img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.myevents2-ai-title i {
  font-size: 0.85rem;
  opacity: 0.6;
}
.myevents2-ai-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.myevents2-ai-content p {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
}
.myevents2-ai-content ul {
  padding-left: 0;
  margin-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 0;
  list-style: none;
}
.myevents2-ai-content ul li {
  padding-left: 1.75rem;
  margin-left: 0;
  margin-bottom: 0.65rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}
.myevents2-ai-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: 700;
  font-size: 1.1rem;
}
.myevents2-ai-content ul li:first-child {
  color: var(--text-primary);
  font-weight: 500;
}
.myevents2-ai-content ul li:nth-child(n+2) {
  display: none;
}
.myevents2-ai-content strong,
.myevents2-ai-content b {
  color: var(--text-primary);
  font-weight: 600;
}
.myevents2-ai-date {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: right;
  margin-top: 1rem;
  font-style: italic;
}

/* AI Modal */
.myevents2-ai-modal {
  color: var(--text-secondary);
  line-height: 1.7;
}
.myevents2-ai-modal p {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
}
.myevents2-ai-modal ul {
  padding-left: 0;
  margin-left: 0;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  list-style: none;
}
.myevents2-ai-modal ul li {
  padding-left: 2rem;
  margin-left: 0;
  margin-bottom: 1rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
.myevents2-ai-modal ul li::before {
  content: '●';
  position: absolute;
  left: 0.5rem;
  color: #a855f7;
  font-size: 0.8rem;
  top: 0.35rem;
}
.myevents2-ai-modal ul li:first-child {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  padding-left: 0;
}
.myevents2-ai-modal ul li:first-child::before {
  display: none;
}
.myevents2-ai-modal ul li:nth-child(n+2) {
  display: list-item;
}
.myevents2-ai-modal strong,
.myevents2-ai-modal b {
  color: var(--text-primary);
  font-weight: 600;
}
.myevents2-ai-modal h3,
.myevents2-ai-modal h4,
.myevents2-ai-modal h5 {
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.myevents2-ai-modal h3 {
  font-size: 1.15rem;
}
.myevents2-ai-modal h4 {
  font-size: 1.05rem;
}
.myevents2-ai-modal h5 {
  font-size: 0.95rem;
}

/* Strava Card */
.myevents2-strava-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.myevents2-strava-card h6 {
  color: var(--text-primary);
  font-weight: 600;
}

/* Share Card */
.myevents2-share-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}
.myevents2-share-card h6 {
  color: var(--text-primary);
  font-weight: 600;
}
.myevents2-share-input {
  background: var(--bg-base);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  transition: all 0.15s;
}
.myevents2-share-input:focus {
  outline: none;
  border-color: rgba(168, 85, 247, 0.5);
  background: var(--bg-elevated);
}

/* Empty State */
.myevents2-empty {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-secondary);
}
.myevents2-empty i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}
.myevents2-empty h5 {
  color: var(--text-primary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .myevents2-grid {
    grid-template-columns: 1fr;
  }
  .myevents2-sidebar {
    position: static;
  }
  .myevents2-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .myevents2-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .myevents2-avatar {
    width: 44px;
    height: 44px;
  }
  .myevents2-event-card {
    padding: 1rem;
  }
  .myevents2-event-title {
    font-size: 1.1rem;
  }
  .myevents2-time-inputs {
    flex-direction: column;
  }
  .myevents2-time-input-group {
    width: 100%;
  }
  .myevents2-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-cta,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .navbar-right .btn-cta {
    width: auto;
    padding: 0.65rem 0.65rem;
    font-size: 0.85rem;
  }
}

/* ================================
   DEVISE AUTHENTICATION FORMS
   ================================ */

/* Container */
.devise-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.devise-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.devise-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.devise-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.devise-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

/* Form Inputs */
.devise-input {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--text-primary);
  width: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: all 0.2s;
}

.devise-input::placeholder {
  color: var(--text-muted);
}

.devise-input:focus {
  outline: none;
  border-color: rgba(168, 85, 247, 0.5);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

/* Checkbox */
.devise-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.devise-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-base);
  cursor: pointer;
}

.devise-checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Submit Button */
.devise-submit {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-top: 1.5rem;
}

.devise-submit:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  border-color: rgba(168, 85, 247, 0.6);
  color: #d8b4fe;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

/* OAuth Button */
.devise-oauth-btn {
  background: var(--bg-base);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.devise-oauth-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Divider */
.devise-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.5rem 0;
  position: relative;
}

.devise-divider::before,
.devise-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 80px);
  height: 1px;
  background: var(--border);
}

.devise-divider::before { left: 0; }
.devise-divider::after { right: 0; }

/* Links */
.devise-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.devise-link:hover {
  color: #f3f4f6;
  text-decoration: underline;
}

.devise-links-section {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.devise-links-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 576px) {
  .devise-wrapper {
    padding: 1.5rem 1rem 3rem;
  }

  .devise-title {
    font-size: 1.5rem;
  }

  .devise-card {
    padding: 1.5rem;
  }

  .devise-divider::before,
  .devise-divider::after {
    width: calc(50% - 60px);
  }
}
