* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'myasap', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}


.asap-myasap {
  font-family: "Asap", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.nav{
  font-family: "Asap", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.boxlogo {
  width: 40px;
  height: 40px;
  border-radius: 0%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.nav {
  font: bold;
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff6b35;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.social-link.linkedin {
  background-color: #0077b5;
  color: white;
}

.social-link.discord {
  background-color: #5865f2;
  color: white;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-logo-img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0);
}

.hero-title {
  font-size: 7rem;
  font-weight: bold;
  color: #333;
  margin: -20px;
}

.hero-subtitle {
  font-size: 5rem;
  font-weight: normal;
  color: #ff6b35;
  margin: -50px;
}

/* Game Section */
.game-section {
  padding: 80px 0;
  background: white;
}

.game-section-dark {
  padding: 80px 0;
  background: #2c3e50;
  color:#f8f9fa
}

.game-section-grey {
  padding: 80px 0;
  background: #F5F7FD;
  color:#1a252f
}

.game-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.game-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.game-title-white {
  font-size: 2.5rem;
  color: #f8f9fa;
  margin-bottom: 1rem;
}

.game-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.game-description-dark {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.game-description-white {
  font-size: 1.1rem;
  color: #F5F7FD;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.play-button {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background: #e55a2b;
}

.video-container {
  width: 100%;
  height: 250px;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Trying to center screenshot images
.game-media{
  display:table ;
  grid-template-columns: 2 fr 5 fr;
}


.screenshots-container{
  display:list-item ;
}
*/

.video-container iframe {
  width: 100%;
  height: 100%;
}

.game-screenshots {
  display:table-row;
  gap: 10px;
  flex-wrap: wrap;
}

.game-screenshots img {
  width:15%;
  height: 100px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.game-screenshots img:hover {
  transform: scale(1.1);
}

.game-preview {
  display: block;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3fr;
}

.game-preview img {
  width: 400px;
  height: 300px;
  border-radius: 15px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.game-preview img:hover {
  transform: scale(1.1);
}

/* Mission, Vision, Values Section */
.mvv-section {
  background: #ff6b35;
  color: white;
  padding: 80px 0;
}

.mvv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mvv-item {
  margin-bottom: 2rem;
}

.mvv-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mvv-description {
  font-size: 1.1rem;
  line-height: 1.6;
}

.mvv-img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-name {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  background: #2c3e50;
  color: white;
  padding: 80px 0;
}

.contact-content {
  display: grid;
  /*grid-template-columns: 2fr 1fr;*/
  gap: 2rem;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  margin-bottom: 2rem;
  color: #bdc3c7;
}

.contact-form iframe {
  border-radius: 8px;
  background: white;
}

.contact-info h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.contact-details p {
  margin-bottom: 0.3rem;
  color: #bdc3c7;
}

/* Footer */
.footer {
  background: #1a252f;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-name {
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.footer-social-link.linkedin {
  background-color: #0077b5;
}

.footer-social-link.discord {
  background-color: #5865f2;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 15px;
  }

  .header .container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 15px;
  }

  .nav {
    gap: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-logo-img {
    width: 150px;
    height: 150px;
  }

  .game-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mvv-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .contact-content {
    /*grid-template-columns: 1fr;*/
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .game-screenshots {
    justify-content: center;
  }

  .game-screenshots img {
    width: 60px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .game-title {
    font-size: 2rem;
  }

  .game-title-white {
    font-size: 2rem;
  }

  .mvv-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .member-photo {
    width: 100px;
    height: 100px;
  }
}
