:root {
  --color-red-dusk: #ED9285;
  --color-yellow-rays: #FFE6AB;
  --color-bright-sunshine: #FFF4DA;
  --color-bright-soil-blue: #2E4D5F;
  --color-soil-blue: #142537;
  --color-dark-soil-blue: #191C23;
  --color-muted-rays: rgba(255, 244, 218, 0.6);

  --color-text-light: var(--color-bright-sunshine);
  --color-text-dark: var(--color-bright-soil-blue);
  --color-background-dark: var(--color-soil-blue);
  --color-background-todos: var(--color-dark-soil-blue);
  --color-background-input: var(--color-bright-soil-blue);
  --color-link: var(--color-red-dusk);
}

@font-face {
  font-family: 'Joystix';
  src: url('https://sfo2.digitaloceanspaces.com/kezzico-bucket/joystix.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
html {
  margin: 0; padding: 0;
}
body {
  background: var(--color-background-todos);
  color: var(--color-text-light);
  font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

footer {
  background: var(--color-background-dark);
  padding: 1.5rem;
  text-align: center;
}

footer .logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: inline-block;
  opacity: 0.8;
}

footer p {
  margin: 0.5rem 0 0 0;
  font-size: 12px;
  opacity: 0.7;
}

section {
  background: var(--color-background-dark);
  padding: 3rem 2.5rem;
  margin: 1.5rem 0;
  box-sizing: border-box;
  max-width: 800px;
  width: 100vw;
}

h1 {
  font-family: 'Joystix', 'Monaco', monospace;
  font-size: 2.0em;
  color: var(--color-text-light);
  margin: 0 0 1em 0;


}
h1.prompto {
  background-image: url(/prompto.svg);
  background-repeat: no-repeat;
  padding-left: 2em;  
}

h2 {
  font-family: 'Monaco', monospace;
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin: 0 0 1.5rem 0;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin: 1rem 0 2rem 0;
  font-weight: 300;
  line-height: 1.4;
}

.login-form {
  margin: 2rem 0;
}

input:not([type="submit"]) {
  width: 100%;
  padding: 1em 1.5em;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  background: var(--color-background-input);
  color: var(--color-text-light);
  font-family: 'Monaco', 'Consolas', monospace;
  margin: 1rem 0;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
}

input::placeholder {
  color: var(--color-muted-rays);
}

button, input[type="submit"] {
  background: var(--color-red-dusk);
  color: var(--color-bright-sunshine);
  border: none;
  padding: 0.33em 1em;
  border-radius: 1em;
  cursor: pointer;
  font-family: 'Joystix', 'Monaco', monospace;
  font-size: 1.66em;
  width: 100%;
}

.lightbulb {
  font-size: 4rem;
  margin: 1rem 0;
  filter: drop-shadow(0 0 10px var(--color-yellow-rays));
  text-align: center;
}

/** video styles **/

.video-wrapper {
  position: relative;
  max-width: 700px;
  margin: 2em auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--color-shadow);
  background: #000;
}
.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 0;
}
.video-wrapper .play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(30,40,60,0.7);
  border-radius: 50%;
  padding: 1em;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper .play-button svg {
  width: 60px;
  height: 60px;
  color: var(--color-text-light);
}


/* Navigation styles */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

nav li {
  display: inline;
}

a {
  color: var(--color-link);
  text-decoration: none;
}


/* Responsive adjustments */
@media (max-width: 700px) {
  .video-wrapper {
    max-width: 100vw;
  }
  main {
    padding: 0em;
  }
}
