/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
html, body {
  height: 100%;
  font-family: 'Comic Neue', cursive, sans-serif;
  background: #F9F9FB;
  color: #333;
  overflow-x: hidden;
}

/* Sticky Pastel Navbar */
.gustra-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #CBB5F4;
  box-shadow: 0 4px 8px rgba(203, 181, 244, 0.3);
  animation: slideDown 0.6s ease-out;
}

.nav-container {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 1em 2em;
  flex-wrap: wrap;
}

.nav-button {
  background-color: #FFF5B7;
  color: #4a4a4a;
  border: 2px dashed #FFDDEE;
  padding: 0.6em 1.2em;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 2px 2px 0 #FFCCE0;
}

.nav-button:hover {
  background-color: #FFCCE0;
  color: #000;
  box-shadow: 4px 4px 0 #CBB5F4;
  transform: translateY(-2px);
}

.nav-button:active {
  transform: scale(0.95);
}

/* Container Content */
.container {
  text-align: center;
  padding: 4em 2em;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: 3.5em;
  color: #AEEAFD;
  text-shadow: 1px 1px 2px #888;
  animation: popIn 1s ease;
}

h2 {
  font-size: 1.8em;
  color: #CBB5F4;
  margin-bottom: 1em;
  animation: fadeIn 1.5s ease;
}

p {
  font-size: 1em;
  color: #666;
  margin-bottom: 1.2em;
  line-height: 1.6;
}

/* Info Boxes */
.info {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 2em;
}

.info div {
  background: #C6FAD6;
  color: #333;
  padding: 1em 1.4em;
  border-radius: 12px;
  border: 2px dotted #AEEAFD;
  font-size: 0.95em;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  background: #FFF5B7;
  color: #444;
  position: fixed;
  bottom: 0;
  z-index: 5;
  border-top: 2px solid #FFCCE0;
}

.marquee-content {
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  padding: 1em;
  font-size: 0.95em;
}

/* Background Image */
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.2;
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Canvas for Stars */
canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Animations */
@keyframes slideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Links */
a {
  color: #A179C9;
  text-decoration: underline;
  transition: 0.3s;
}
a:hover {
  color: #6B4FA0;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5em;
  }
  .info div {
    font-size: 0.9em;
    padding: 0.8em 1em;
  }
}
