

:root {
  --back:#0b1e3f;
 
  --accent: #ff2bd6;
  --neon: #6a00ff;
  --glow: #c7e3ff;
  --text: #ffffff;
}

*,
::before, 
::after { 
  box-sizing: border-box;
  margin:0;
  padding:0;
}
html {
  font-size:18px;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
    
}
body {
  background-color:var(--back);
  color: var(--text);
  text-align:center;
}
a {
  color:var(--glow);
  text-decoration:none;
}
a:hover, 
a:focus {
  color:var(--accent);
  
}
a:active {
  color:var(--neon);
  background-color:var(--glow);
  
}


#container {
  display:flex;
  flex-direction:column;
  flex-wrap:nowrap;
  justify-content:center;
  align-items:center;
  margin: 6px 10px 8px 0;
  color: var(--glow);
}

#daySelector {
  appearance: none;
  background: #0d1f3f;
  color: var(--white);
  border: 2px solid var(--neon-blue);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 12px rgba(106,0,255,0.45);
}
#daySelector:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 14px rgba(255,43,214,0.55);
}

.day-card {
  margin-top: 22px;
  padding: 20px;
  border: 1px dashed rgba(199,227,255,0.35);
  border-radius: 12px;
  background: rgba(14, 28, 62, 0.45);
  backdrop-filter: blur(2px);
}

.day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

#dayTitle {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
  text-shadow: 0 0 8px rgba(255,43,214,0.35);
}

.theme-badge {
  display: inline-block;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,43,214,0.6);
  color: var(--neon-pink);
  background: rgba(255,43,214,0.08);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mascot-figure {
  margin: 16px 0 0;
  text-align: center;
}

#mascotGif {
  width: min(520px, 90%);
  height: auto;
  border-radius: 14px;
  border: 2px solid rgba(106,0,255,0.55);
  box-shadow: 0 0 16px rgba(106,0,255,0.55), 0 0 28px rgba(255,43,214,0.25);
}

#caption {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--glow);
  border-top: 2px solid rgba(106,0,255,0.35);
  padding-top: 12px;
}

.footnote {
  margin-top: 20px;
  text-align: center;
  color: #9fc7ff;
  font-size: 14px;
  opacity: 0.9;
}

/*Styles/fonts*/
  .unkempt-regular {
  font-family: "Unkempt", cursive;
  font-weight: 400;
  font-style: normal;
}

.unkempt-bold {
  font-family: "Unkempt", cursive;
  font-weight: 700;
  font-style: normal;
}
.space-mono {
  font-family: "Space Mono", monospace;
  font-weight: 600;
  font-style: normal;
  
}
.pt-sans-regular {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pt-sans-bold {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pt-sans-regular-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.pt-sans-bold-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.press-start-2p-regular {
  font-family: "Press Start 2P",  system-ui;
  font-weight: 400;
  font-style: normal;
}
.coda-regular {
  font-family: "Coda", system-ui;
  font-weight: 400;
  font-style: normal;
}
.contact {
  border:3px dashed Var(--neon);
  outline:2px solid var(--accent);
  color:var(--glow);
  font-size:30px;  
}
.contact a {
  color:var(--glow);
  text-decoration:none;
}
.showcase p {
  font-size:30px;
  color:var(--neon);
  text-align:center; 
}
