*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  background-color: #050f1a;
  margin: 0;
  padding: 0;
  color: white;
  user-select: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  overflow-x: hidden;
}


.blob-outer-container {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: -1;
  inset: 0;
  margin: auto;
  filter: blur(100px);
}
.blob-inner-container {
  border-radius: 99999px;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(0.7);
  transition: background 1s ease-in-out;
  pointer-events: none;
}
.blob {
  position: absolute;
  width: 100%;
  height: 100vh;
  inset: 0;
  margin: auto;
  opacity: 0.5;
  background: conic-gradient(
    from 0deg,
    rgb(0, 119, 255),
    rgb(140, 0, 255),
    rgba(76, 0, 255, 0.8),
    rgb(0, 225, 255),
    #c300ff
  );
  animation: spinBlob 8s linear infinite;
  transition: background 2s ease-in-out, opacity 1.5s ease-in-out;
}

@keyframes spinBlob {
  0% {
    transform: rotate(0deg) scale(2);
  } 
  100% {
    transform: rotate(1turn) scale(2);
  }
}

.logo-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.logo {
  width: 250px;
  height: auto;
}

nav{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  justify-items: center;
}

nav ul{
  width: 100%;
  max-width: 1000px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav li{
  height: 60px;
}

nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: white;
}

nav a:hover{
  background-color: rgb(98, 0, 255);
}

nav li:first-child{
  margin-right: auto;
}

nav li:first-child:hover{
  background-color: rgb(98, 0, 255, 0);
}

.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgb(0, 0, 0, 1);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li{
  width: 100%;
}

.sidebar a{
  width: 100%;
}

.menu-button{
  display: none;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 28px;     /* anpassen */
  width: auto;
  display: block;
}

.cards-container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

.card {
  width: 385px;
  min-height: 50px;

  background: rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal zentriert */
  text-align: center;       /* Text mittig */
  padding: 20px;
  gap: 8px;


  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);

}

.card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.2);
}


.card-img {
  width: 60px;
  margin-top: 8px;
  height: auto;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
}

.card-subtitle {
  font-size: 14px;
  opacity: 0.8;
}

/* Desktop bleibt nebeneinander (wie vorher), packen wir nur in .cards/.cards-track */
.cards {
  position: relative;
  margin-top: 50px;
  z-index: 5;
  margin-left: 16px;
  margin-right: 16px;
}

.cards-track {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.studio-statement {
  position: relative;
  z-index: 5;
  margin-top: 80px;
  padding: 0 20px;
}

.studio-statement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 38px;

  background: rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  backdrop-filter: blur(12px);

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.statement-left h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.statement-left p {
  margin: 0;
  line-height: 1.75;
  opacity: 0.9;
  max-width: 60ch;
}

.statement-right {
  display: grid;
  gap: 18px;
}

.pillar {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar h4 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

.pillar p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .studio-statement-inner {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }
}


.feature-section {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal zentriert */
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  gap: 24px;
  z-index: 5;
  position: relative;
}

.feature-image {
  width: 80px;
  max-width: 90%;
  border-radius: 18px;
}

.feature-text {
  max-width: 700px;
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 1;
}

.feature-text2 {
  max-width: 1000px;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 1;
}


.feature-button {
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  margin-top: 16px;
  text-decoration: none;
  font-weight: 600;
  transition:
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-button:hover {
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.featured {
  position: relative;
  z-index: 5;
  margin-top: 90px;
  padding: 0 20px;
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;

  border-radius: 20px;
  display: block;

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  filter: contrast(1.05) saturate(1.05);

}

.featured-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);

  display: grid;
  place-items: center;

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.featured-placeholder span {
  font-size: 14px;
  letter-spacing: 0.3px;
  opacity: 0.75;
}

/* Text */
.featured-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 1;
}

.featured-title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.featured-text {
  margin: 0 0 22px;
  line-height: 1.7;
  opacity: 0.88;
  max-width: 55ch;
}

/* Buttons */
.featured-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;

  transition:
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.featured-btn.primary {
  background: #ffffff;
  color: #050f1a;
}

.featured-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 10px rgba(140, 0, 255, 0.45),
    0 0 25px rgba(0, 195, 255, 0.30),
    0 0 45px rgba(140, 0, 255, 0.22);
}

.featured-btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.featured-btn.ghost:hover {
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

/* Responsive */
@media (max-width: 900px) {
  .featured-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .featured-text {
    max-width: 100%;
  }
}

.philosophy {
  margin-top: 120px;
  text-align: center;
  z-index: 5;
  position: relative;
}

.philosophy h2 {
  margin-bottom: 24px;
}

.philosophy-points {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.philosophy-points p {
  max-width: 260px;
}


.site-footer {
  position: relative;
  z-index: 5;
  margin-top: 120px;
  padding: 64px 20px 24px;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  height: 34px;
  width: auto;
  display: block;
}

.footer-tagline {
  margin-top: 14px;
  opacity: 1;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.3px;
  opacity: 0.9;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  transition: opacity 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.8;
}


@media(max-width: 700px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
  
.feature-text {
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.feature-text2 {
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

  .cards-track {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 16px;
    padding: 0 20px;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .cards-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .card {
    flex: 0 0 85vw; /* eine Card sichtbar */
  }

  .card:hover {
  transform: translateY(0px);

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0);
}

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-col a {
    padding: 10px 0;
  }

  .footer-bottom {
    margin-top: 22px;
    text-align: center;
  }
}

@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
}

/* ===== Games Page ===== */

.page-header{
  max-width: 1200px;
  margin: 80px auto 0;
  text-align: center;
  padding: 0 20px;
}

.games-grid {
  display: grid;
  max-width: 700px;
  margin-top: 60px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-left: 50px;
  margin-right: 50px;
  justify-self: center;
}

.game-card {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);

  overflow: hidden;

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  opacity: 1;
}

.game-content {
  padding: 26px 24px 26px;
}

.game-title {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.game-subtitle {
  margin: 0 0 22px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Button */
.game-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  text-decoration: none;

  transition:
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-btn:hover {
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

/* Responsive */
@media (max-width: 900px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

.faq {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.faq-list {
  display: grid;
  gap: 18px;
}

/* Card-Look */
.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

/* Question row */
.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* remove default arrow */
.faq-question::-webkit-details-marker {
  display: none;
}

/* Custom + icon */
.faq-question::after {
  content: "+";
  font-size: 18px;
  opacity: 0.85;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item[open] .faq-question::after {
  content: "–";
}

/* Answer */
.faq-answer {
  padding: 0 20px 18px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.88;
}

/* subtle hover polish */
.faq-item:hover {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.1);
}

/* Mobile spacing */
@media (max-width: 900px) {
  .faq {
    margin-top: 60px;
  }

  .faq-question {
    padding: 16px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }
}
