/* ========== SIDEBAR ========== */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: rgba(0, 191, 255, 0.1);
  color: #EAEAEA;
  padding-top: 80px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.6);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 120;
}
#sidebar.active {
  transform: translateX(0);
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar ul li a {
  display: block;
  padding: 1rem 1rem 1rem 1.25rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, border-left 0.2s;
  border-left: 4px solid transparent;
}
#sidebar ul li a:hover {
  color: #FFFFFF;
  background: #000000;
  border-left: 4px solid #1C1C1C;
  box-shadow: inset 4px 0 0 #1C1C1C;
}
#sidebar ul li a.active {
  color: #FFFFFF;
  background: #000000;
  border-left: 4px solid #1C1C1C;
}

/* ========== CONTENT ========== */
.content {
  margin-left: 240px;
  margin-right: 20px;
  padding: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background: #111111;
  color: #EAEAEA;
  min-height: 100vh;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  opacity: 0.95;
  
}
section {
  min-height: 50vh;
  border-radius: 12px;
  margin-bottom: 40px;
}
section > h1 {
  border-bottom: 3px solid #FFFFFF;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: #FF10F0;
  text-shadow:
    0 0 6px #FF10F0,
    0 0 12px #FF40F8,
    0 0 24px #FF6CFB,
    0 0 36px #FF8DFD;
  letter-spacing: 1px;
  animation: neonPulse 2.5s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow:
      0 0 4px #FF10F0,
      0 0 10px #FF40F8,
      0 0 20px #FF6CFB,
      0 0 35px #FF8DFD;
  }
  to {
    text-shadow:
      0 0 8px #FF40F8,
      0 0 16px #FF6CFB,
      0 0 30px #FF8DFD,
      0 0 50px #FFB0FF;
  }
}


/* ========== TITLE ========== */
.title {
  width: 100%;
  padding: 8rem 3rem 0rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(0,191,255,0.1) 0%,
    rgba(0,191,255,0) 100%
  );
  color: #00BFFF;
}
.title h1 {
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #00BFFF;
  text-shadow: 0 3px 12px rgba(0,191,255,0.6);
}
/* ========== COMPARISON TABLE ========== */
.table-container {
  width: 90%;
  margin: 60px auto;
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.2);
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.table-container table {
  border-collapse: collapse;
  width: 100%;
  font-family: 'Fira Sans', sans-serif;
  color: #EAEAEA;
  font-size: 15.5px;
  table-layout: fixed;
}

.table-container th,
.table-container td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
  vertical-align: top;
  text-align: left;
}

.table-container thead td {
  background-color: #0d1b2a;
  font-weight: 700;
  color: #00BFFF;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(0, 191, 255, 0.4);
  font-size: 16px;
  text-align: center;
}

.table-container tbody tr:hover {
  background-color: rgba(0, 191, 255, 0.07);
  transition: 0.2s ease;
}

.table-container p {
  margin: 0;
  line-height: 1.5;
}

/* Highlight the first column */
.table-container tbody tr td:first-child {
  font-weight: 700;
  color: #1CFFFF;
  background: rgba(0, 191, 255, 0.05);
  border-right: 1px solid rgba(0, 191, 255, 0.2);
}

/* Responsive tweak */
@media (max-width: 900px) {
  .table-container table {
    font-size: 14px;
  }
  .table-container th,
  .table-container td {
    padding: 10px 12px;
  }
}

.slides-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin: 40px auto;
  border: 2px solid rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
  overflow: hidden;
  border-radius: 12px;
}

.slides-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}