* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #0f001c;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1000;
}

header.transparent {
  background: rgba(0, 0, 0, 0.3);
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 15rem; 
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li {
  margin: 0 100px; 
}

.logo img {
  height: 50px;
  width: auto;
}


.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a {
  display: inline-block;
  margin: 0 30px;            
  padding: 0.8rem 2rem;     
  border-radius: 999px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;         
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: white; 
  color: #0f001c;         
}

.nav-links a.active {
  background-color: white;
  color: #0f001c;
}


main {
  display: flex;
  flex-direction: column;
  align-items: center;

}
main2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1600px;
  gap: 2rem;
  margin-top: 120px;
  position: relative;
  min-height: 800px; 
}



.left-content {
  max-width: 600px;
}


.brand {
  padding: 0 0 2rem 1rem;
  margin-left: -40px;
}

.brand h1 {
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.brand h2 {
  font-size: 6rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.brand p {
  margin-top: 1rem;
  color: #ccc;
  font-size: 1.5rem;
  max-width: 400px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding-left: 1rem;
}

.buttons a {
  text-decoration: none;
  font-weight: 600;
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  font-size: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  width: 400px;
}

.download-btn {
  background-color: #ae00ff;
  color: #fff;
}

.preview-btn {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.download-btn:hover {
  background-color: #9100d4;
}

.preview-btn:hover {
  color: #ccc;
  border-color: #ccc;
}

.feature-card {
  left: 80px;
  position: relative;
  height: 600px; 
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  width: 100%;
  color: #ccc;
}

.card-content h3 {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: #fff;
}

.card-content p {
  font-size: 1rem;
  color: #ccc;
}

.card-content span {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: #ccc;
  font-weight: bold;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.games-gallery {
  width: 100%;
  max-width: 1600px;
  margin: 6rem auto;
  text-align: center;
  gap: 5rem;
}

.games-gallery h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
}

.games-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.5s ease;
  width: 300px;
  height: 380px;
  background-color: #1a1a1a;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.game-overlay-top {
  position: absolute;
  top: 20px; 
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 0.3rem 1rem;
  background: transparent; 
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); 
}


.game-info {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 2rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.game-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.game-info p {
  font-size: 1.2rem;
  max-width: 90%;
  text-align: center;
}

.game-card:hover {
  transform: scale(1.3);
  z-index: 10;
}

.game-card:hover img {
  transform: scale(1.1);
}

.game-card:hover .game-info {
  opacity: 1;
  transform: translateY(0);
}

.contact-bar {
  width: 100%;
  background-color: #1a002f;
  color: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
}

.contact-bar h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #ae00ff;
}

.contact-bar p {
  margin: 0.3rem 0;
}

.social-icons {
  margin-top: 1.5rem;
}

.social-icons a {
  color: white;
  margin: 0 1rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ae00ff;
}

.footer-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f001c;
  color: #fff;
}

.projects-page {
  display: flex;
  flex-direction: column;
  padding: 5.5rem 2rem;
}

.project {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(15, 0, 28, 0.7);
  padding: 3rem;
  border-radius: 20px;
  max-width: 700px;
  text-align: center;
}

.overlay h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ae00ff;
}

.overlay p {
  font-size: 1.4rem;
  color: #ddd;
  line-height: 1.6;
}

/* --- ABOUT PAGE STYLES --- */
.about-page {
  max-width: 1000px;
  margin: auto;
  padding: 7rem 2rem;
  animation: fadeIn 1s ease-in-out;
}

.about-page h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.about-page p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.team-section {
  margin-top: 3rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.team-member {
  background-color: #222;
  padding: 1.5rem;
  flex: 1 1 250px;
  border-radius: 8px;
  text-align: center;
}

.team-member img {
  width: 100px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin: 0.5rem 0 0.2rem;
}

.team-member p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #444;
}

.hero-section {
  width: 100%;
  height: 100vh; /* Make it take full screen height */
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;          
  object-position: center top;
  display: block;
}

.hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2; 
}
.hero-text-overlay h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-text-overlay p {
  font-size: 1.5rem;
  color: #ccc;
}

.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  z-index: 1;
}

.hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.project-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project-button:hover {
  background-color: #000000;
  color: #ffffff;
}
.site-wrapper {
  transform: scale(0.75);
  transform-origin: top left;
  width: 133.3%; /* 100 / 0.75 = 133.333 to prevent horizontal scroll */
  height: calc(100vh / 0.5); /* better than fixed height */
}
.site-wrapper2 {
  transform: scale(0.75);
  transform-origin: top left;
  width: 133.3%; /* 100 / 0.75 = 133.333 to prevent horizontal scroll */
  height: calc(100vh / 0.5); /* better than fixed height */
}
.site-wrapper3 {
  transform: scale(0.75);
  transform-origin: top left;
  width: 133.3%; /* 100 / 0.75 = 133.333 to prevent horizontal scroll */
  height: calc(100vh); /* better than fixed height */
}
