body {
  min-width: 1004px;
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;

  background-image: url("sitebg2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


/* ================= CORE FIX ================= */
.site-shell {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 90px;
  min-width: 934px;
}

/* TOP BAR - HEADER */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;

  box-sizing: border-box;
}

.logo {
  font-family: 'Orbitron', sans-serif;
}

.logo .jp {
  font-family: 'M PLUS 1p', sans-serif;
}

/* ================= LOGO - CENTER ================= */
.logo-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  margin-left: 0;
  margin-top: 24px;
}

.jp-title {
  font-family: 'Noto Sans JP', sans-serif;

  font-size: 72px;
  font-weight: 700;
  line-height: 0.95;

  margin: 0;

  color: white;

  letter-spacing: 3px;

  text-shadow:
    0 0 8px rgba(255,255,255,0.35),
    0 0 24px rgba(255,255,255,0.12);
}

.logo-stack h1 {
  font-family: 'Orbitron', sans-serif;

  font-size: 11px;
  font-weight: 400;

  margin: 12px 0 0 0;

  color: #b6ff4d;

  letter-spacing: 15px;
  text-transform: uppercase;

  text-align: center;

  width: 100%;
  opacity: 0.95;

  text-shadow: 0 0 8px rgba(182,255,77,0.25);
}

/* ================= TAGLINE ================= */
.voice-tag {
  font-family: 'Noto Sans JP', sans-serif;
  color: #b6ff4d;

  font-size: 22px;
  letter-spacing: 2px;

  margin: 20px 0;

  text-align: center;

  line-height: 1.4;

  text-shadow: 0 0 10px rgba(182,255,77,0.25);
}

.voice-tag .en {
  display: block;

  font-family: 'Orbitron', sans-serif;

  font-size: 9px;
  color: #ffffff;
  opacity: 0.75;

  margin-top: 4px;

  letter-spacing: 1px;
}

/* ================= NAV ================= */
.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

  text-decoration: none;
  font-family: 'Orbitron', sans-serif;

  opacity: 0.85;

  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;

  transition: 0.25s ease;
  color: white;
}

.nav a:hover {
  transform: translateY(-2px);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  height: 2px;

  background: #b6ff4d;
  box-shadow: 0 0 8px rgba(182,255,77,0.7);

  transition: 0.25s ease;
}

.nav a:hover::after {
  width: 80%;
}

.nav .en {
  font-size: 13px;
  text-transform: uppercase;
}

.nav .jp {
  font-size: 10px;
  margin-top: 2px;
  color: #b6ff4d;
}

/* ================= HERO GRID ================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1.1fr;
  grid-template-areas:
    "left center right"
    "left player player";

  gap: 20px;
  align-items: start;
  position: relative;
}

/* LEFT */
.hero-left {
  grid-area: left;
  position: relative;
  z-index: 0;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  min-height: 735px;
}

/* ================= IMAGE ================= */
.moku-image {
  position: relative;
  width: 100%;
  overflow: visible;
  z-index: 0;
  display: flex;
  align-items: flex-end;
}

.moku-image img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 880px;
  width: auto;
}

/* CENTER */
.hero-center {
  grid-area: center;
  position: relative;
  z-index: 2;
}

/* RIGHT */
.hero-right {
  grid-area: right;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  width: 100%;
}

/* ================= QUICK BOX ================= */
.quick-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #b6ff4d;

  padding-bottom: 6px;
  margin-bottom: 6px;

  border-bottom: 1px solid rgba(182,255,77,0.25);

  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-title .jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 7px;
  color: white;
  opacity: 0.75;
}

.quick-box {
  width: 290px;
  display: flex;
  flex-direction: column;

  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.25);

  padding: 16px;
  gap: 14px;

  text-align: left;

  margin-top: 45px;
  margin-left: 0;

  align-self: flex-start;
  box-sizing: border-box;
}

.quick-box a {
  display: flex;
  flex-direction: column;

  text-decoration: none;

  padding: 14px 12px;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);

  transition: 0.2s ease;

  gap: 4px;

  width: 100%;
  box-sizing: border-box;

  will-change: transform;
}

.quick-box .jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: white;
  letter-spacing: 1px;
}

.quick-box .en {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  color: #b6ff4d;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.quick-box a:hover {
  border-color: #b6ff4d;
  background: rgba(182,255,77,0.05);
  transform: translateX(4px);
  position: relative;
}

/* ================= INFO BOX ================= */
.info-box {
  font-size: .9em;
  display: flex;
  flex-direction: column;

  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.25);

  padding: 0;
  gap: 0;

  width: 100%;
  max-width: 530px;
    background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(57, 255, 20, 0.25);
}

.info-row {
  position: relative;

  display: grid;
  grid-template-columns: 180px 1fr;

  padding: 4px 12px;
  margin: 0;

  border-bottom: 1px solid rgba(182,255,77,0.12);

  align-items: center;
}

.info-label {
  font-size: 0.9em;
  letter-spacing: 1.5px;
  opacity: 0.75;
  text-transform: uppercase;
  line-height: 1.1;
  font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
  color: #b6ff4d;

  min-width: 0;
}

.info-value {
  font-size: 1em;
  letter-spacing: 0.5px;
  text-align: left;
  line-height: 1.1;
  font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
  min-width: 120px;
  min-width: 0;
}

.info-label .jp,
.info-value .jp {
  display: block;
  font-size: 0.8em;
  opacity: 0.65;
  margin-top: 3px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.info-value .en {
  display: block;
  font-size: 11px;
  color: #b6ff4d;
  opacity: 0.95;
  margin-top: 2px;
}

.info-box::-webkit-scrollbar {
  width: 4px;
}

.info-box::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
}

.info-box::-webkit-scrollbar-thumb {
  background: rgba(182,255,77,0.4);
  border-radius: 2px;
}

.info-box::-webkit-scrollbar-thumb:hover {
  background: rgba(182,255,77,0.7);
}

.info-box {
  scrollbar-width: thin;
  scrollbar-color: rgba(182,255,77,0.4) rgba(0,0,0,0.2);
}

/* ================= PLAYER AREA ================= */
.voice-player {
  grid-area: player;
  width: 100%;
  max-width: 88%;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.voice-player-inner {
  width: 100%;

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

  margin-left: 0;

  padding: 18px 22px;
  min-height: 100px;

  position: relative;
  overflow: hidden;

  border-radius: 14px;

  border: 1px solid rgba(182,255,77,0.25);
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
  );

  box-shadow:
    0 0 20px rgba(182,255,77,0.08),
    inset 0 0 12px rgba(0,0,0,0.6);

  backdrop-filter: blur(6px);

  flex-wrap: nowrap;
  box-sizing: border-box;
}

.voice-player-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: repeating-linear-gradient(
    to bottom,
    rgba(182,255,77,0.10) 0px,
    rgba(182,255,77,0.10) 1px,
    transparent 2px,
    transparent 5px
  );

  opacity: 0.35;
  mix-blend-mode: normal;

  animation: scanMove 1.8s linear infinite;
}

@keyframes scanMove {
  from { transform: translateY(0); }
  to { transform: translateY(8px); }
}

.play-btn {
  width: 44px;
  height: 44px;

  border-radius: 6px;

  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(182,255,77,0.6);

  color: #b6ff4d;
  font-size: 16px;

  cursor: pointer;

  transition: 0.2s ease;

  box-shadow: 0 0 10px rgba(182,255,77,0.15);

  flex: 0 0 auto;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(182,255,77,0.3);
}

.sample-select {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(182,255,77,0.5);
  color: #b6ff4d;

  padding: 8px 10px;

  font-family: 'Orbitron', sans-serif;

  outline: none;

  box-shadow: inset 0 0 10px rgba(0,0,0,0.4);

  width: 160px;
  min-width: 160px;
  max-width: 160px;

  box-sizing: border-box;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  flex: 0 0 160px;
}

.waveform {
  flex: 1 1 0;
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 2px;
  height: 50px;
  opacity: 0.9;

  overflow: hidden;
}

.waveform span {
  width: 2px;
  min-height: 6px;

  background: linear-gradient(
    to top,
    rgba(182,255,77,0.4),
    rgba(182,255,77,0.9)
  );

  border-radius: 2px;
}

.voice-meta {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: #b6ff4d;
  opacity: 0.9;
  white-space: nowrap;

  flex: 0 0 auto;
}
.voice-module {
  position: relative;
  width: 100%;
}

.scanlines {
  display: none;
}
/* ================= EXTRA GRID ================= */
.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.download-box a {
  display: flex;
  justify-content: space-between;

  padding: 12px 16px;

  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Orbitron', sans-serif;
}

.download-box a:hover {
  background: rgba(182,255,77,0.08);
}

.notes-box {
  padding: 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ================= EXTRA SECTION TITLES ================= */
.extra-left .section-title,
.extra-right .section-title {
  width: 100%;
  background: #000;
  color: #b6ff4d;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 14px 16px;
  margin: 0;
  text-align: center;
  box-sizing: border-box;
}

.extra-left .section-title .jp,
.extra-right .section-title .jp {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: white;
  opacity: 0.75;
  margin-top: 4px;
}

.section-title .jp {
 display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: white;
  opacity: 0.75;
  margin-top: 4px;
}

/*============================TWITTER AND BSKY UPDATES============================*/
.updates-box {
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
}

.update-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(182,255,77,0.1);
  padding-bottom: 12px;
}

.update-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.update-date {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  color: #b6ff4d;
  letter-spacing: 2px;
}

.update-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: white;
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.updates-follow {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.follow-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(182,255,77,0.4);
  background: rgba(0,0,0,0.3);
  color: #b6ff4d;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.2s ease;
}

.follow-btn:hover {
  background: rgba(182,255,77,0.08);
  border-color: #b6ff4d;
}

.follow-btn img {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}
/* ================= DOWNLOAD BUTTONS ================= */
.extra-left .download-box {
  width: 100%;
  box-sizing: border-box;
  background: rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.extra-left .download-box a,
.extra-left .download-box a:visited,
.extra-left .download-box a:active {
  color: white;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s ease;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.02);
}

.extra-left .download-box a .en {
  color: #b6ff4d;
}

.extra-left .download-box a .right {
  color: white;
}

.extra-left .download-box a .jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #b6ff4d;
  margin-left: 10px;
}

.extra-left .download-box a:hover {
  background: rgba(182,255,77,0.08);
  color: #b6ff4d;
  transform: translateY(-2px);
}

.extra-left .download-box a.download-btn {
  background: rgba(0,0,0,0.4);
  justify-content: center;
  border-top: none;
  border: 1px solid rgba(182,255,77,0.4);
}

.extra-left .download-box a.download-btn:hover {
  background: rgba(0,0,0,0.6);
  transform: none;
}

/* ================= VOICEBANK ACCORDION ================= */

.voicebank-details {
  padding: 0 16px 0;
  overflow: hidden;
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}
.download-box.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.download-box details {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.download-box details:first-child {
  border-top: none;
}
.download-box summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: #b6ff4d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.2s ease;
}
.download-box summary::-webkit-details-marker {
  display: none;
}
.download-box summary::after {
  content: "+";
  color: white;
  font-size: 16px;
}
.download-box details[open] summary::after {
  content: "−";
}
.download-box summary:hover {
  background: rgba(182,255,77,0.08);
}
.summary-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-left: 8px;
}
.voicebank-details {
  padding: 0 16px 16px;
}
.vb-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.vb-label {
  color: #b6ff4d;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
}
.vb-value {
  color: white;
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-align: right;
}
.download-btn {
  display: block;
  margin-top: 16px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(182,255,77,0.4);
  color: #b6ff4d;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  transition: 0.2s ease;
}

.download-btn:hover {
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 12px rgba(182,255,77,0.2);
}
/* ================= RELEASE NOTES ================= */
.extra-right .notes-box {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: white;
  box-sizing: border-box;
}

.extra-right .lang-toggle {
  padding: 6px 10px;
  height: 30px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(182,255,77,0.3);
  color: #b6ff4d;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 0 8px rgba(182,255,77,0.15);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  box-sizing: border-box;
}

.note-entry {
  margin-bottom: 16px;
}

.note-title {
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.note-text {
  font-size: 10px;
  line-height: 1.6;
  opacity: 0.9;
  font-family: 'Noto Sans JP', Arial, sans-serif;
}

/* ================= COVER / USAGE EXAMPLES ================= */
.cover-block {
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.cover-title {
  width: 100%;
  background: #000;
  color: #b6ff4d;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 14px 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
}

.see-more {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #b6ff4d;
  text-decoration: none;
  margin-left: auto;
  opacity: 0.7;
  transition: 0.2s ease;
  white-space: nowrap;
}

.see-more:hover {
  opacity: 1;
  letter-spacing: 4px;
  text-shadow: 0 0 8px rgba(182,255,77,0.5);
}

.cover-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.cover-main iframe,
.cover-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.cover-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cover-item {
  width: 100%;
}

.cover-item.active {
  border-color: #b6ff4d;
}

.cover-desc {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #b6ff4d;
  padding: 6px 8px;
  background: rgba(0,0,0,0.4);
  text-align: center;
}

/* ================= OFFICIAL ARTWORKS ================= */
.artwork-block {
  width: 100%;
  margin-top: 20px;
}

.artwork-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  padding: 12px 0;
}

.artwork-item {
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s ease;
}

.artwork-item:hover {
  border-color: #b6ff4d;
}

.artwork-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.artwork-item:hover img {
  transform: scale(1.03);
}
/* ================= LIGHTBOX ================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(182,255,77,0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(182,255,77,0.3);
  color: #b6ff4d;
  font-size: 36px;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.2s ease;
  line-height: 1;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(182,255,77,0.1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s ease;
}

.lightbox-close:hover {
  opacity: 1;
  color: #b6ff4d;
}
/* ================= FOOTER ================= */
.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-icon {
  display: flex;
  align-items: center;
  transition: 0.2s ease;
}

.footer-icon img {
  width: 32px;   /* adjust to taste */
  height: 32px;
  object-fit: contain;
  opacity: 0.6;
  transition: 0.2s ease;
}

.footer-icon img:hover {
  opacity: 1;
}

.footer-icon:hover {
  color: #b6ff4d;
}

/*=====================USAGE EXAMPLES main=========================*/
.usage-item {
  cursor: pointer;
  position: relative;
}

.usage-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.usage-item:hover {
  border-color: rgba(182,255,77,0.5);
}

.usage-item.active {
  border: 2px solid #b6ff4d;
}

/*==============MOBILE dude im gonna have a stroke===============*/
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  body { min-width: unset !important; overflow-x: hidden; width: 100%; }
  .site-shell { min-width: unset; padding-top: 70px; padding-left: 8px; padding-right: 8px; box-sizing: border-box; }
.topbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
  }

  .logo {
    position: static;
    text-align: center;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
  }

  .nav a {
    padding: 4px 8px;
  }

  .nav .en {
    font-size: 11px;
  }

  .nav .jp {
    font-size: 9px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "center center"
      "left right"
      "player player";
    gap: 0px;
    margin-top: 30px
  }

  .hero-center {
    grid-area: center;
    text-align: center;
    width: 100%;
    margin-bottom: -30px;
    
  }

  .hero-left {
    grid-area: left;
    min-height: 400px;
    position: relative;
    overflow: visible;
  }

  .hero-right {
    display: block;
    grid-area: right;
  }
  .hero-right .quick-box {
  padding: 6px;
  max-width: 65%
}

.hero-right .quick-title {
  font-size: 11px;
    margin: 0;
  padding: 0;
  line-height: 1;
}

.hero-right .quick-title .jp {
  font-size: 9px;
}

.hero-right a {
  padding: 4px 3px;
  font-size: 10px;
}

.hero-right a .jp {
  font-size: 8px;
}
.quick-box {
  margin-left: auto;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(57, 255, 20, 0.25);
}
  .voice-player {
    grid-area: player;
    width: 100%;
    max-width: none;
    margin-top: -35px
  }

  .info-box {
    display: none;
  }

  .moku-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: -20px
  }

  .moku-image img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 400px;
    width: auto;
    bottom: 30px;
  }

  .voice-module,
  .voice-player-inner {
    width: 100%;
    box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-select {
  appearance: none;
  -webkit-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2339FF14' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}


.waveform {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
}

.voice-meta {
  display: none;
}
.extra-left {
  display: none;
}

.extra-grid {
  grid-template-columns: 1fr;
}
.logo-stack {
  margin-top: 0;
}

.jp-title {
  font-size: 36px;
  margin: 0;
  line-height: 1;
}

.logo-stack h1 {
  font-size: 8px;
  letter-spacing: 4px;
  margin: 2px 0;
  line-height: 1;
}

.voice-tag {
  font-size: 13px;
  margin: 2px 0 0;
  line-height: 1.1;
}
  .play-btn { width: 40px; height: 40px; flex-shrink: 0; }
  .sample-select { flex: 1 1 auto; width: auto; min-width: unset; max-width: unset; }
  .waveform { order: 10; width: 100%; flex: 0 0 100%; }
  .voice-meta { display: none; }

  .extra-grid { grid-template-columns: 1fr; }
  .cover-section { grid-template-columns: 1fr; }
  .cover-list { grid-template-columns: 1fr 1fr; }
  .artwork-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ABOUT MEDIA - DONT TOUCH */
@media (max-width: 900px) {
  .about-page { grid-template-columns: 1fr !important; padding: 16px !important; }
  .about-col-left { display: none; }
  .about-row { grid-template-columns: 1fr !important; }
  .about-row-media { border-top: 1px solid rgba(255,255,255,0.05); }
  .about-row-media.empty { display: none; }
}