:root {
  --neon: #00f0ff;
  --panel-bg: #020d17f0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 1000px;
  background: #fff;
  margin: auto;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.main-content {
  width: 100%;
}

.content-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.job-list {
  flex: 1;
}

.p1, .p2, .p3 {
  text-align: center;
  margin: 0;
}

.p1 { margin-top: -10px; }
.p2 { margin-top: -5px; }
.p3 { margin-top: -5px; }

.p4, .p5, .p6, .p7 {
  position: relative; bottom: 20px;
}

.b1, .b2, .b3, .b4, .b5 {
  color: rgba(135, 207, 255, 0.8);
  border: 4px solid #3aa3ff;
  border-radius: 8px;
  position: relative; bottom: 20px; left: 80px;
  background-color: #020d17d7;
  cursor: pointer;
  box-shadow: 0 0 6px #3aa3ff, 0 0 12px rgba(0, 240, 255, 0.3);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: fadeIn 3.5s ease-out forwards, pulseGlow 2s infinite alternate ease-in-out;
}

.b1:hover,
.b2:hover,
.b3:hover,
.b4:hover,
.b5:hover {
  background-color: #00f0ff;
  color: #000;
  border-color: #00f0ff;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  from { box-shadow: 0 0 6px #3aa3ff, 0 0 12px rgba(0, 240, 255, 0.3); }
  to { box-shadow: 0 0 12px #3aa3ff, 0 0 24px rgba(0, 240, 255, 0.6); }
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  margin: 0;
  font-size: 2.5em;
  color: #007acc;
}

h2 {
  color: #007acc;
  margin-top: 30px;
  padding-bottom: 5px;
}

.t1 {
  text-align: center;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* Info Panel */
#infoPanel {
  flex: 0 0 0;
  max-width: 350px;
  background: var(--panel-bg);
  border: 3px solid var(--neon);
  border-radius: 10px;
  padding: 20px;
  color: rgba(135, 207, 255, 0.9);
  box-shadow: 0 0 12px var(--neon), 0 0 24px rgba(0, 240, 255, 0.4);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease-in-out;
  position: relative;
}

#infoPanel.open {
  flex: 0 0 350px;
  opacity: 1;
  transform: translateX(0);
}

#infoPanel h2 {
  color: var(--neon);
  margin-top: 0;
}

#closePanel {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 2px solid var(--neon);
  border-radius: 50%;
  color: var(--neon);
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  transition: background-color 0.25s, box-shadow 0.25s;
}

#closePanel:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 10px var(--neon), 0 0 20px var(--neon);
}
