#indexSection {
  padding: 2rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px;
  width: 100%;
  max-width: 800px;
}

#indexSection h1 {
  margin-top: 0;
  font-size: 1.5rem;
}

#indexSection p {
  margin-bottom: 0;
  line-height: 1.6;
}

#surpriseBtn {
  background-color: rgba(88, 166, 255, 0.3);
  color: #f0f6fc;
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 20px auto;
}

#surpriseBtn:hover {
  background-color: #238636;
  border-color: #2ea043;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(46, 160, 67, 0.4);
}

#indexSection div:first-child {
  border-left: 4px solid rgba(88, 166, 255, 0.3);
}

#indexSection div:nth-child(2) {
  border-left: 4px solid rgba(88, 166, 255, 0.3);

}
