/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

body {
    background-color: #0e0e0e;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
	padding: 20px 40px;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(14, 14, 14, 0.95);
	backdrop-filter: blur(6px);
}

.navdiv {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.navdiv .logo a {
	color: #fa1e4e;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

li {
	list-style: none;
	display: inline-block;
}

li a {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-right: 20px;
	text-transform: uppercase;
}

.navbar a:hover {
	color: #ffa923;
	transition-duration: 0.8s;
}

/* Banner */
.banner {
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
	display: flex;
}

.banner img {
	position: relative;
	width: 100%;
	height: 10vh;
	overflow: hidden;
	display: flex;
	margin-top: 69vh;
	margin-left: 10px;
}

.banner video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-overlay {
	position: relative;
	text-align: center;
	z-index: 2;
}

.banner-overlay h1 {
	font-size: 3rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	margin-bottom: 15px;
}

.banner-overlay p {
	font-size: 1.2rem;
	color: #ddd;
}

.portfolio{
	position: relative;
	width: 100%;
	display: flex;
}

.portfolio h2{
    background-color: #191418;
    margin-top: 35px;
    margin-left: 9%;
    width: 82%;
    height: 100px;
    padding-top: 36px;
    padding-left: 50px;
    border-radius: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Using Helvetica Neue or Arial */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 25px;

}

.game-title {
  position: absolute;
  right: 10px;
  top: 20px;
  font-family: 'Impact', sans-serif;
  font-size: 24px;
}

.art-container img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.art-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  min-width: 800px;
  min-height: 600px;
}

.art-container {
  position: relative;
  text-align: center;
  margin: 40px auto;
  max-width: 1200px;
  max-height: 2000px;
  margin-bottom: 5px ;
}

.text{
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
}

.container {
  display: flex;
  max-width: 900px;
  width: 100%;
  background: transparent;
  padding: 40px;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  margin-left: 34%;
  margin-bottom: 30px;
}

/* Buttons */
.btn.small {
	padding: 8px 16px;
	border-radius: 25px;
	background: #fa1e4e;
	color: white;
	font-size: 0.9rem;
	font-weight: bold;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
}

.btn.small:hover {
	background: linear-gradient(to right, #fa1e4e, #ff8040);
	transform: scale(1.05);
}

/* Footer */
.footer {
	background: #0e0e0e;
	padding: 30px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid #222;
}

.footer p {
	color: #aaa;
	font-size: 0.9rem;
	margin-right: 1080px;
}

.footer img{
	max-width: 30px;
	max-height: 30px;
}

.footer ul {
	gap: 20px;
}

.footer i {
    color: white;
    font-size: 24px;
	transition: color 0.3s ease;
}

.footer i:hover {
    color: #fa1e4e;
}

/* Responsive */
@media (max-width: 768px) {
	#nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		background-color: rgba(14, 14, 14, 0.95);
		position: absolute;
		top: 70px;
		left: 0;
		text-align: center;
		padding: 10px 0;
		z-index: 999;
	}

	#nav-links li {
		margin: 15px 0;
	}

	.hamburger {
		display: flex;
	}

	#nav-links.active {
		display: flex;
	}

	body {
		background-image: none;
	}
}

@media (max-width: 1000px) {
		body {
		background-image: none;
	}
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}