/* ========================
   Start Page Styles (start.css)
   ======================== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  display: flex;
  overflow: hidden;
}

.left.art {
  width: 50%;
  height: 100vh;
  background: url('/assets/images/start-panel.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

.left.art::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 9, 12, 0.33);
}

.right {
  width: 50%;
  height: 100vh;
  background: #1d0042;
  color: white;
  display: flex;
  padding: 0 4rem;
  box-sizing: border-box;
  overflow-y: auto;
}

.content-wrapper {
  max-width: 500px;
  width: 100%;
  margin: auto 0;
  padding: 2rem 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #80ff5c;
  font-weight: 600;
}

.subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.option {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: #2d0062;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.option:hover {
  background: #3a007e;
  border-left: 3px solid #80ff5c;
}

.option-icon {
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-top: 2px;
}

.option-text {
  line-height: 1.5;
}

.option.signup {
  background: #00775f;
  margin-top: 1rem;
}

.option.signup:hover {
  background: #009972;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    flex-direction: column;
    overflow: auto;
  }

  .left.art,
  .right {
    width: 100%;
    height: auto;
    min-height: 50vh;
  }

  .right {
    padding: 2rem;
  }

  .content-wrapper {
    padding: 1.5rem 0;
  }
}
