#edition-select {
    background: #0a0b0a url(../img/crt-bg.webp) center top / 100% auto repeat-y;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
	height: 100vh;
    bottom: 0;
    z-index: 200;
    padding: 32px;
    display: block;
}

#edition-select .inner {
  position: relative;
  display: flex;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  justify-content: center;
  min-height: calc(100vh - 4rem);
}

#edition-select .inner .bracket {
    width: 38px;
    height: 38px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;	
}

.box-intro {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.box-intro p {
  font-family: 'Oxanium', sans-serif;
  font-size: 30px;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;	
  margin: 0;
  letter-spacing: 4pt;
}

span.console-tag{
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2pt;
}

.sci-fi-container {
  display: flex;
  width: 100%;	
  gap: 2rem;
  justify-content: center;
  flex-wrap: nowrap; /* stay side-by-side */
  flex-direction: row;
}

.sci-fi-box {
  background-image: url('../img/notched-box-ui.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 508 / 626;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  width: 100%;
  max-width: 600px; /* default for >1600px */
  transition: max-width 0.3s ease;
}

.sci-fi-box .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes top & bottom content apart */
  align-items: center;
  height: 100%; /* important to fill the box height */
  gap: 1.6rem; /* adjust spacing between inner items */
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-img {
  max-width: 520px;
  width: 100%;
  height: auto;
}

.middle-text {
  font-family: 'Oxanium', sans-serif;
  font-size: 40px;
  color: var(--red);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 3.7pt;
}

.platforms-img {
  width: 100%;
  height: auto;
}

.platforms-vre{
	max-width: 350px;
}

.platforms-ee{
	max-width: 310px;
}

.enter-btn {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 280px;
}

.enter-btn img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.enter-btn .btn-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.enter-btn:hover .btn-hover {
  opacity: 1;
}

.enter-btn:hover .btn-default {
  opacity: 0;
}

/* ≤ 1600px: reduce width */
@media (max-width: 1600px) {
	.box-intro {
  	margin-bottom: 35px;
	}
	
	.box-intro p {
  	font-size: 26px;
	}
	
	.sci-fi-box {
    max-width: 450px;
	padding: 25px;
  	}
	
	.top-img {
	max-width: 380px;
	}
	
	.middle-text {
    font-size: 30px;
	}
	
	span.console-tag{
	font-size: 14px;
	}
	.platforms-vre{
	max-width: 280px;
	}

	.platforms-ee{
	max-width: 240px;
	}
	
	.enter-btn {
    max-width: 250px;
	}
}

/* ≤ 1180px: reduce further */
@media (max-width: 1180px) {
	.box-intro {
  	margin-bottom: 30px;
	}
	
	.box-intro p {
    font-size: 22px;
	}
	
  	.sci-fi-box {
	background-image: url('../img/notched-box-ui-mobile.svg');
    aspect-ratio: 508 / 745;
    max-width: 358px;
  	}
	
	.middle-text {
   	font-size: 24px;
	}
	
	span.console-tag{
	font-size: 11px;
	}
	
	.platforms-vre{
	max-width: 245px;
	}

	.platforms-ee{
	max-width: 225px;
	}
}

/* Stack vertically only below 820px */
@media (max-width: 820px) {
	#edition-select {
    padding: 20px;
	height: 100%;
	}
  	
	.sci-fi-box {
	width: 100%;
    max-width: 370px;
  	}
	
	.sci-fi-container {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  	}
	
	.sci-fi-box .content {
  	gap: 35px;
	}
	
	.box-intro {
    width: 100%;
    max-width: 400px;
	}
}

@media (max-width: 650px) {
	.sci-fi-box {
	padding: 0;
    align-items: flex-start;
    }
	.sci-fi-box .content {
	padding: 25px;
  	justify-content: normal;
	}
}

@media (max-width: 460px) {
	.sci-fi-box .content {
    gap: 25px;
	}
	
	.box-intro {
    margin-bottom: 20px;
    }
  
	.sci-fi-container {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    }
	
	.middle-text {
   	font-size: 18px;
    }
	
	.box-intro p {
    font-size: 18px;
	}
}