:root {
  --bg-color: #000000;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --border-color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Mono", monospace;
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* CRT Scanline effect */
body::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.01),
      rgba(255, 255, 255, 0.03)
    );
  z-index: 100;
  background-size:
    100% 2px,
    3px 100%;
  pointer-events: none;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 2rem 2rem;
  width: 100%;
  margin: 0 auto;
}

/* Landing Page Specific Styles */

/* Logo */
.logo-container {
  margin-bottom: 2.25rem;
}

img#main-logo {
  width: 180px;
  height: 180px;
  border: 4px solid var(--text-primary);
  padding: 10px;
  background: var(--text-primary);
  box-shadow: 10px 10px 0px var(--text-primary);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

img#main-logo:hover {
  transform: translate(-3px, -3px);
  box-shadow: 13px 13px 0px var(--text-primary);
}

.hidden-logo {
  opacity: 0;
  transform: scale(0.5);
}

.animate-logo {
  animation: retroFadeIn 1s cubic-bezier(0.1, 1, 0.1, 1) forwards;
}

@keyframes retroFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Typography & Content */
.content-wrapper {
  text-align: center;
  max-width: 760px;
  width: 100%;
}

/* DASW Hero */
.dasw-hero {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dasw-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 1.2rem;
  min-width: 12ch;
  margin: 0 0 1.25rem;
  letter-spacing: 0.3px;
}

.dasw-col {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.dasw-letter {
  color: var(--text-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.dasw-word {
  color: var(--text-secondary);
}

.dasw-cursor {
  display: inline-block;
  color: var(--text-primary);
  animation: blink 0.75s step-end infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.you-name-it {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-top: 0.25rem;
}

.support-block {
  margin: 0 0 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.support-contact {
  margin: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.support-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-contact a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--text-primary);
}

.support-contact a:hover {
  background: var(--text-primary);
  color: var(--bg-color);
}

.support-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.support-links a {
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: inset 0 -1px 0 var(--text-secondary);
}

.support-links a:hover {
  color: var(--text-primary);
  box-shadow: inset 0 -1px 0 var(--text-primary);
}

.support-sep {
  color: var(--text-secondary);
  opacity: 0.4;
}


.app-teaser {
  margin-top: 0.25rem;
  border: 3px solid var(--border-color);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: flex-start;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.app-teaser img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 2px solid var(--border-color);
  background: var(--text-primary);
}

.app-teaser-text {
  text-align: left;
}

.app-teaser-text h2 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-teaser-text p {
  margin: 0;
  font-size: 0.95rem;
}

.teaser-stores {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.store-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--text-primary);
  padding: 0.25rem 0.6rem;
  box-shadow: 3px 3px 0 var(--text-primary);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.store-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--text-primary);
}

.store-soon {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}


@media (max-width: 600px) {
  .dasw-grid {
    font-size: 1rem;
  }
  .you-name-it {
    font-size: 1.15rem;
    letter-spacing: 2px;
  }
  .review-status {
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
  }
  img#main-logo {
    width: 140px;
    height: 140px;
  }

  .app-teaser {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .app-teaser-text {
    text-align: center;
  }
}

/* Base animations for content */
.fade-in-up {
  opacity: 0;
  animation: retroFadeIn 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}
.delay-2 {
  animation-delay: 0.8s;
}
.delay-3 {
  animation-delay: 1.1s;
}
