:root{
	--bg:#0D0D0D;
	--fontColor:#BFC7CF;
	--color1: #00C6FF;
	--color2:#0072FF;
}

body {
	color: var(--fontColor);
	margin: 0;
	width: 100%;
	background-color:var(--bg);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
header{
	z-index: 1000;
	position: sticky;
	top:0;
}
.container {
	background-color: #121212;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--fontColor);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.logo {
	font-size: 28px;
	color:var(--color1);
	cursor: pointer;
	text-decoration: none;
}
nav {
	display: flex;
	gap: 2.5rem
	
}
nav a {
	color: var(--fontColor);
	text-decoration: none;
	font-size: 1.4rem;

}
nav a:hover {
	color: var(--color1);
	transform: translateY(-5px);
}
.active{
	color: var(--color1);
}
.img1-container {
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
}
.img1{
	position: relative;
	min-height: 56vh;
	background-size: cover;
	background-position: center;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top:2.6rem;
}
.btn{
	display: inline-block;
	padding: 0.8rem 1.7rem;
	border-radius: 16px;
	text-decoration: none;
	font-weight:600;
	margin-top: 2.4rem;
}
.btn1{
	color: #021223;
	background: linear-gradient(90deg, var(--color1),var(--color2));
	box-shadow:0 10px 30px rgba(0,198,255,0.08)
	
}
.btn2{
	background: transparent;
	color:var(--fontColor);
	border: 1px solid rgba(255, 255, 255, 0.101);
	backdrop-filter: blur(6px);
}
.img1 h1{
	margin-bottom: 10px;
	color:var(--color1);
	font-size: 3rem;
}
span{
	color: var(--fontColor);
}
.img1 p{
	margin-top: 0;
}
#genre{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--fontColor);
	padding-top: 2.4rem;
}

.genreImgCont{
	min-height: 56vh;
	width: 96%;
}
.genreCard{
	display:flex;
	flex-direction: row;
	gap:2rem;
	margin-top:3rem;
	justify-content: center;
	align-items: center;
	list-style: none;
}
.genre-container h2{
	font-size: 2rem;
}
.card{
	height:14.5rem;
	width:18.5rem;
	border-radius: 16px;
}

.card1{
	background-image: url(../images/rpgimg.png);
	background-size: cover;

}
.card2{
	background-image: url(../images/BattleRoyal.png);
	background-size: cover;

}
.card3{
	background-image: url(../images/RolePLaying.png);
	background-size: cover;

}
.card p{
	color:var(--fontColor) ;
	display: flex;
	font-weight: bold;
	padding-top: 11rem;
	justify-content: center;
}
.contactInfoCont{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 2.4rem;
}
.contactInfoCont h2{
	font-size: 2rem;
}
.contactInfoCont p{
 font-size: 1rem;
}
.contactForm{
	background: #141418;
	padding: 1.1rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.02);
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin-bottom: 2.4rem;
	width:26vw;
	justify-content: center;
	padding: 2.5rem 2.5rem;
	
}
.contactForm label{
	font-size:1rem;
	color: var(--fontColor);
}
.contactForm input, .contactForm textarea{
	background-color: transparent;
	border:1px solid black;
	padding:0.9rem 1rem;
	border-radius: 12px;
	color: var(--fontColor);
}
.contactForm input:focus, .contactForm textarea:focus{
	outline: none;
	border-color: var(--color1);
	box-shadow: 0 6px 20px rgba(0, 198, 255, 0.06);
}
.btn3{
	width:10rem;
	border: none;
}
footer{
	margin-top: 2.4rem;
	text-align: center;
	margin-bottom: 2.9rem;
}
.btn:hover{
	box-shadow: 0 4px 8px rgba(47, 0, 255, 0.67);
	transform: translateY(-5px);
}
.card:hover{
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(47, 0, 255, 0.67);
}
/*the extra css that is used in webDev1.html*/
.theorySection{
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  color: var(--fontColor);
  line-height: 1.8;
}

.theorySection h2, 
.theorySection h3, 
.theorySection h4{
  color: var(--color1);
  margin-top: 1.5rem;
}

.theorySection a{
  color: var(--color2);
  text-decoration: none;
}

.theorySection code{
  background: rgba(255,255,255,0.05);
  padding: 2px 6px;
  border-radius: 4px;
}

.theorySection pre{
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  color: var(--color1);
}
