.name-box {
  height: 4vh;
  width: 98vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: 1vw;
  margin-right: 1vw;
}

.name {
  font-size: 2vh;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0em; /* JS will control this */
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #000000;
  color: #bebebe;
  font-family: 'inter', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

a{
  color: inherit;
  text-decoration: none;
}

a:hover{
  opacity: 85%;
}


img {
  width: 100%;
  height: auto;        /* keeps aspect ratio */
  display: block;
  margin-bottom: 1vw;
}

video {
  width: 100%;
  height: auto;        /* keeps aspect ratio */
  display: block;
  margin-bottom: 1vw;
}

.front img{
  height: 100%;
}

.container {
  display: flex;
      gap: 1vw;
}

.left {
  width: 28%;
  padding-left: 1vw;
}


.right {
  width: 68%;
  padding-left: 0vw;
  display: flex;
  flex-direction: column;   /* stack elements vertically */
  gap: 1vw;
}


#bgVideo {
  width: 100%;
  margin-bottom: 1vw;
}

.six-grid01 {
  display: grid;
  grid-template-columns: 6vw 0.9fr 0.7fr 0.4fr 9vw;
  gap: 0.3em;
  letter-spacing: 0.22vw;
}

.six-grid02 {
  display: grid;
  grid-template-columns: 6vw 0.9fr 0.7fr 0.4fr 9vw;
  gap: 0.3em;
  letter-spacing: 0.22vw;
}

.six-grid03 {
  display: grid;
  grid-template-columns: 6vw 1.9fr 1.6fr 9vw;
  gap: 0.3em;
  letter-spacing: 0.22vw;
}

.slot {
  font-size: 0.9vw;
}

.right-top {
  width: 100%;
}


.right-bottom {
  display: grid;
  grid-template-columns: 20% 50% 30%;  /* ← THIS creates the vertical split */
  gap: 1vw;
  width: 100%;
}



.rightleft {
  width: 100%;
}


.rightright {
  width: 100%;
  display: flex;
  flex-direction: column;     /* stack pictures vertically */
}





