@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(62, 24, 90, 0.18),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #030305 0%,
      #06050a 50%,
      #020204 100%
    );

  color: #ffffff;
  font-family:
    "Courier New",
    Courier,
    monospace;

  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 24%;
  pointer-events: none;
  z-index: -1;

  background-image:
    linear-gradient(
      rgba(91, 230, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(176, 91, 255, 0.08) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle,
      rgba(104, 250, 255, 0.7) 1px,
      transparent 2px
    );

  background-size:
    80px 80px,
    80px 80px,
    55px 55px;

  opacity: 0.35;
}

body::before {
  left: 0;
  mask-image:
    linear-gradient(
      to right,
      black,
      transparent
    );
}

body::after {
  right: 0;
  mask-image:
    linear-gradient(
      to left,
      black,
      transparent
    );
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: absolute;
  top: 22px;
  left: 28px;
  right: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 20;
}

.small-logo,
.social-links a {
  min-height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #cb82ff;
  border-radius: 7px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.03),
      rgba(88, 36, 112, 0.08)
    );

  box-shadow:
    inset 0 0 25px rgba(176, 83, 255, 0.05),
    0 0 20px rgba(129, 45, 179, 0.05);
}

.small-logo {
  width: 138px;
  font-size: 18;
  font-weight: 900;
  letter-spacing: 2px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

.hero {
  position: relative;

  min-height: 100vh;
  padding: 110px 25px 55px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 45%;
  left: 50%;

  width: 600px;
  height: 600px;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      rgba(119, 42, 160, 0.17),
      transparent 67%
    );

  filter: blur(25px);
  pointer-events: none;
}

.model-area {
  position: absolute;
  top: 75px;
  left: 50%;

  width: min(620px, 92vw);
  height: 590px;

  transform: translateX(-50%);

  z-index: 3;
}

model-viewer {
  width: 100%;
  height: 100%;

  background: transparent;

  --poster-color: transparent;
  --progress-bar-color: #a74ee8;
}

.hero-content {
  position: relative;
  z-index: 5;

  width: 100%;
  text-align: center;

  padding-bottom: 18px;
}

.hero h1 {
  font-size: clamp(76px, 12vw, 155px);
  line-height: 0.85;

  font-weight: 900;
  letter-spacing: 10px;

  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.15),
    0 10px 35px rgba(0, 0, 0, 0.7);
}

.subtitle {
  margin-top: 30px;

  font-size: clamp(13px, 1.5vw, 22px);
  letter-spacing: 9px;

  color: #a7f1f1;
}

.hero-buttons {
  margin-top: 36px;

  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.info-button {
  min-width: 325px;
  min-height: 78px;

  padding: 15px 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  border: 1px solid #c47df0;
  border-radius: 7px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.02),
      rgba(123, 38, 157, 0.06)
    );

  font-size: 21px;
  font-weight: 700;
  letter-spacing: 2px;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

a.info-button:hover {
  transform: translateY(-3px);

  background:
    linear-gradient(
      145deg,
      rgba(188, 102, 241, 0.14),
      rgba(123, 38, 157, 0.09)
    );

  box-shadow:
    0 0 28px rgba(170, 75, 225, 0.2);
}

.button-icon {
  font-size: 38px;
}

.information-section {
  min-height: 100vh;

  padding:
    120px
    clamp(25px, 10vw, 230px)
    70px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.information-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.information-card {
  min-height: 460px;

  padding:
    clamp(35px, 4vw, 60px);

  border: 1px solid #d28af3;
  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.012),
      rgba(70, 26, 89, 0.04)
    );

  box-shadow:
    inset 0 0 35px rgba(180, 69, 238, 0.025);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 25px;

  margin-bottom: 27px;
}

.card-icon {
  width: 70px;
  min-width: 70px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #e2b2ff;
  border-radius: 15px;

  font-size: 43px;
  font-weight: 900;
}

.information-card h2 {
  font-size: clamp(18px, 1.8vw, 28px);
  letter-spacing: 2px;
  white-space: nowrap;
}

.information-card p {
  padding-left: 95px;

  font-family:
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.75;

  color: #ece8ef;
}

footer {
  margin-top: 200px;
  padding-top: 38px;

  border-top: 1px solid rgba(185, 102, 219, 0.14);

  text-align: center;
  letter-spacing: 5px;
  font-size: 12px;
}

@media (max-width: 950px) {
  .model-area {
    top: 100px;
    height: 480px;
  }

  .information-grid {
    grid-template-columns: 1fr;
  }

  .information-card p {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .header {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .small-logo {
    width: 108px;
    min-height: 42px;
    font-size: 16px;
  }

  .social-links a {
    width: 42px;
   height: 42px;
min-height: 42px;
    font-size: 21px;
  }

  .hero {
    padding-top: 90px;
  }

  .model-area {
    top: 75px;
    height: 430px;
  }

  .hero-content {
    padding-bottom: 10px;
  }

  .hero h1 {
    letter-spacing: 3px;
  }

  .subtitle {
    letter-spacing: 4px;
    line-height: 1.5;
  }

  .hero-buttons {
    gap: 14px;
  }

  .info-button {
    min-width: min(100%, 330px);
    min-height: 65px;

    font-size: 16px;
  }

  .information-section {
    padding: 85px 18px 45px;
  }

  .information-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .card-heading {
      display: flex;
    align-items: center;
    gap: 12px;
  }
  .card-heading h2 {
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

  .card-icon {
    width: 56px;
    min-width: 56px;
    height: 62px;
    font-size: 34px;
  }

  footer {
    margin-top: 65px;
  }
}
.small-logo,
.hero h1,
.subtitle,
.info-button,
.information-card h2,
.card-icon,
footer {
  font-family: "Press Start 2P", monospace;
}
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.information-card:first-child .card-icon {
    padding-left: 5px;
}
.information-card:last-child .card-icon {
    padding-left: 3px;
    padding-top: -12px;
}
.opensea-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.download-section{
    margin-top:220px;
    text-align:center;
}

.download-section h2{
    font-family:"Press Start 2P", monospace;
    font-size:26px;
    color:#a7f1f1;
    margin-bottom:35px;
    line-height: 1.3;
}

.download-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.download-btn{
    width:340px;
    height:86px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;

    font-family:"Press Start 2P", monospace;
    font-size:20px;

    color:white;
    background:rgba(52,18,67,.45);

    border:1px solid #c982ff;
    border-radius:10px;

    box-shadow:
        0 0 18px rgba(201,130,255,.35),
        inset 0 0 25px rgba(201,130,255,.08);

    cursor:pointer;
}

.download-btn:hover{
    box-shadow:
        0 0 28px rgba(201,130,255,.55);
}

.download-btn i{
    font-size:28px;
}

.nft-input{
    width:380px;
    height:86px;

    background:transparent;

    border:1px solid rgba(201,130,255,.45);
    border-radius:10px;

    padding:0 30px;

    color:white;

    font-size:24px;
    font-style:italic;
}

.nft-input::placeholder{
    color:#666;
}

.soon-text{
    margin-top:200px;
    margin-bottom: 160px;

    font-family:"Press Start 2P", monospace;
    font-size:76px;

    color:#3f294a;
}
.info-button {
     display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;

    padding-left: 28px;
}

.info-button img,
.info-button i {
    font-size: 40px;
    width: 40px;
    height: 40px;
}

.info-button span {
    font-size: 16px;
       font-size: 16px;
    white-space: nowrap;
}
/* ===== MOBILE FIX ===== */
@media (max-width: 600px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* Startseite */
  .hero {
    width: 100%;
    padding-top: 85px;
    overflow: hidden;
  }

  .model-area {
    width: 100%;
    height: 410px;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 18px 35px;
    text-align: center;
  }


.hero h1 {
    font-size: clamp(52px, 14vw, 62px);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

  .subtitle {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(14px, 4.2vw, 18px);
    line-height: 1.45;
    letter-spacing: 3px;
  }

  .hero-buttons {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .info-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 70px;
    padding: 12px 15px;
    justify-content: center;
    gap: 10px;
    font-size: clamp(13px, 3.8vw, 12px);
    white-space: nowrap;
  }

  .opensea-button span {
    font-size: 14px;
}

  .hero-buttons .info-button:last-child {
    font-size: clamp(12px, 3.5vw, 15px);
    letter-spacing: 1px;
  }

  .info-button img,
  .info-button i {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    font-size: 28px;
  }

  .opensea-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  /* Informationskarten */
  .information-section {
    width: 100%;
    padding: 70px 16px 45px;
  }

  .information-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0 auto 28px;
    padding: 24px 20px;
    overflow: hidden;
  }

  .card-heading {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .card-heading h2 {
    min-width: 0;
    flex: 1;
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.35;
    letter-spacing: 1px;
    white-space: normal;
    overflow-wrap: normal;
  }

  .card-icon {
    width: 54px;
    min-width: 54px;
    height: 58px;
    font-size: 30px;
    flex-shrink: 0;
  }

  .information-card p {
    padding-left: 0;
    font-size: 16px;
    line-height: 1.75;
  }

  /* Download-Bereich */
  .download-section {
    width: 100%;
    margin-top: 100px;
    padding: 0 16px;
    text-align: center;
  }

  .download-section h2 {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 28px;
    font-size: clamp(23px, 7vw, 31px);
    line-height: 1.3;
    letter-spacing: 1px;
  }

  .download-wrapper {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 18px;
  }

  .download-btn,
  .nft-input {
    width: 100%;
    max-width: 100%;
    height: 76px;
    margin: 0;
    border-radius: 10px;
  }

  .download-btn {
    padding: 0 16px;
    gap: 12px;
    font-size: clamp(17px, 5vw, 22px);
  }

  .download-btn i {
    font-size: 26px;
  }

  .nft-input {
    padding: 0 22px;
    font-size: 21px;
  }

  .soon-text {
    margin-top: 105px;
    margin-bottom: 105px;
    font-size: clamp(48px, 15vw, 68px);
    line-height: 1;
    text-align: center;
  }

  footer {
    width: calc(100% - 32px);
    margin: 45px auto 0;
    padding: 28px 10px;
    font-size: 11px;
    letter-spacing: 4px;
  }
  .hero-content h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 54px !important;
    line-height: 1 !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    white-space: nowrap !important;
}