body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #f0f2f5;
  color: #333;
}
.portal-body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  padding: 20px;
}
.portal-container {
  max-width: 900px;
  width: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.95
  ); 
  border-radius: 20px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
  padding: 40px; 
  text-align: center; 
}


.portal-header .portal-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%; 
  margin-bottom: 20px; 
  border: 4px solid #fff; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}


.portal-header h1 {
  font-family: "Orbitron", sans-serif; 
  font-size: 3rem; 
  color: #3f3d56; 
  margin: 0; 
}


.portal-header .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px; 
}



.portal-nav {
  display: grid; 
  
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; 
  margin-top: 40px; 
}


.nav-card {
  background-color: #fff;
  border-radius: 15px; 
  padding: 25px; 
  text-decoration: none; 
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0; 
}


.nav-card:hover {
  transform: translateY(-10px); 
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12); 
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 500; 
  color: #3f3d56;
}

.card-description {
  font-size: 0.9rem;
  color: #777;
  margin-top: 5px;
}


.portal-footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}



.page-header {
  background-color: #3f3d56;
  color: white;
  padding: 20px 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
}


.page-header .nav-link {
  display: inline-block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid white;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.page-header .nav-link:hover {
  background-color: white;
  color: #3f3d56;
}


.container {
  max-width: 1000px;
  margin: 40px auto; 
  padding: 20px;
}


.content-section {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.content-section h2 {
  border-bottom: 2px solid #667eea; 
  padding-bottom: 10px;
  margin-top: 0;
}


.logo-image {
  max-width: 150px;
  display: block; 
  margin: 20px auto; 
}


.comic-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.comic-gallery img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.page-footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background-color: #3f3d56;
  color: white;
}


form {
  display: flex;
  flex-direction: column; 
  gap: 20px; 
}
fieldset {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
}
legend {
  padding: 0 10px;
  font-weight: 500;
  color: #3f3d56;
}
label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box; 
}
form button {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: #667eea;
  cursor: pointer; 
  font-size: 1rem;
  transition: background-color 0.3s;
}
form button:hover {
  background-color: #5a6fd6; 
}
