body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #6174b4, #6174b4);
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.container {
  display: flex;
  align-items: center;
  max-width: 1000px;
  padding: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.logo-container {
  flex: 1 1 300px;
  text-align: center;
}

.logo-container img {
  max-width: 100%;
  height: auto;
}

.text-container {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 4rem;
  margin: 0;
}

p {
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
  line-height: 1.5;
  max-width: 500px;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid white;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.links {
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.links a {
  color: white;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

#modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 40, 70, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 100;
}
#modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#dashboard-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: linear-gradient(135deg, #6174b4 90%, #4a5a8a 100%);
  color: white;
  border-radius: 16px;
  border: 2.5px solid #fff;
  box-shadow: 0 8px 32px rgba(30,40,70,0.25), 0 1.5px 8px rgba(0,0,0,0.10);
  padding: 2rem 2.5rem 2rem 2.5rem;
  min-width: 320px;
  max-width: 90vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.4,2,.6,1), transform 0.35s cubic-bezier(.4,2,.6,1);
  z-index: 101;
  box-sizing: border-box;
  text-align: center;
}
#dashboard-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
#dashboard-modal h2 {
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#dashboard-modal p {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}
#close-modal {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
  line-height: 1;
}
#close-modal:hover {
  color: #cfd8ff;
}
@media (max-width: 600px) {
  #dashboard-modal {
    padding: 1.2rem 0.7rem;
    min-width: 0;
  }
}
