/* -------- About Page Styles -------- */

/* About Hero */
.about-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  background: linear-gradient(135deg, rgba(34, 32, 27, 0.2), rgba(77, 3, 48, 0.3)), url('image/banner3.jpeg') no-repeat center center / cover;
  overflow: hidden;
}
.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 40%, rgba(255, 120, 200, 0.15), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(255, 211, 105, 0.15), transparent 50%);
  z-index: 1;
}
.about-title {
  font-size: 2.8rem;
  color: #ffd369;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}
.about-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #ddd;
  position: relative;
  z-index: 2;
}

/* Origin Section */
.origin-section {
  background: #0f0f0f;
}
.origin-wrapper {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.origin-text h2 {
  color: #ffd369;
  margin-bottom: 1rem;
}
.origin-text p {
  color: #ccc;
  margin-bottom: 0.8rem;
}
.origin-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* World Section */
.world-section {
  background: #141414;
}
.world-slider {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin-top: 2rem;
}
.world-item {
  min-width: 280px;
  margin-right: 1.5rem;
  background: #1e1e2e;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  flex: 0 0 auto;
}
.world-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}
.world-item h3 {
  color: #ffd369;
  margin-bottom: 0.4rem;
}
.world-item p {
  color: #ccc;
  font-size: 0.9rem;
}
.world-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Team Section */
.team-section {
  background: #0f0f0f;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.team-card {
  position: relative;
  background: #1e1e2e;
  padding: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.team-accent {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #ffd369;
}
.team-card h3 {
  color: #ffd369;
  margin-bottom: 0.3rem;
  margin-left: 1rem;
}
.team-card .role {
  color: #e98ca8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}
.team-card p {
  color: #ccc;
  font-size: 0.85rem;
  margin-left: 1rem;
}

/* Art Section */
.art-section {
  background: #141414;
}
.art-stack {
  position: relative;
  width: 90%;
  height:360px;
  margin-top: 2rem;
}
.art-layer {
  position: absolute;

  width: 60%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.layer1 {
  top: 50px;
  left: 0;
  transform: rotate(-8deg) translate(-10%, -10%);
}
.layer2 {
  top: 80px;
  left: 20%;
  transform: rotate(6deg);
  z-index: 2;
}
.layer3 {
  width: 50%;
  top: 120px;
  left: 60%;
  transform: rotate(-4deg);
  z-index: 1;
}
.w95 {
  width: 95%;
}
.w85 {
  width: 85%;
}
.w100 {
  width: 100%;
}

/* Tech Section */
.tech-section {
  background: #0f0f0f;
}
.progress-bars {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.progress-label {
  color: #ffd369;
  margin-bottom: 0.3rem;
}
.progress-bar {
  background: #1e1e2e;
  border-radius: 30px;
  overflow: hidden;
  height: 12px;
}
.progress-fill {
  height: 100%;
  border-radius: 30px;
}
.progress-fill.perf {
  background: linear-gradient(90deg, #ffed70 0%, #ffe25c 100%);
}
.progress-fill.visuals {
  background: linear-gradient(90deg, #ffb4d9 0%, #ff84c0 100%);
}
.progress-fill.gameplay {
  background: linear-gradient(90deg, #9fd7ff 0%, #74b3ff 100%);
}

/* Voices Section */
.voices-section {
  background: #141414;
}
.voices-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.voice-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.voice-item:nth-child(even) {
  align-items: flex-end;
}
.voice-bubble {
  background: #1e1e2e;
  color: #ccc;
  padding: 1rem;
  border-radius: 16px;
  max-width: 60%;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.voice-item:nth-child(odd) .voice-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent #1e1e2e transparent transparent;
}
.voice-item:nth-child(even) .voice-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #1e1e2e;
}
.voice-author {
  margin-top: 0.3rem;
  color: #ffd369;
  font-size: 0.8rem;
}

/* Community Section */
.community-section {
  background: #0f0f0f;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.community-card {
  background: #1e1e2e;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.community-icon {
  font-size: 2rem;
  color: #ffd369;
  margin-bottom: 0.5rem;
}
.community-card h3 {
  color: #ffd369;
  margin-bottom: 0.3rem;
}
.community-card p {
  color: #ccc;
  font-size: 0.85rem;
}

/* Concept Section */
.concept-section {
  background: #141414;
}
.concept-slider {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin-top: 2rem;
}
.concept-item {
  min-width: 280px;
  margin-right: 1.5rem;
  flex: 0 0 auto;
}
.concept-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.concept-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Roadmap Section */
.roadmap-section {
  background: #0f0f0f;
}
.roadmap {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.roadmap-step {
  background: #1e1e2e;
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1 1 220px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffd369;
  color: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 0.5rem auto;
}
.roadmap-step h3 {
  color: #ffd369;
  margin-bottom: 0.3rem;
}
.roadmap-step p {
  color: #ccc;
  font-size: 0.85rem;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
  .origin-wrapper {
    flex-direction: column;
  }
  .art-layer {
    width: 80%;
  }
  .world-item {
    min-width: 240px;
  }
}