body {
  margin: 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #181818;
  color: #fff;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #222;
  padding: 0.5rem 2rem;
}
.logo {
  height: 48px;
}
ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
ul li a {
  color: #ff9933;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
ul li a:hover {
  color: #a259ff;
}
section {
  padding: 1.5rem 1rem;
}
h1, h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(135deg, #a259ff 0%, #ff9933 100%);
  animation: gradientMove 8s ease-in-out infinite alternate;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hero-content {
  text-align: center;
  color: #fff;
  max-width: 100vw;
  width: 100vw;
  margin: 0;
  padding: 30px;
}
.hero-logo {
  width: 120px;
  margin-bottom: 1rem;
}
.events {
  margin: 1rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.event {
  background: rgba(0,0,0,0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
}
.featured-machines {
  padding: 2rem 1rem;
  background: #222;
}
.machines-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.machine {
  background: #181818;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(162,89,255,0.15);
  padding: 1rem;
  width: 180px;
  text-align: center;
  transition: transform 0.2s;
}
.machine:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 24px rgba(255,153,51,0.2);
}
.machine img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}
.machine-box {
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(162,89,255,0.08);
  overflow: hidden;
}
.machine-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}
.featured-media {
  padding: 2rem 1rem;
  background: #181818;
}
.media-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.media-list img, .media-list video {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(162,89,255,0.15);
}
.media-list.toys img, .media-list video {
  width: 150px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(162,89,255,0.15);
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
}
.social-media {
  margin-bottom: 1rem;
}
.social-icon {
  margin: 0 0.5rem;
  color: #ff9933;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.social-icon:hover {
  color: #a259ff;
}
.carousel {
  position: relative;
  width: 100vw;
  max-width: 900px;
  height: 48vw;
  max-height: 480px;
  margin: 0 auto 1.5rem auto;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(162,89,255,0.18);
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.carousel-image.active {
  opacity: 1;
  z-index: 2;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 0.2rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
  transition: background 0.2s;
}
.carousel-btn.prev {
  left: 16px;
}
.carousel-btn.next {
  right: 16px;
}
.carousel-indicators {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a259ff;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}
.carousel-indicator.active {
  opacity: 1;
  background: #ff9933;
}

.link, .contact-details #email, .contact-details a#email, a#email {
  color: #009dd2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}
.contact-details {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}
a#email:hover {
  color: #a259ff;
}
a#email:visited {
  color: #551a8b;
}
a#email:active {
  color: #ff9933;
}
a#email:focus {
  outline: 2px solid #ff9933;
  outline-offset: 2px;
}
a {
  color: #009dd2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 100;
}
.nav-toggle-bar {
  width: 28px;
  height: 4px;
  background: #ff9933;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-list {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 900px) {
  header nav {
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    position: relative;
  }
  .logo {
    height: 40px;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
  }
  .hero-content {
    padding: 10px;
  }
  h1, h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding: 2px;
  }
  .events {
    flex-direction: column;
    gap: 1rem;
  }
  .carousel {
    width: 94vw;
    max-width: 94vw;
    margin-left: 3vw;
    margin-right: 3vw;
    height: 60vw;
    max-height: 240px;
    border-radius: 16px;
    box-sizing: border-box;
  }
  .carousel-btn {
    display: none;
  }
  .carousel-btn.prev {
    left: 12px;
  }
  .carousel-btn.next {
    right: 12px;
  }
  .carousel-image {
    border-radius: 16px;
  }
  .games-fun .media-list,
  .featured-vr-machines .machines-list,
  .coming-soon-toys .media-list {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .machine-box {
    width: 90vw;
    max-width: 320px;
    height: 180px;
  }
  .media-list img, .media-list video {
    width: 90vw;
    max-width: 320px;
  }
  .media-list.toys img {
    width: 60vw;
    max-width: 120px;
  }
  footer {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    font-size: 0.9rem;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-list {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100vw;
    background: #222;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0 1rem 0;
    box-shadow: 0 4px 24px rgba(162,89,255,0.18);
    z-index: 99;
    display: none;
  }
  .nav-list.open {
    display: flex;
  }
}

