@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

.background {
    background-image: url(img/one.jpg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  

.main-width {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
}

.ETS {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.ETS header .logo h2 a {
    display: block;
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    color: white;
}

.ETS header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 30px;

}

nav ul li {
    list-style: none;
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: white;
    margin-left: 40px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: .4s;
}

nav ul li:not(:last-child) a:hover, 
nav ul li:not(:last-child) a:focus{
    border-bottom: 2px solid white;
}


nav ul li.btn a {
    background: white;
    color: black;
    border: 1px solid white;
    padding: 9px 20px;
    border-radius: 10px;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 500;
    margin-left: 150px;
}

nav ul li.btn:hover a {
    border: 1px solid white;
    color: white;
    background: transparent;
    transition: .4s;
}

.content {
    padding-top: 140px;
    padding-right: 100px;
}

.content .main-text {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}


.content .main-text h1 {
    font-size: 100px;
    line-height: 1;
    color: #EBE5C2;
    margin: 0px 0px 45px;
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
}

.content .main-text p {
    max-width: 100%;
    width: 480px;
    color: white;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.content .main-text a {
    display: inline-block;
    text-decoration: none;
    color: black;
    background: white;
    border: 1px solid white;
    padding: 9px 25px;
    line-height: 1.4;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.content .main-text a:hover {
    transform: scale(1.2);
    border: 1px solid;
    background: transparent;
    color: white;
    transition: .4s;
}

.content .main-text a.gameplay {
    border: 1px solid;
    background: transparent;
    color: white;
    margin-left: 20px;
}

.content .main-text a.gameplay i {
    margin-right: 12px;
    
}

.content .main-text a.gameplay:hover {
    color: black;
    background: white;
    border: 1px solid white;
    transition: .4s;
}

.content .social {
    position: relative;
}

.content .social a {
    display: inline-block;
    color: white;
    margin-right: 25px;
    font-size: 24px;
}

.content .social a:hover {
    transform: scale(1.2);
    transition: .4s;
    color: #4f73e1;
}
  

.video-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}


nav .escape-es {
    width: 80px; 
}


.about h1 {
    padding-top: 30px;
    color: #EBE5C2;
    font-size: 25px;

}

.about p {
    font-size: 15px;
    color: white;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}




/* PHOTOS CSS */

.gameplay-section {
  margin-top: 20px;
  border-radius: 60px;
  text-align: center;
  background: rgba(85, 141, 196, 0.644);
  backdrop-filter: blur(2px);
  padding: 60px 20px;
  color: #fff;
}

.gameplay-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.gameplay-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gameplay-gallery img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gameplay-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}





/* ABOUT US CSS */
.about { 
  padding: 30px;
  border-radius: 50px;
  color: #fff;
  background: rgba(85, 141, 196, 0.644);
  backdrop-filter: blur(2px);
  margin-top: 10px;
}