.entry-page-body {
  background: linear-gradient(135deg, #0f0f1f, #1a1a2f);
  font-family: 'Poppins', sans-serif;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.entry-container {
  background: rgba(26, 26, 47, 0.95);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-container h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #00ffaa, #00aaff, #00ffaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 170, 0.2);
}

.company-selection {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-link {
  display: block;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #e0e0e0;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.company-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 170, 0.3) 20%,
        rgba(0, 170, 255, 0.3) 50%,
        rgba(0, 255, 170, 0.3) 80%,
        transparent 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.company-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 47, 0.9);
    border-radius: 12px;
    z-index: 2;
}

.company-link span, .company-link small {
    position: relative;
    z-index: 3;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.company-link small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.5rem;
    color: #aab;
}

.company-link:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 170, 0.8);
  box-shadow: 0 6px 20px rgba(0, 255, 170, 0.4);
}

.company-link:hover::before {
    left: 0;
    opacity: 1;
    animation: swipeHighlight 1s linear infinite;
}

.company-link:hover::after {
   background: rgba(26, 26, 47, 0.8);
}

.company-link:hover span, .company-link:hover small {
    color: #ffffff;
}

.disabled-link {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(50%);
}

.disabled-link:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.disabled-link:hover::before,
.disabled-link:hover::after {
    opacity: 0;
    animation: none;
}

.disabled-link:hover span, .disabled-link:hover small {
    color: #e0e0e0;
}

@keyframes swipeHighlight {
    0% { left: -100%; }
    100% { left: 100%; }
}

