/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0f2e 50%, #2a1548 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: #8b5cf6;
  font-weight: 600;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 50px;
  width: auto;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background: #8b5cf6;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 16px;
  color: #a1a1aa;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
}

.hero-device {
  margin: 60px 0;
  position: relative;
}

.device-showcase {
  position: relative;
  display: inline-block;
}

.main-device {
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.4));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.partner-badges {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: scale(1.1);
  border-color: #8b5cf6;
}

.more-designs {
  font-size: 12px;
  color: #a1a1aa;
  margin-top: 10px;
  text-align: center;
}

.hero-cta {
  margin-top: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border: none;
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #8b5cf6;
  color: #8b5cf6;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #8b5cf6;
  color: white;
  transform: translateY(-2px);
}

.perks-text {
  margin-top: 20px;
  color: #a1a1aa;
  font-style: italic;
}

/* Features Section */
.features {
  padding: 80px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.features-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #d4d4d8;
  line-height: 1.8;
}

/* Value Propositions */
.value-props {
  padding: 80px 0;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.prop-card {
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prop-purple {
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
}

.prop-green {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.prop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prop-card:hover::before {
  opacity: 1;
}

.prop-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.prop-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  text-align: center;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 60px;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Product Section */
.product {
  padding: 80px 0;
  text-align: center;
}

.product-showcase h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.edition {
  color: #a1a1aa;
  margin-bottom: 40px;
}

.product-display {
  margin: 40px 0;
}

.product-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.color-options {
  margin: 40px 0;
}

.limited-edition {
  font-size: 14px;
  color: #06b6d4;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}

.color-swatches {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-swatch.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.color-swatch.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.color-swatch.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.color-swatch:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.product-pricing {
  margin-top: 40px;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 30px;
}

.product-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Community Section */
.community {
  padding: 80px 0;
  text-align: center;
}

.community h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.social-link img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  padding: 10px;
  background: rgba(139, 92, 246, 0.1);
}

.social-link:hover img {
  border-color: #8b5cf6;
  transform: scale(1.1);
}

.social-link span {
  font-size: 14px;
  font-weight: 600;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq-intro h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.faq-intro p {
  color: #a1a1aa;
  margin-bottom: 30px;
  line-height: 1.7;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(139, 92, 246, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 30px;
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(139, 92, 246, 0.1);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 30px 20px;
  color: #d4d4d8;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(10, 10, 10, 0.8);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.company-info {
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social a:hover img {
  opacity: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8b5cf6;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  color: #71717a;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .partner-badges {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  .props-grid {
    grid-template-columns: 1fr;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .social-links {
    gap: 20px;
  }

  .product-actions {
    flex-direction: column;
    align-items: center;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
  }

  .partner-logo {
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .partners-title {
    font-size: 1.8rem;
  }

  .prop-card {
    padding: 30px 20px;
    min-height: 250px;
  }

  .feature-item {
    padding: 20px;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0f2e 50%, #2a1548 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: #8b5cf6;
  font-weight: 600;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: #ffffff;
  background: #373737;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  /* Sembunyikan di desktop */
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-main-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text-content {
  flex: 1;
  max-width: 500px;
  z-index: 2;
  text-align: left;
}

.hero-subtitle {
  font-size: 16px;
  color: #a1a1aa;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-description {
  color: #d4d4d8;
  margin-bottom: 30px;
  font-size: 16px;
}

.hero-image-content {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-showcase {
  position: relative;
  display: inline-block;
}

.main-device {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.4));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Feature Callouts */
.feature-callout {
  position: absolute;
  background: rgba(30, 30, 45, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 280px;
  z-index: 5;
  transition: all 0.3s ease;
}

.feature-callout:hover {
  transform: scale(1.05);
  border-color: rgba(139, 92, 246, 0.5);
}

.callout-icon {
  color: #8b5cf6;
}

.callout-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.callout-text p {
  font-size: 12px;
  color: #a1a1aa;
  line-height: 1.4;
}

#callout-display {
  top: 10%;
  left: -120px;
}

#callout-sensor {
  top: 35%;
  right: -140px;
}

#callout-wallet {
  bottom: 15%;
  left: -80px;
}

#callout-designs {
  bottom: 5%;
  right: -100px;
  width: auto;
  padding: 10px 15px;
}

.design-avatars {
  display: flex;
}

.design-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #373737;
  margin-left: -10px;
}

.design-avatars img:first-child {
  margin-left: 0;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border: none;
  color: white;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #4a4a4a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #373737;
  border-color: #5a5a5a;
}

.btn-discover {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-discover:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.perks-text {
  margin-top: 20px;
  color: #a1a1aa;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {

  .main-nav,
  .nav-right .btn-secondary,
  .nav-right .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-main-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-text-content {
    max-width: 100%;
    order: 2;
  }

  .hero-image-content {
    order: 1;
    margin-bottom: 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .main-device {
    max-width: 350px;
  }

  .feature-callout {
    position: static;
    margin: 15px auto;
    width: 90%;
    max-width: 300px;
  }

  .hero-image-content {
    display: block;
    /* Change flex to block to allow callouts below */
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}


/* Game Display Section */
.game-display {
  padding: 80px 0;
}

.console-frame {
  max-width: 900px;
  margin: 0 auto;
  background: #1e1e2f;
  border-radius: 30px;
  padding: 25px;
  border: 1px solid #3a3a5a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.05);
  position: relative;
}

.battery-indicator {
  position: absolute;
  top: 35px;
  left: -60px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(-90deg);
  transform-origin: top left;
}

.battery-light {
  width: 10px;
  height: 10px;
  background-color: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.battery-text {
  font-size: 10px;
  letter-spacing: 1px;
  color: #a1a1aa;
  font-weight: 500;
}

.console-screen {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.screen-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.footer-brand {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #a1a1aa;
}

.footer-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.footer-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

.speaker-grill {
  width: 60%;
  height: 8px;
  margin: 20px auto 0;
  background: repeating-linear-gradient(90deg,
      #333,
      #333 2px,
      #1e1e2f 2px,
      #1e1e2f 6px);
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {

  .main-nav,
  .nav-right .btn-secondary,
  .nav-right .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-main-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-text-content {
    max-width: 100%;
    order: 2;
  }

  .hero-image-content {
    order: 1;
    margin-bottom: 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .main-device {
    max-width: 350px;
  }

  .feature-callout {
    position: static;
    margin: 15px auto;
    width: 90%;
    max-width: 300px;
  }

  .hero-image-content {
    display: block;
    /* Change flex to block to allow callouts below */
  }

  .battery-indicator {
    position: static;
    transform: none;
    justify-content: center;
    margin-bottom: 20px;
  }

  .console-frame {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

/* Preorder Section */
.preorder {
  padding: 80px 0;
  text-align: center;
}

.preorder-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}

.preorder-list {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #3a3a5a;
  border-radius: 15px;
  overflow: hidden;
}

.preorder-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid #3a3a5a;
  background: #1e1e2f;
}

.preorder-item:last-child {
  border-bottom: none;
}

.item-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #d4d4d8;
}

.bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bullet.presale {
  background-color: #f472b6;
}

.bullet.whitelist {
  background-color: #a78bfa;
}

.bullet.player1 {
  background-color: #60a5fa;
}

.bullet.wave1 {
  background-color: #34d399;
}

.bullet.wave2 {
  background-color: #fbbf24;
}

.item-status {
  font-weight: 600;
}

.sold-out {
  color: #71717a;
  font-style: italic;
}

.preorder-item.live {
  background: rgba(139, 92, 246, 0.1);
}

.price {
  color: #8b5cf6;
  font-size: 1.1rem;
}

/* Tagline Banner Section */
.tagline-banner {
  padding: 300px 0;
  background-image: url(img/PSG1Header.svg);
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.tagline-banner .container {
  position: relative;
  z-index: 2;
}

.tagline-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #a1a1aa;
  margin-bottom: 20px;
}

.tagline-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* Penyesuaian untuk layar mobile agar tidak terlalu tinggi */
@media (max-width: 768px) {
  .tagline-banner {
    height: 40vh;
    /* Kurangi tinggi di perangkat mobile */
    min-height: 300px;
  }
}


/* Value Props Section */
.value-props {
  padding: 80px 0;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.prop-card {
  background: #1e1e2f;
  border: 1px solid #3a3a5a;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.prop-card:hover {
  transform: translateY(-10px);
  border-color: #8b5cf6;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.prop-icon {
  margin-bottom: 25px;
}

.prop-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.prop-card p {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.7;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  text-align: center;
}

.partners-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8b5cf6;
}

.partners-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: rgba(30, 30, 47, 0.7);
  border: 1px solid #3a3a5a;
  flex-wrap: wrap;
}

.partner-logo {
  max-height: 40px;
  max-width: 120px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Product Customizer Section */
.product-customizer {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
  /* Penting untuk penempatan efek background */
  overflow: hidden;
  /* Memastikan efek tidak keluar */
}

/* Efek Background */
.product-customizer-bg-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  /* Efek blur untuk glow */
  opacity: 0.4;
  z-index: 0;
  /* Pastikan di belakang konten */
  animation: pulseGlow 8s infinite alternate;
  /* Animasi berkedip */
}

.product-customizer-bg-effect.top-left {
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5), transparent 70%);
  /* Ungu */
  animation-delay: 1s;
}

.product-customizer-bg-effect.bottom-right {
  bottom: 10%;
  right: 10%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.5), transparent 70%);
  /* Pink */
  animation-delay: 3s;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}


.product-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  /* Untuk memastikan konten di atas efek background */
  z-index: 1;
}

.product-image-view {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#main-product-image {
  max-width: 1024px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.3));
  transition: opacity 0.2s ease-in-out;
  animation: float 6s ease-in-out infinite;
  /* Animasi naik turun */
}

#main-product-image.fade-out {
  opacity: 0;
}

#main-product-image.fade-in {
  animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-details {
  flex: 1;
  max-width: 450px;
}

.product-details h2 {
  font-size: 2rem;
  font-weight: 700;
}

.edition-name {
  color: #a1a1aa;
  margin-bottom: 20px;
}

.limited-edition-label {
  font-size: 12px;
  font-weight: 600;
  color: #8b5cf6;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.edition-swatches {
  display: grid;
  /* Menggunakan grid untuk layout yang lebih rapi */
  grid-template-columns: repeat(4, 1fr);
  /* 4 kolom */
  gap: 10px;
  margin-bottom: 30px;
  max-width: 300px;
  /* Batasi lebar agar rapi */
}

.edition-swatch {
  width: 100%;
  /* Agar mengisi grid cell */
  padding-bottom: 100%;
  /* Membuat kotak aspek rasio 1:1 */
  position: relative;
  border-radius: 10px;
  border: 2px solid #3a3a5a;
  background: #1e1e2f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  /* Untuk memposisikan gambar di tengah */
  justify-content: center;
  align-items: center;
}

.edition-swatch:hover {
  border-color: #8b5cf6;
}

.edition-swatch.active {
  border-color: #ec4899;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.edition-swatch img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  /* Agar gambar tidak terlalu besar di dalam swatch */
  max-height: 80%;
  object-fit: contain;
}

.price-display {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.learn-more-link {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: #fff;
}

.terms-notice {
  font-size: 12px;
  color: #71717a;
}

.terms-notice a {
  color: #a1a1aa;
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* Layout 1:2 */
  gap: 60px;
  align-items: start;
}

.faq-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.faq-intro p {
  color: #a1a1aa;
  margin-bottom: 30px;
  line-height: 1.7;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #3a3a5a;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e2f;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(139, 92, 246, 0.1);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #8b5cf6;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Increased max-height for longer answers */
  padding-bottom: 20px;
  /* Tambahkan padding agar tidak terlalu mepet */
}

.faq-answer p {
  padding: 0 20px 0px;
  color: #d4d4d8;
  line-height: 1.7;
}


/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid #3a3a5a;
  background: #111;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-company .footer-logo {
  height: 35px;
  margin-bottom: 20px;
}

.company-info {
  color: #a1a1aa;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons img {
  width: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social-icons a:hover img {
  opacity: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #3a3a5a;
  color: #71717a;
  font-size: 14px;
}

/* 5. (PENTING) Buat responsif untuk layar kecil/mobile */
@media (max-width: 900px) {
  .product-layout {
    /* Ubah jadi layout vertikal di layar kecil */
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  #main-product-image {
    /* Sesuaikan lagi ukurannya untuk mobile */
    max-width: 350px;
  }

  .product-details {
    /* Pastikan detail berada di tengah */
    max-width: 450px;
    margin: 0 auto;
  }

  .product-actions {
    /* Pusatkan tombol di mobile */
    justify-content: center;
  }
}

/* --- EFEK KILAUAN PADA PRODUCT CUSTOMIZER --- */

/* 1. Jadikan kontainer gambar sebagai referensi posisi dan sembunyikan overflow */
.product-image-view {
  position: relative;
  /* Wajib agar pseudo-element bisa diposisikan */
  overflow: hidden;
  /* Wajib agar kilauan tidak keluar dari area gambar */
  border-radius: 20px;
  /* Opsional: membuat sudut lebih halus */
}

/* 2. Buat elemen kilauannya menggunakan ::before */
.product-image-view::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  /* Mulai dari luar layar di sebelah kiri */
  width: 75%;
  height: 100%;
  z-index: 2;
  /* Pastikan di atas gambar */

  /* Ini adalah gradient yang menciptakan efek kilauan */
  background: linear-gradient(75deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%);

  /* Miringkan kilauan agar terlihat lebih natural */
  transform: skewX(-25deg);

  /* Siapkan transisi untuk animasi */
  transition: left 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 3. Memicu animasi saat kursor diarahkan ke kontainer gambar */
.product-image-view:hover::before {
  left: 100%;
  /* Pindahkan kilauan ke luar layar di sebelah kanan */
}

/* --- RESPONSIVE FOOTER --- */

/* Tampilan Tablet (lebar di bawah 900px) */
@media (max-width: 900px) {
  .footer-layout {
    /* Ubah dari 2 kolom menjadi 1 kolom (bertumpuk) */
    grid-template-columns: 1fr;
    gap: 40px;
    /* Beri jarak antar tumpukan */
    text-align: center;
    /* Pusatkan teks agar rapi */
  }

  .footer-social-icons {
    /* Pusatkan ikon sosial */
    justify-content: center;
  }

  .footer-links {
    /* Ubah dari 4 kolom menjadi 2 kolom agar tidak terlalu sempit */
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    /* Pusatkan teks link */
  }
}

/* Tampilan Mobile (lebar di bawah 480px) */
@media (max-width: 480px) {
  .footer-links {
    /* Ubah dari 2 kolom menjadi 1 kolom di layar yang sangat kecil */
    grid-template-columns: 1fr;
  }

  .footer-column {
    margin-bottom: 20px;
    /* Beri jarak antar grup link */
  }

  .footer-layout {
    gap: 30px;
    /* Kurangi jarak di mobile */
  }
}