/* Color Palette */
:root {
  --dark-blue: #0d1b2a;
  --navy-blue: #1b263b;
  --steel-blue: #415a77;
  --light-blue: #778da9;
  --off-white: #e0e1dd;
}

/* Reset and global styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--dark-blue);
  color: var(--off-white);
}

/* Navigation Bar */
.navbar {
  #background-color: var(--navy-blue);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  #position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 50px; /* Adjust the size if necessary */
  max-height: 100px;
}

/* Navigation Menu */
.nav-menu {	
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--off-white);
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--light-blue);
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: var(--steel-blue);
  top: 100%;
  left: 0;
  list-style: none;
  padding: 10px 0;
  min-width: 160px;
  border-radius: 5px;
  z-index: 1;
}

.dropdown-menu li {
  padding: 8px 15px;
}

.dropdown-menu li a {
  color: var(--off-white);
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--off-white);
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: var(--navy-blue);
    width: 100%;
    top: 60px;
    left: 0;
    padding: 10px 30px;
	z-index: 1;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* Hero Header Section */
.hero-header {
  background: url("../img/hero-header.png")
    no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--off-white);
  position: relative;
}

/* Dark overlay for readability */
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.6); /* Semi-transparent overlay */
  z-index: 0;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

/* Branding */
.branding img {
  height: 80px;
  margin-bottom: 10px;
}

.branding h1 {
  font-size: 28px;
  margin: 10px 0;
}

.branding p {
  font-size: 16px;
  color: var(--light-blue);
}

/* Game Categories Navigation - Now Below the Header */
.game-categories {
  background: var(--steel-blue);
  padding: 15px 0;
  text-align: center;
  margin-top: -10px; /* Slight overlap effect */
}

.game-categories ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  gap: 15px;
}

.game-categories li {
  display: inline;
}

.game-categories a {
  text-decoration: none;
  color: var(--off-white);
  background: var(--dark-blue);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
  font-weight: bold;
}

.game-categories a:hover {
  background: var(--light-blue);
}

/* Responsive Header */
@media (max-width: 768px) {
  .hero-header {
    height: 250px;
  }

  .branding h1 {
    font-size: 22px;
  }

  .branding p {
    font-size: 14px;
  }

  .game-categories ul {
    flex-direction: column;
    gap: 10px;
  }

  .game-categories a {
    display: block;
    text-align: center;
    padding: 8px 15px;
  }
}

/* New Releases Section */
.new-releases {
  text-align: center;
  background: var(--dark-gray);
  padding: 20px;
}

.new-releases h2 {
  margin-left: 0; /* Removes extra margin */
  font-size: 24px;
  color: white;
}

/* Slider Container */
.slider-container {
  width: 80%; /* Adjust based on your design */
  margin: 0 auto; /* Centers the slider */
}
.slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

/* Slides Wrapper */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* Adjust based on number of slides */
}

/* Individual Slide */
.slide {
  min-width: 100%;
  box-sizing: border-box;
}

/* Game Preview Layout */
.game-preview {
  display: flex;
  background: #222;
  border-radius: 10px;
  padding: 15px;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

/* Game Header Image */
.game-header {
  width: 100%;
  border-radius: 8px;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: background 0.3s ease-in-out;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* List Menu */
.lists-section {
  width: 80%;
  margin: 0 auto;
}

.lists-title {
  text-align: left;
  color: white;
  font-size: 24px;
  margin-bottom: 10px;
}

.lists-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.game-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 2.14 / 1; /* Maintain original image aspect ratio */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.game-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.game-thumbnail:hover .game-title {
  opacity: 1;
}

/* Responsive Design: 1 column on mobile */
@media (max-width: 768px) {
  .lists-container {
    grid-template-columns: 1fr;
  }
}

.load-more {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.load-more:hover {
  background-color: #0056b3;
}

/* Games Menu */
.games-section {
  width: 80%;
  margin: 0 auto;
}

.tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.tab-link {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  color: white;
  cursor: pointer;
}

.tab-link.active {
  border-bottom: 3px solid white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.game-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.game-card img {
  width: 150px;
  border-radius: 10px;
  margin-right: 15px;
}

.game-info h3 {
  margin: 0;
  font-size: 20px;
}

.price {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  color: yellow;
}

/* Footer */
.footer {
  background: #1b1b1b;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #fff;
}
.about-us-section {
  #background-color: #1a1a1a;
  color: white;
  padding: 50px 0;
}

.press-kit-section {
  color: white;
  padding: 50px 0;
}

.privacy-policy-section {
  color: white;
  padding: 50px 0;
}

.video-policy-section {
  color: white;
  padding: 50px 0;	
}

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

h2, h3 {
  color: #f4b400; /* Gold accent for headings */
}

h4 {
	color: #778da9;
}

p {
  line-height: 1.6;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin-bottom: 8px;
}

.founder {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

a {
  color: #f4b400;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
	color: #778da9;
}