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

body {
  background-color: #000000;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
}

.banner-wrap {
  position: relative;
  width: 100%;
  height: clamp(240px, 42vw, 420px);
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenburns 14s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.8) 100%);
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.brand-text {
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.brand-subtext {
  margin-top: 0.75rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f2f2f2;
}

.page-body {
  min-height: 100vh;
}

.section {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section + .section {
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.studios {
  max-width: 900px;
}

.section-heading {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #3b82f6;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-text {
  color: #e6e6e6;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.section-text:last-child {
  margin-bottom: 0;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.stat-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 1.25rem 2.5rem;
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.06);
}

.stat-badge-link {
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.stat-badge-link:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(59, 130, 246, 0.1);
}

.stat-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0.35rem;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: #3b82f6;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b9b9b9;
}

.studio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.studio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 200px;
  padding: 1.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.studio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.06);
}

.studio-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
}

.studio-icon-wrap-dark {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.studio-icon {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.studio-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #f2f2f2;
}

.studio-role {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: #3b82f6;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
}

.devlink-card {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.06);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.devlink-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(59, 130, 246, 0.1);
}

.devlink-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.devlink-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #f2f2f2;
}

.devlink-url {
  font-size: 0.85rem;
  color: #b9b9b9;
  letter-spacing: 0.5px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-4px);
}

.contact-discord {
  background: #5865f2;
  box-shadow: 0 12px 30px -8px rgba(88, 101, 242, 0.6);
}

.contact-discord:hover {
  box-shadow: 0 18px 40px -8px rgba(88, 101, 242, 0.8);
}

.contact-email {
  background: #3b82f6;
  box-shadow: 0 12px 30px -8px rgba(59, 130, 246, 0.6);
}

.contact-email:hover {
  box-shadow: 0 18px 40px -8px rgba(59, 130, 246, 0.8);
}

.contact-icon {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

@media (max-width: 480px) {
  .brand-text {
    letter-spacing: 3px;
  }

  .brand-subtext {
    letter-spacing: 1.5px;
  }
}
