.ghost {
  margin: 0;
  position: absolute;
  z-index: 2;
}
* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.game-wrapper, .game-wrapper * {
  font-family: "Press Start 2P", sans-serif;
}

.material-icons {
  font-family: "Material Icons" !important;
}

html, body {
  margin: 0;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(135deg, #30525C 0%, #0a1f24 100%);
}

.hero-section {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hero-section.hero-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-content {
  max-width: 1080px;
  width: 100%;
  padding: 0 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-above-fold {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 56px);
  min-height: 1000px;
  padding-top: 24px;
  padding-bottom: 24px;
  box-sizing: border-box;
}

.hero-badge {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C2642C;
  background: rgba(194, 100, 44, 0.12);
  border: 1px solid rgba(194, 100, 44, 0.3);
  border-radius: 32px;
  padding: 12px 36px;
  margin-bottom: 28px;
  max-width: 90%;
  text-align: center;
  line-height: 1.5;
}
.hero-badge .hero-badge-sub {
  display: block;
  font-family: "Inter", sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}

.hero-prerelease {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
  line-height: 1.5;
}

.hero-headline {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 32px 0 20px;
  letter-spacing: -0.5px;
}

.hero-subheadline {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 0 36px;
}

.hero-section-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}
.hero-section-title--large {
  font-size: 28px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 0;
}

.hero-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.hero-feature h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}
.hero-feature p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0;
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.hero-feature-icon .slds-icon {
  width: 23px;
  height: 23px;
}
.hero-feature-icon .material-icons {
  font-size: 28px;
  color: #C2642C;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.hero-why {
  max-width: 900px;
  margin-bottom: 24px;
}
.hero-why p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0 0 12px;
  text-align: left;
}
.hero-why p:last-child {
  margin-bottom: 0;
}

.hero-footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  padding: 20px 24px 24px;
}

.hero-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.hero-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-footer-logo {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
}

.hero-footer-name {
  font-family: "Carlito", "Calibri", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.hero-footer-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 1440px;
  margin: 0;
}

.hero-footer-copy {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0 8px;
}

#how-it-works,
#why-amphora,
#comparison,
#testimonials,
#pricing,
#faq,
#about {
  height: calc(100vh - 56px);
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 48px;
  box-sizing: border-box;
  width: 100%;
}

.section-scroll-arrow,
.hero-scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 32px;
  margin-bottom: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  animation: bounce 2s ease infinite;
  flex-shrink: 0;
}
.section-scroll-arrow .material-icons,
.hero-scroll-arrow .material-icons {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
}
.section-scroll-arrow:hover,
.hero-scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.section-scroll-arrow:hover .material-icons,
.hero-scroll-arrow:hover .material-icons {
  color: #ffffff;
}

.section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 0 24px;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 15px;
}
.comparison-table th, .comparison-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.comparison-table thead th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.comparison-table .comparison-feature-col {
  width: 22%;
}
.comparison-table .comparison-feature {
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.comparison-table .comparison-highlight {
  background: rgba(194, 100, 44, 0.08);
}
.comparison-table thead .comparison-highlight {
  color: #C2642C;
  font-weight: 700;
}
.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-highlight .cmp-yes {
  color: #C2642C;
  font-weight: 700;
}

.cmp-yes {
  color: #4ecdc4;
  font-weight: 600;
}

.cmp-partial {
  color: #f0ad4e;
}

.cmp-no {
  color: #e05555;
  font-weight: 500;
}

.cmp-neutral {
  color: rgba(255, 255, 255, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 8px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}
.testimonial-stars .material-icons {
  font-size: 16px;
  color: #C2642C;
}

.testimonial-quote {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(194, 100, 44, 0.2);
  color: #C2642C;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.faq-list {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.faq-item[open] {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(194, 100, 44, 0.3);
}

.faq-question {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "expand_more";
  font-family: "Material Icons";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease;
}
[open] > .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  padding: 0 20px 16px;
  margin: 0;
  text-align: left;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 8px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.pricing-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.pricing-card--featured {
  border-color: rgba(194, 100, 44, 0.4);
  background: rgba(194, 100, 44, 0.06);
}
.pricing-card--featured:hover {
  background: rgba(194, 100, 44, 0.1);
  border-color: rgba(194, 100, 44, 0.6);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background: #C2642C;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.pricing-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li .material-icons {
  font-size: 18px;
  color: #C2642C;
  flex-shrink: 0;
}

.pricing-cta {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(194, 100, 44, 0.2);
  border: 1px solid rgba(194, 100, 44, 0.4);
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 100%;
}
.pricing-cta:hover {
  background: rgba(194, 100, 44, 0.35);
  border-color: rgba(194, 100, 44, 0.6);
}

.about-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
}

.about-story-icon {
  flex-shrink: 0;
}

.about-amphora-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  opacity: 0.85;
}

.about-story-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #C2642C;
  margin: 0 0 12px;
}

.about-story-text p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0 0 10px;
}
.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.about-founder-photo {
  flex-shrink: 0;
}

.about-founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(194, 100, 44, 0.3);
  object-fit: cover;
}

.about-founder-info {
  flex: 1;
}

.about-founder-name {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.about-founder-role {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #C2642C;
  letter-spacing: 0.5px;
}

.about-founder-bio {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 12px 0 0;
}

.about-founder-personal {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 12px 0 0;
  font-style: italic;
}

.about-founder-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.about-link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.about-link .material-icons {
  font-size: 16px;
}
.about-link:hover {
  color: #C2642C;
}
.about-link--location {
  cursor: default;
}
.about-link--location:hover {
  color: rgba(255, 255, 255, 0.6);
}

.about-link-icon {
  width: 16px;
  height: 16px;
}

.hero-footer--enhanced {
  padding: 40px 24px 20px;
}

.hero-footer-content--grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  text-align: left;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-col--brand .hero-footer-brand {
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}

.footer-col-title {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #C2642C;
}
.footer-link--static {
  cursor: default;
}
.footer-link--static:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 32px;
  padding-top: 16px;
  text-align: center;
}

.hero-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.hero-cta-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.hero-play-btn {
  font-family: "Inter", sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #0a1f24;
  background: #fcc73f;
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.1s ease;
}
.hero-play-btn .material-icons {
  font-size: 20px;
}
.hero-play-btn:hover {
  background: #fdd85a;
}
.hero-play-btn:active {
  transform: scale(0.97);
}

.game-wrapper {
  display: none;
}
.game-wrapper.game-visible {
  display: block;
}

.back-to-info-btn {
  font-family: "Inter", sans-serif !important;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  transition: background 0.2s ease;
}
.back-to-info-btn .material-icons {
  font-size: 18px;
}
.back-to-info-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

@media only screen and (max-width: 600px) {
  .hero-headline {
    font-size: 26px;
  }
  .hero-subheadline {
    font-size: 14px;
    max-width: 90%;
  }
  .hero-badge {
    max-width: 80% !important;
    padding: 10px 16px;
    font-size: 18px;
  }
  #why-amphora,
  #how-it-works,
  #comparison,
  #testimonials,
  #pricing,
  #faq,
  #about {
    min-height: auto;
    height: auto;
  }
  .hero-above-fold {
    padding-top: 11px;
    height: auto;
    min-height: auto;
  }
  .hero-scroll-arrow {
    margin-top: 15px;
  }
  .hero-features {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section-title {
    font-size: 16px;
  }
  .hero-why {
    max-width: 90%;
  }
  .hero-footer-text {
    max-width: 90%;
  }
  .hero-content {
    padding: 32px 5% 48px;
  }
  .comparison-table-wrap {
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% + 16px);
  }
  .comparison-table {
    font-size: 11px;
  }
  .comparison-table th, .comparison-table td {
    padding: 8px 6px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-list {
    max-width: 90%;
  }
  .faq-question {
    text-align: center;
    justify-content: center;
    gap: 12px;
  }
  .section-subtitle {
    max-width: 90%;
  }
  #pricing {
    min-height: auto;
    height: auto;
    padding-bottom: 32px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card--featured {
    order: -1;
  }
  .about-story {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-founder {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-founder-links {
    justify-content: center;
  }
  #about {
    min-height: auto;
    height: auto;
    padding-bottom: 32px;
  }
  .hero-footer--enhanced {
    padding: 32px 5% 16px;
  }
  .hero-footer-content--grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .footer-col--brand {
    grid-column: span 2;
  }
  .back-to-info-btn {
    bottom: 12px;
    left: 12px;
    font-size: 11px;
    padding: 6px 12px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .hero-headline {
    font-size: 34px;
  }
}
.overflow-mask {
  background-color: transparent;
  color: #fff;
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  zoom: 0.8;
  margin: 0;
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  touch-action: manipulation;
}

.fps-display {
  position: absolute;
  right: 10px;
  top: 10px;
  visibility: hidden;
}

.preload-div {
  align-items: baseline;
  bottom: 0;
  display: flex;
  flex-wrap: wrap-reverse;
  position: absolute;
  visibility: hidden;
}

.header-buttons {
  padding: 1rem 1.5rem;
  width: calc(100% - 3rem);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header-buttons a {
  font-family: none;
  display: inline-block;
}
.header-buttons img {
  height: 2rem;
}
.header-buttons button {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  outline: none;
  padding: 0;
}
.header-buttons button .material-icons {
  font-size: 40px;
}

.paused-text {
  align-items: center;
  display: flex;
  font-size: 50px;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  user-select: none;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

.game-ui {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  visibility: hidden;
}
.game-ui .one-up {
  animation: blink 0.6s infinite;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.game-ui .row {
  display: flex;
}
.game-ui .top ._25 {
  width: 25%;
}
.game-ui .top ._50 {
  width: 50%;
}
.game-ui .top .column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.game-ui .top .column :first-child {
  margin-bottom: 0.75em;
}
.game-ui .bottom {
  justify-content: space-between;
  margin-top: 10px;
}
.game-ui .bottom .extra-lives {
  align-items: flex-start;
  display: flex;
}
.game-ui .bottom .fruit-display {
  display: flex;
  flex-direction: row-reverse;
}

.loading-cover {
  background: transparent;
  height: 100%;
  position: absolute;
  top: 0;
  width: calc(50% + 1px);
  z-index: 4;
}

.left {
  left: 0;
  transition: left 0.5s 0.5s;
}

.right {
  right: 0;
  transition: right 0.5s 0.5s;
}

.main-menu-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s;
  visibility: hidden;
  width: 100%;
  z-index: 5;
}

.logo {
  width: 800px;
  max-width: 80vw;
  margin-top: 25vh;
}

.game-start {
  background-color: #fcc73f;
  border: 5px solid #231f20;
  border-radius: 10px;
  box-shadow: 5px 5px #ee2a29;
  color: #231f20;
  cursor: pointer;
  font-size: 48px;
  outline: none;
  padding: 16px;
}
.game-start:active {
  box-shadow: none;
  transform: translateX(5px) translateY(5px);
}
.game-start:disabled {
  cursor: default;
}

@media only screen and (max-width: 600px) {
  .overflow-mask {
    zoom: 1.6;
  }
  .game-start {
    scale: 0.5;
  }
  .paused-text {
    font-size: 25px;
  }
}
.loading-container {
  background-color: #000;
  border: 5px solid #2121ff;
  border-radius: 10px;
  height: 48px;
  position: absolute;
  top: 50%;
  transition: opacity 0.5s 1s;
  width: 500px;
  z-index: 5;
}

@media only screen and (max-width: 600px) {
  .loading-container {
    transform: scale(0.5);
  }
}
.loading-pacman {
  animation: loading-animation 0.3s steps(4) infinite;
  background-color: #000;
  background-image: url("../app/style/graphics/spriteSheets/characters/pacman/pacman_right.svg");
  background-size: 192px;
  border-radius: 10px;
  height: 48px;
  position: absolute;
  transition: left 1s;
  width: 48px;
  z-index: 6;
}

@keyframes loading-animation {
  100% {
    background-position: -192px;
  }
}
.loading-dot-mask {
  background-color: #000;
  border-radius: 10px;
  height: 48px;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 1s;
  z-index: -1;
}

.loading-dot {
  background-image: url("../app/style/graphics/spriteSheets/pickups/pacdot.svg");
  height: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  z-index: -2;
}

._5 {
  left: 5%;
}

._10 {
  left: 10%;
}

._15 {
  left: 15%;
}

._20 {
  left: 20%;
}

._25 {
  left: 25%;
}

._30 {
  left: 30%;
}

._35 {
  left: 35%;
}

._40 {
  left: 40%;
}

._45 {
  left: 45%;
}

._50 {
  left: 50%;
}

._55 {
  left: 55%;
}

._60 {
  left: 60%;
}

._65 {
  left: 65%;
}

._70 {
  left: 70%;
}

._75 {
  left: 75%;
}

._80 {
  left: 80%;
}

._85 {
  left: 85%;
}

._90 {
  left: 90%;
}

._95 {
  left: 95%;
}

.error-message {
  color: #231f20;
  opacity: 0;
  position: absolute;
  top: 30vh;
  transition: opacity 0.5s;
  visibility: hidden;
  width: 50vw;
  z-index: 4;
}
.error-message .error-pacman {
  animation: error-animation 1.5s steps(12) infinite;
  background-image: url("../app/style/graphics/spriteSheets/characters/pacman/pacman_error.svg");
  background-size: 576px;
  height: 48px;
  margin-left: 10px;
  width: 48px;
  z-index: 6;
}
@keyframes error-animation {
  100% {
    background-position: -576px;
  }
}
.error-message .header {
  display: flex;
  font-size: 50px;
  margin-bottom: 30px;
}
.error-message .body {
  font-size: 20px;
  line-height: 1.25;
}
.maze-cover {
  background: transparent;
  height: 100%;
  position: absolute;
  visibility: hidden;
  width: 100%;
  z-index: 3;
}

.maze {
  margin: 0 auto;
  position: relative;
}

.maze-img {
  position: absolute;
  user-select: none;
  width: 100%;
}

.maze-row {
  display: flex;
}

.dot-container {
  height: 100%;
  position: absolute;
  width: 100%;
}
.pacman {
  margin: 0;
  position: absolute;
  z-index: 1;
}
.power-pellet {
  animation: blink 0.3s infinite;
}

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