body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;;
  line-height: 1.6;
  font-size: 18px;
  background-color: #28292d;
  color: #aab2bc;
  padding: 0px;
 }


.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0px;
}

.content-wrapper {
  width: 100%;
  overflow: hidden;
}

.content-wrapperOld {
  width: 100%;
  background-color: #1D202C;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

header {
  padding: 30px;
  padding-top: 40px;
}

.header-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: top;
  padding: 0;
  gap: 30px;
}

nav {
	
}

nav h1 {
	font-weight: bold;
	font-size: 1.6em;
}

  .nav-list {
    justify-content: top;
	text-align: left;
  }
  
  .details-list {
    display: flex;
    flex-direction: column;
    align-items: center;       /* Center column in parent */
    justify-content: center;
    padding: 0;
    margin: 0 auto;            /* This centers the container itself */
    width: fit-content;        /* Ensures the list doesn't stretch full width */
  }

  .details-list li {
    text-align: center; /* optional: center content on mobile */
	width: 100%;
  }
}

nav .break {
	font-weight: normal;
}

.nav-list .nav-spacer {
  flex-grow: 1;
}

a {
  color: #5093E4;
  text-decoration: none;  
}

a:hover {
  text-decoration: underline;
}

main {
  padding: 30px;
  padding-top: 10px;
}

section li {
	margin-right: 30px;
	margin-left: 30px;
	margin-top: 10px;
	margin-bot: 10px;
	padding: 0px;
	line-height: 1.4;
	font-size: 16px;
}

section ul {
	padding-top: 10px;
	padding-bot: 10px;
}


main h2 {
	font-weight: normal;
	font-size:1.2em;
	line-height: 1.1em;
}

section {
  margin-bottom: 60px;
}

.signature-block {
  width: 100%;
  margin-left: auto; 
  text-align: center;
  font-size: 1em;
}

.details-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  margin: 0px 0;
  width: 100%;
  gap: 20px;
  line-height: 1.5em;
}

.emoji {
  display: inline;
  height: 1em;            
  width: auto;             
  vertical-align: -0.05em;  
  max-height: 1em;
}

.details-list h3 {
	padding: 0px;
	margin: 0px;	
}


footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #52575E;
}

.section-title {
  font-size: 1.4rem;
  font-weight: bold;
  padding-bottom: 8px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 40px;
}

.asset-pack {
	margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.asset-pack img{
	width:100%;
	height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 20px;
  margin-bottom: 20px;
}

.screenshot-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.screenshot-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.keyart img{
	width:100%;
	height: auto;
  border-radius: 8px;
  display: block;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px black;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

.hidden {
  display: none;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  padding: 0 20px;
}

#lightbox-prev {
  left: 0;
}

#lightbox-next {
  right: 0;
}

.lightbox-arrow:hover {
  color: #ccc;
}