:root {
  --primary-color: #fc9;
  --secondary-color: #f9c;
  --background-color: #242522;
  --text-color: #ccc;
  --accent-color: #9bad97;
  --error-color: #ff4444;
  --success-color: #0f0;
  --link-color: #6da7f9;
  --link-hover-color: #8bbbfd;
  --button-color: #c9f;
  --button-hover-color: #c48aff;
  --button-active-color: #d1a3ff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
hr {
  border-color: var(--accent-color);
}
body {
  min-height: 100vh;
  position: relative;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  font-family: 'Inconsolata', monospace;
}
body::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.38;
  z-index: -1;
}
p .powerback {
  color: var(--primary-color);
  letter-spacing: 1px;
}
.powerback {
  letter-spacing: 1px;
}
.celebration {
  font-family: 'Red Hat', sans-serif;
  font-weight: bold;
}
.container {
  max-width: 800px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 2rem;
}
header {
  margin-top: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}
h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 3rem;
  font-family: 'Oswald', sans-serif;
}
.subtitle {
  font-size: 1.2rem;
  letter-spacing: 1px;
}
main {
  flex: 1;
}
.content {
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #1b1b1b;
  border-radius: 8px;
}
#advisory-notice {
  margin-bottom: 2rem;
  padding: 1rem;
  border-left: 4px solid var(--accent-color);
  background-color: #ffcc991a;
}
#main-text {
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
.text-section {
  margin-bottom: 2.5rem;
}
.text-section:last-child {
  margin-bottom: 0;
}
.text-section h2 {
  color: var(--secondary-color) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.text-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.text-section p:last-child {
  margin-bottom: 0;
}
.text-section ol {
  margin: 1rem 0 1rem 2rem;
}
.text-section li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
.text-section a {
  color: var(--link-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.text-section a:hover {
  border-bottom-color: var(--link-hover-color);
}
.email-signup {
  text-align: center;
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid #ffcc9933;
}
.email-signup h2 {
  margin-bottom: 1rem;
}
.email-signup p {
  margin-bottom: 1.5rem;
}
#email-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
input[type='email'] {
  color: var(--success-color);
  flex: 1;
  padding: 0.8rem;
  background-color: #0000004d;
  font-family: 'Inconsolata', monospace;
  border: 1px solid var(--text-color);
  border-radius: 4px;
}
button {
  color: var(--background-color);
  padding: 0.8rem 1.5rem;
  background-color: var(--button-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Inconsolata', monospace;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: var(--button-hover-color);
  color: var(--background-color);
}
button:active {
  background-color: #d1a3ff !important;
}
button:focus,
button:focus-visible {
  background-color: #d1a3ff !important;
  color: #1b1b1b;
}
.form-message {
  margin-top: 1rem;
  min-height: 1.5em;
}
.form-message.success {
  color: var(--success-color);
}
.form-message.error {
  color: var(--error-color);
}
#social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-links a {
  color: var(--link-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.social-links a:hover {
  color: var(--link-hover-color);
  border-color: #999;
}
.social-links a:active,
.social-links a:focus-visible {
  color: var(--link-hover-color);
  background-color: var(--background-color);
}
.signature {
  margin-top: 2rem;
  font-style: italic;
  color: #666;
  text-align: right;
}
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  body::before {
    background-image: url('bg.webp');
    background-position: bottom 50px right 0px;
    opacity: 0.33;
  }
  .container {
    margin-top: 18vh;
    padding: 1rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  .text-section h2 {
    font-size: 1.25rem;
  }
  #email-form {
    flex-direction: column;
  }
  button {
    width: 100%;
  }
  .content {
    padding: 1.5rem;
    background-color: rgb(27, 27, 27, 82%);
    line-height: 1.2rem;
  }
}
@media (min-height: 1000px) and (orientation: portrait) {
  body::before {
    background-image: url('bg.webp');
    background-position: bottom 13vh right 0px !important;
  }
  .container {
    margin-top: 13vh;
  }
}
