/* Import Google Fonts for a premium, athletic street dance aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;800;900&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

:root {
  --color-bg-dark: #070708;
  --color-bg-panel: rgba(15, 15, 18, 0.92); /* Higher opacity for crisper text contrast */
  --color-bg-panel-hover: rgba(25, 25, 30, 0.96);
  --color-primary: #e31837; /* TYM Brand Red */
  --color-primary-glow: rgba(227, 24, 55, 0.2); /* Toned down to reduce blurriness from text glows */
  --color-text-main: #ffffff; /* Pure white for maximum contrast */
  --color-text-muted: #d5d8db; /* High-contrast bright gray for extreme legibility */
  --color-border: rgba(227, 24, 55, 0.25);
  --color-border-glow: rgba(227, 24, 55, 0.45);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  height: 100vh;
  overflow: hidden;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Background Setup with the uploaded image */
.presentation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.4) contrast(1.1);
  transition: var(--transition-smooth);
}

.presentation-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(7, 7, 8, 0.95) 90%),
              linear-gradient(to bottom, rgba(7, 7, 8, 0.3) 0%, rgba(7, 7, 8, 0.8) 100%);
  z-index: 2;
}

/* Slide Container */
.presentation-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Top Progress Bar */
.progress-bar-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), #ff4d6d);
  box-shadow: 0 0 10px var(--color-primary-glow);
  transition: width 0.3s ease;
}

/* Global Navigation Header */
.presentation-header {
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  font-weight: 900;
  color: var(--color-text-main);
}

.header-logo span {
  color: var(--color-primary);
  text-shadow: 0 0 8px var(--color-primary-glow);
}

.header-divider {
  width: 1px;
  height: 12px;
  background-color: var(--color-border);
}

.header-title {
  color: var(--color-text-muted);
}

.header-right {
  color: var(--color-text-muted);
}

/* Slides Wrapper */
.slides-wrapper {
  position: relative;
  width: 90vw;
  height: 80vh;
  max-width: 1400px;
  max-height: 800px;
  perspective: 1000px;
}

/* Slide Base Style */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateZ(-100px) rotateX(5deg);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}

/* Active Slide */
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateZ(0) rotateX(0);
  z-index: 20;
}

/* Slide Left / Right Offset for Transitions */
.slide.prev-slide {
  transform: translateX(-100%) translateZ(-150px) rotateY(-10deg);
}

.slide.next-slide {
  transform: translateX(100%) translateZ(-150px) rotateY(10deg);
}

/* Glassmorphism Panel Layout */
.slide-panel {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
              inset 0 0 30px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.slide.active .slide-panel {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(227, 24, 55, 0.05),
              inset 0 0 30px rgba(255, 255, 255, 0.02);
}

/* Slide Header */
.slide-header {
  margin-bottom: 24px;
}

.slide-category {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-category::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
  border-radius: 50%;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Slide Body / Content Layouts */
.slide-body {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Title Slide Style (Slide 1) */
.title-slide-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.title-badge {
  background: rgba(227, 24, 55, 0.15);
  border: 1px solid var(--color-primary);
  color: var(--color-text-main);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(227, 24, 55, 0.2);
  animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
  0% { box-shadow: 0 0 10px rgba(227, 24, 55, 0.15); border-color: rgba(227, 24, 55, 0.6); }
  100% { box-shadow: 0 0 20px rgba(227, 24, 55, 0.4); border-color: rgba(227, 24, 55, 1); }
}

.title-main {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.title-sub {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.8rem;
  letter-spacing: 10px;
  margin-top: -10px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(227, 24, 55, 0.4);
}

.title-meta-grid {
  display: flex;
  gap: 60px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.title-meta-item {
  text-align: left;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.meta-value.highlight {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(227, 24, 55, 0.2);
}

/* Two-Column Layouts */
.grid-split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 40px;
}

.split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Card Styling */
.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-border);
  transform: translateY(-4px);
}

.highlight-card-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.highlight-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Standard Presentation Table styling */
.table-container {
  width: 100%;
  overflow-y: auto;
  max-height: 100%;
  padding-right: 8px;
}

/* Custom scrollbar for table container */
.table-container::-webkit-scrollbar {
  width: 6px;
}

.table-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb {
  background: rgba(227, 24, 55, 0.3);
  border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(227, 24, 55, 0.6);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 0;
  background: #0f0f12; /* Match backdrop card background to cover background lines */
  z-index: 2;
}

tr {
  transition: var(--transition-fast);
}

tbody tr:hover {
  background-color: rgba(227, 24, 55, 0.04);
}

tbody tr:hover td {
  color: #ffffff;
}

td {
  font-size: 1.02rem;
  color: var(--color-text-main);
  font-weight: 500; /* Medium weight for sharper text rendering */
  transition: var(--transition-fast);
}

.number-col {
  font-family: var(--font-mono);
  font-weight: 700;
  text-align: right;
  color: #ffffff;
  font-size: 1.08rem;
  letter-spacing: -0.5px;
}

td.number-col.highlight-text {
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(227, 24, 55, 0.3);
  font-weight: 800;
}

/* Bullet list styled for presentation */
.present-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.present-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500; /* Medium weight for sharper rendering */
}

.present-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--color-primary);
  box-shadow: 0 0 5px var(--color-primary);
}

/* Total Box style */
.total-box {
  background: linear-gradient(135deg, rgba(227, 24, 55, 0.1), rgba(227, 24, 55, 0.03));
  border: 1px dashed var(--color-border-glow);
  padding: 24px;
  border-radius: 16px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 15px rgba(227, 24, 55, 0.05);
}

.total-box-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.total-box-value {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 0 15px var(--color-primary-glow);
}

/* Slide 3 Layout (Summary Cards) */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 24px;
}

.summary-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.summary-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.summary-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

.summary-card:hover::after {
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.summary-card.highlighted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(227, 24, 55, 0.05) 100%);
  border-color: var(--color-border);
}

.summary-card.highlighted::after {
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.summary-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.summary-value {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: auto;
}

.summary-card.highlighted .summary-value {
  color: var(--color-primary);
  text-shadow: 0 0 15px var(--color-primary-glow);
}

.summary-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* Slide 5 Cast Layout */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 20px;
}

.cast-section-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 380px;
  transition: var(--transition-smooth);
}

.cast-section-card:hover {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.04);
}

.cast-section-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 12px;
  text-align: center;
}

.cast-section-list {
  list-style: none;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.cast-section-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
  padding-bottom: 6px;
}

.cast-section-list li span:last-child {
  font-family: var(--font-mono);
  color: var(--color-text-muted);
}

.cast-section-total {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cast-section-total-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cast-section-total-value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

/* Slide 12 - Chart Layout */
.chart-container-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr; /* Give more width to the legend for 2-column display */
  width: 100%;
  height: 100%;
  gap: 40px;
  align-items: center;
}

.chart-visual-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
}

.donut-chart-svg {
  transform: rotate(-90deg);
  width: 300px;
  height: 300px;
}

.donut-segment {
  fill: none;
  stroke-width: 18;
  cursor: pointer;
  transition: stroke-width 0.3s ease, filter 0.3s ease;
}

.donut-segment:hover {
  stroke-width: 24;
  filter: drop-shadow(0 0 12px var(--color-primary-glow));
}

.donut-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(15, 15, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 5;
}

.donut-center-val {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 4px;
}

.donut-center-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Chart Legend Styling */
.chart-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2-column grid layout */
  gap: 8px 12px;
  max-height: none; /* Let all items display fully without scrolling */
  overflow-y: visible;
  padding-right: 0;
}

.chart-legend::-webkit-scrollbar {
  width: 4px;
}

.chart-legend::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.legend-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-fast);
}

.legend-item:hover, .legend-item.active {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(227, 24, 55, 0.3);
}

.legend-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-name {
  font-size: 0.82rem; /* Slightly smaller for 2-column grid fit */
  font-weight: 500;
}

.legend-value-group {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.legend-amt {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
}

.legend-pct {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* Footer / Control Elements */
.presentation-footer {
  position: absolute;
  bottom: 24px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}

.footer-left {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
}

.nav-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0 15px var(--color-primary-glow);
  transform: scale(1.05);
}

.nav-btn:active {
  transform: scale(0.95);
}

.slide-counter {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text-main);
}

.slide-counter span {
  color: var(--color-primary);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.control-icon-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 8px;
  font-size: 1.1rem;
  border-radius: 6px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-icon-btn:hover {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.03);
}

/* Responsive & Fullscreen Adjustments */
@media (max-width: 1024px) {
  .slide-panel {
    padding: 32px;
  }
  .slide-title {
    font-size: 1.8rem;
  }
  .title-main {
    font-size: 3.2rem;
  }
  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
    overflow-y: auto;
    max-height: 380px;
    padding-right: 8px;
  }
  .cast-section-card {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .grid-split-2 {
    grid-template-columns: 1fr;
  }
  .split-right {
    display: none; /* Hide visual column on very small screens */
  }
  .title-meta-grid {
    flex-direction: column;
    gap: 12px;
  }
  .chart-container-split {
    grid-template-columns: 1fr;
  }
  .chart-visual-wrapper {
    height: 200px;
  }
  .donut-chart-svg {
    width: 180px;
    height: 180px;
  }
  .donut-center {
    width: 110px;
    height: 110px;
  }
  .donut-center-val {
    font-size: 0.9rem;
  }
}

/* Venue Gallery Styling for Slide 4 */
.venue-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
}

.venue-main-img-container {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #000;
}

.venue-main-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.venue-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

.venue-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.venue-thumb {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  opacity: 0.6;
}

.venue-thumb:hover, .venue-thumb.active {
  opacity: 1;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary-glow);
}

@media print {
  @page {
    size: A4 landscape;
    margin: 0;
  }
  
  body {
    overflow: visible !important;
    height: auto !important;
    background-color: var(--color-bg-dark) !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  
  .presentation-bg {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -100 !important;
    display: block !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  
  .presentation-container {
    height: auto !important;
    overflow: visible !important;
    display: block !important;
  }
  
  .presentation-header,
  .presentation-footer,
  .progress-bar-container {
    display: none !important;
  }
  
  .slides-wrapper {
    width: 100vw !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    perspective: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .slide {
    position: relative !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100vw !important;
    height: 100vh !important;
    page-break-after: always !important;
    break-after: page !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .slide-panel {
    border: none !important;
    border-radius: 0 !important;
    background: var(--color-bg-panel) !important;
    width: 100vw !important;
    height: 100vh !important;
    padding: 40px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  
  /* Make sure chart and tables display correctly in print */
  .donut-segment {
    transition: none !important;
  }
  
  .table-container {
    overflow-y: visible !important;
    max-height: none !important;
  }
  
  th {
    position: static !important;
    background: #0f0f12 !important;
  }
}

/* Export Mode Overrides to disable transitions and filters during screenshot taking */
body.export-mode,
body.export-mode * {
  transition: none !important;
  animation: none !important;
  text-shadow: none !important; /* Remove shadows to make text sharper in screenshots */
}

body.export-mode .slide {
  transition: none !important;
  transform: none !important;
}

body.export-mode .slide-panel {
  background: rgba(12, 12, 15, 0.96) !important; /* High contrast solid background */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

body.export-mode .donut-segment {
  transition: none !important;
}

/* Process Timeline & Image Placeholder Styles */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-fast);
}

.timeline-step:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(227, 24, 55, 0.15);
  transform: translateX(4px);
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 0 10px var(--color-primary-glow);
  flex-shrink: 0;
}

.step-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.step-subtext {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-left: auto;
}

.image-placeholder-card {
  width: 100%;
  height: 380px;
  border: 2px dashed rgba(227, 24, 55, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  gap: 16px;
  transition: var(--transition-smooth);
  padding: 30px;
  text-align: center;
}

.image-placeholder-card:hover {
  border-color: var(--color-primary);
  background: rgba(227, 24, 55, 0.04);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(227, 24, 55, 0.05);
}

.placeholder-icon {
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.6;
  animation: float-pulse 3s infinite ease-in-out;
}

@keyframes float-pulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-6px) scale(1.05); opacity: 0.8; }
}

.placeholder-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.placeholder-desc {
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.5;
}

/* Registration Showcase Gallery */
.registration-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 380px;
}

.main-preview-container {
  flex-grow: 1;
  height: 270px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: rgba(15, 15, 18, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.main-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease-in-out, transform 0.3s ease;
}

.main-preview-container:hover img {
  transform: scale(1.02);
}

.thumbnail-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  height: 80px;
}

.thumb-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.thumb-item img {
  width: 100%;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.thumb-item span {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  transition: color 0.2s ease;
}

.thumb-item:hover {
  background: rgba(227, 24, 55, 0.04);
  border-color: rgba(227, 24, 55, 0.4);
  transform: translateY(-2px);
}

.thumb-item:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

.thumb-item.active {
  background: rgba(227, 24, 55, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 12px rgba(227, 24, 55, 0.15);
  transform: translateY(-2px);
}

.thumb-item.active img {
  opacity: 1;
}

.thumb-item.active span {
  color: #ffffff;
  font-weight: 700;
}

