* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  /* background: url('../assets/portal/background_portal.jpg') no-repeat center center/cover; */
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-container {
  text-align: center;
}

.title h1 {
  font-size: 40px;
  font-weight: 600;
}

.title p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ccc;
}

.glass-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  max-width: 800px;
}

.category {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.category:hover {
  transform: scale(1.1);
}

.category i {
  font-size: 36px;
  margin-bottom: 10px;
}

.category span {
  font-size: 16px;
}

.socials {
  margin-top: 40px;
}

.socials i {
  margin: 0 10px;
  font-size: 18px;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s ease;
}

.socials i:hover {
  color: #fff;
}
