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

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #d5f1ff;
  overflow: hidden;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #d5f1ff;
}

/* Header */
.header {
  position: absolute;
  top: 24px;
  left: 60px;
  width: calc(100% - 120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #7fa9be;
  white-space: nowrap;
  z-index: 3;
}

.header-left {
  flex: 1;
}

.header-center {
  flex: 1;
  text-align: center;
}

.header-right {
  flex: 1;
  text-align: right;
  text-decoration: underline;
  cursor: pointer;
}

/* Hero Image */
.hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 50vw, 736px);
  height: clamp(300px, 50vw, 736px);
  z-index: 2;
  aspect-ratio: 1 / 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Studio Name */
.studio-name {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vw - 120px);
  height: clamp(300px, 60vw, 700px);
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  max-width: 1320px;
}

.studio-name-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  z-index: -1;
}

#studio-name-canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Info Section */
.info {
  position: fixed;
  bottom: 174px;
  left: 60px;
  max-width: 386px;
  z-index: 3;
}

.info-main {
  font-size: 16px;
  font-weight: 500;
  color: #7fa9be;
  line-height: 24px;
  margin-bottom: 8px;
}

.info-sub {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

/* Bottom Links */
.bottom-links {
  position: absolute;
  bottom: 24px;
  left: 60px;
  width: calc(100% - 120px);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: #7fa9be;
  text-align: center;
  z-index: 3;
}

.link {
  flex: 1;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.link:hover {
  opacity: 0.7;
}

/* Design Grid Overlay */
.grid-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  display: none;
  pointer-events: none;
}

.grid-overlay.grid-visible {
  display: block;
}

/* Hide grid on viewports smaller than 1440px */
@media (max-width: 1439px) {
  .grid-overlay {
    display: none !important;
  }
}

