  html {
    scroll-behavior: smooth;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    overflow-x: hidden;
  }
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    flex-wrap: wrap;
  }
  .logo {
    order: 0;
  }
  .cta-button {
    background: #00ffb3;
    color: #000;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    order: 2;
  }
   .ctb-button {
    background: #00ffb3;
    color: #000;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    order: 2;
  }
   
  nav {
    order: 1;
    display: flex;
    flex: 1;
    justify-content: center;
  }
  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    position: relative;
    cursor: pointer;
  }
  nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00ffb3;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
  }
  nav a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px #00ffb3, 0 0 20px #00ffb3;
  }
  /* Hamburger for mobile */
  .hamburger {
    order: 3;
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
  }
  .hamburger div {
    height: 4px;
    background: #00ffb3;
    border-radius: 2px;
  }
  .hero {
    padding: 50px ;
    position: relative;
  }
  .carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 20px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .carousel-slide{
    display: none;
    width: 100%;
  }
  .carousel-slide.active{
    display: block;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .contact-form-slide {
    display: flex;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    gap: 30px;
  }
  .contact-left,
  .contact-right {
    flex: 1 1 45%;
    min-width: 300px;
  }
  .contact-left img {
    height: 50px;
    margin-bottom: 20px;
  }
  .contact-left p,
  .contact-left h2 {
    margin-bottom: 10px;
    color: #ccc;
  }
  .contact-right input,
  .contact-right textarea,
  .contact-right select {
    width: 100%;
    background: transparent;
    border: 1px solid #555;
    padding: 10px;
    margin-bottom: 15px;
    color: gray;
    font-size: 14px;
  }
  .contact-right input[type='file'] {
    border: none;
  }
  .checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .checkbox input {
    margin-right: 10px;
  }
  .send-button {
    background: #00ffb3;
    color: #000;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
  }

  /* Sidebar styles */
  .sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #0d0d0d;
    box-shadow: 2px 0 5px rgba(0, 255, 179, 0.5);
    padding: 60px 20px 20px 20px;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }
  .sidebar.open {
    left: 0;
  }
  .sidebar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #00ffb3;
    cursor: pointer;
  }
  .sidebar a:hover {
    background: #00ffb3;
    color: #000;
  }
  /* Overlay behind sidebar */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 900;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  /* job openings */
  .recruit-section {
    width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 100%);
  color: white;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

.recruit-content {
  flex: 1;
}

.recruit-content h2 {
  font-size: 32px;
  color: #ff3333;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.recruit-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.join-button {
  background: #00e09f;
  color: black;
  padding: 15px 30px;
  font-weight: bold;
  text-decoration: none;
  clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%);
  transition: 0.3s;
  display: inline-block;
}

.join-button:hover {
  background: #00ffcc;
}

.recruit-image {
  flex: 1;
  text-align: center;
}

.recruit-image img {
  width: 100%;
  max-width: 550px;
}

  /* Responsive */
  @media (max-width: 768px) {
    nav {
      display: none;
    }
    .hamburger {
      display: flex;
      order: 2;
      margin-left: auto;
    }
    .cta-button {
      display: none;
    }
    header {
      justify-content: flex-start;
      gap: 10px;
    }
    .hero {
      padding: 30px 5%;
    }
    
  }
  /* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* === COMBINED WRAPPER === */
.combined-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
}

/* === WHY WORK WITH US SECTION === */
.why-work-section {
  text-align: center;
}

.why-work-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.why-work-section p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background: #1b1b1b;
  padding: 25px 15px;
  border-radius: 6px;
  position: relative;
  border: 1px solid #333;
  transition: 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #ff0000;
}

.feature-card img {
  width: 50px;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}

.diamond {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background: red;
  color: white;
  font-size: 12px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

/* === GAME INFO CARD SECTION === */
.game-info-card {
  display: flex;
  gap: 30px;
  background: linear-gradient(to right, #161616, #0f0f0f);
  padding: 30px;
  border-radius: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.game-image video {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  border: 1px solid #444;
}
.game-info {
  flex: 1;
  min-width: 280px;
}

.game-info h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.genre {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 15px;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.update {
  font-size: 13px;
  margin-top: 10px;
  color: #aaa;
}

.store-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.store-btn {
  background: #00e09f;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  color: black;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
  transition: 0.3s;
}

.store-btn:hover {
  background: #00ffaa;
}

/* === MEDIA query for projects === */
@media (max-width: 768px) {
  .game-info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .game-info {
    text-align: center;
  }

  .store-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .why-work-section h2 {
    font-size: 22px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .game-info h3 {
    font-size: 20px;
  }

  .description {
    font-size: 13px;
  }

  .store-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}