.portal-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  text-align: center;
}

.portal-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.portal-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #666;
}

.portal-selection {
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 900px;
}

.portal-card {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid transparent;
}

.portal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portal-card.works:hover {
  border-color: #d400ff;
}

.portal-card.anime:hover {
  border-color: #0070f3;
}

.portal-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.portal-card p {
  color: #777;
  line-height: 1.5;
}

.portal-card .icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .portal-selection {
    flex-direction: column;
  }
  .portal-title {
    font-size: 2rem;
  }
}
