@font-face {
  font-family: 'Gontserrat';
  src: url('assets/Gontserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Minne Petat';
  src: url('assets/Minne Petat.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

.team-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 2;
  position: relative;
  padding: 0;
}
.team-title {
  font-family: 'Minne Petat', serif;
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 2px 16px #000a;
  text-align: left;
  background: transparent;
  display: block;
  margin-left: 0;
  border: none;
  border-radius: 0;
  padding: 0 0 10px 0;
}
.back-btn {
  margin: 18px 0 36px 0;
  padding: 10px 28px;
  font-family: 'Gontserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f4f4f8;
  background: transparent;
  border: 3px solid #fff;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
  display: inline-block;
}
.back-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: transparent;
  border-radius: 0;
  padding: 36px 44px;
  border: 3px solid #fff;
  box-shadow: none;
  min-width: 320px;
  max-width: 98vw;
}
.team-member {
  font-family: 'Gontserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #f4f4f8;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 18px;
}
.team-member img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  margin-right: 8px;
}
.team-nick {
  color: #6e5eff;
}
:root {
  color-scheme: dark;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #050610;
  color: #f4f4f8;
}

body {
  display: grid;
  place-items: center;
  background-image: radial-gradient(circle at top, rgba(255, 105, 125, 0.14), transparent 24%),
                    radial-gradient(circle at bottom right, rgba(55, 150, 255, 0.16), transparent 28%),
                    linear-gradient(180deg, #090a12 0%, #050610 100%);
  position: relative;
}

.background-placeholder {
  position: absolute;
  inset: 0;
  background: url('assets/background.png') center/cover no-repeat;
  filter: brightness(0.4) contrast(1.1);
  z-index: 0;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(96vw, 800px);
  gap: 60px;
}

.logo-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.logo-placeholder {
  width: 300px;
  height: 300px;
  margin: 0 auto 20px;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.logo-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.studio-name {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fafb;
  text-align: center;
}

.button-column {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.button-column a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 12px;
  border-radius: 0;
  text-decoration: none;
  color: #f4f4f8;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: transparent;
  border: 3px solid white;
}

.button-column a img {
  width: 40px;
  height: auto;
  margin-right: 10px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.button-column a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.button-column a:active {
  transform: translateY(0);
}



@media (max-width: 520px) {
  .hero-container {
    flex-direction: column;
    gap: 30px;
  }

  .logo-placeholder {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
  }

  .button-column {
    width: 100%;
  }

  /* Meet the team box mobile tweaks */
  .team-list {
    border: none;
    padding: 18px 10px;
  }
  .team-member {
    font-size: 0.97rem;
  }

  /* Add gap below logo and reduce team member font size on mobile */
  .logo-placeholder {
    margin-bottom: 32px;
  }
  .team-member {
    font-size: 1.05rem;
  }
}

