/***** FONT FACE DECLARATIONS *****/
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-VariableFont_wght.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Share Tech Mono';
  src: url('fonts/ShareTechMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Way Come';
  src: url('fonts/WayCome.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/***** BASE COLORS AND FONTS *****/
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --bg-main: #080808;
  --bg-alt: #111312;
  --accent: #fff;
  --active: #727272;
  --text-main: #e0e5e2;
  --text-muted: #b0bdb0;
  --border: #2d3a33;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Share Tech Mono', monospace;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: 'Way Come', sans-serif;
  color: var(--accent);
  letter-spacing: 2px;
  margin: 0 0 1.2rem 0;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0px  2px 8px #000a;
}

.logo {
  font-family: 'Way Come', 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: 2px;
  margin: 0;
}

.logo-img {
  width: 50px;
  height: 50px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.title {
  font-family: 'Way Come', sans-serif;
  color: var(--accent);
  letter-spacing: 2px;
  margin: 0 0 1.2rem 0;
  font-size: 3.5rem;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0px  2px 8px #000a;
}

.description {
  font-size: 1.5rem;
}

/* Token Details Layout */
.token-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
  align-items: start;
}

/* Responsive font sizes for paragraphs and descriptions */
p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/***** NAVBAR *****/
#main-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: top 0.4s;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 1.1rem 2rem;
}
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--accent);
  color: var(--bg-alt);
}

/***** HERO SECTION & PARALLAX *****/
/* HERO SECTION FULLSCREEN PARALLAX FIX */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  margin: 50px 0 0 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-main);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(180deg, rgba(24,31,28,0.7) 0%, rgba(24,31,28,0.2) 60%, rgba(24,31,28,0.95) 100%);
  z-index: 2;
  pointer-events: none;
}
.parallax-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
  opacity: 0.7;
  transition: filter 0.3s;
  filter: brightness(0.9) blur(0.9px);
  transition: filter 0.2s;
  mask-image: none;
  -webkit-mask-image: none;
}
.hero-section:hover .parallax-layer {
  filter: brightness(0.5) blur(0.5px);
}
.parallax-bg { background-image: url('images/mid.png'); z-index: 1;}
.parallax-mid { background-image: url('images/boneyard.png'); z-index: 2; opacity: 0.75; }
.parallax-front { 
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  will-change: transform;
  transition: filter 0.3s;
  filter: brightness(0.9) blur(0.9px);
  transition: filter 0.2s;
  background-image: url('images/dead_panda_original.png'); 
  z-index: 3; 
  opacity: 1; 
  background-size: 30% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: transparent;
  background-blend-mode: normal;
  background-origin: padding-box;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  background: rgba(35,43,39,0.85);
  padding: 2.5rem 3rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 4.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
  text-shadow: 0 4px 24px #000a, 0 1px 0 #000000;
  animation: titlePop 1.2s cubic-bezier(.4,0,.2,1) 0.2s backwards;
}

.slogan-section {
  color: var(--accent);
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 4px 24px #000a, 0 1px 0 #000000;
  animation: titlePop 1.2s cubic-bezier(.4,0,.2,1) 0.2s backwards;
  max-width: 100%;
  padding: 2rem 2rem;
  background: rgba(146, 146, 146, 0.15);
  border-radius: 0px;
  font-family: 'Way Come', sans-serif;
}

.btn-play {
  background: var(--bg-main);
  color: var(--accent);
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: 'Way Come', sans-serif;
  cursor: pointer;
}

.btn-secondary {
  background: var(--bg-main);
  color: var(--accent);
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: 'Way Come', sans-serif;
  cursor: pointer;
}

.btn {
  font-family: 'Orbitron', sans-serif;
  background: var(--bg-main);
  color: var(--accent);
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  margin: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  transition: background 0.2s, transform 0.2s;
}
.btn:hover, .btn:focus {
  background: #b92d1f;
  transform: translateY(-2px) scale(1.04);
}

/* SECTION CONTAINERS */
.about-ecosystem-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  padding: 0 2rem;
}

.about-ecosystem-container section {
  padding: 3rem 2rem;
  border-radius: 20px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

/* NFT Image Base Styles */
.img-nft {
  background-size: contain;
  background-blend-mode: normal;
  background-origin: padding-box;
  width: 160px; 
  height: 160px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet (768px - 900px) */
@media (max-width: 900px) {
  .logo-img {
    width: 45px;
    height: 45px;
  }
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 0.7rem 1rem;
  }
  
  .hero-content {
    padding: 1.5rem 0.7rem;
  }
  
  .game-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0.5rem;
    margin: 1rem 0 1rem 0;
    box-sizing: border-box;
  }
  
  .game-screenshots img {
    width: 120px;
  }
  
  .parallax-mid { 
    background-image: url('images/boneyard-mobile.png');
  }
  
  .parallax-front {
    background-size: 70% auto;
  }
  
  .title {
    font-size: 2.2rem;
  }
  
  .slogan-section {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    max-width: 100%;
    padding: 0.5rem 0.5rem;
  }
  
  /* Responsive font sizes */
  p {
    font-size: 1rem;
  }
  
  .description {
    font-size: 1.3rem;
  }
  
  .ecosystem-token-container {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 1.5rem;
    box-sizing: border-box;
  }
  
  .ecosystem-section,
  .token-section {
    width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  
  section:not(.hero-section) {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .img-nft {
    width: 120px; 
    height: 120px;
  }
  
  .game-layout {
    flex-direction: column;
    gap: 2rem;
  }
  
  .game-media-container,
  .game-info {
    max-width: 100%;
  }
  
  /* Roadmap tablet adjustments */
  .roadmap-carousel {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: none;
  }
  
  .milestone {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
    padding: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  /* Roadmap Navigation Dots */
  .roadmap-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  
  .roadmap-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .roadmap-dot.active {
    background: var(--accent);
    transform: scale(1.2);
  }
  
  .roadmap-dot:hover {
    background: var(--active);
  }
  
  .roadmap-dot.clicked {
    background: var(--accent);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
}

section:not(.hero-section):not(.game-section) {
  padding: 2rem 2rem 2rem 2rem;
  max-width: 1200px;
  width: 100%;
  border-radius: 20px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

/***** GAME & NFT PLACEHOLDERS *****/
.game-breakout {
  position: relative;
  width: 100vw;
  background: none;
  padding: 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  background: rgba(24,31,28,0.85);
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  box-sizing: border-box;
}
.game-video-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.game-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
.game-screenshots {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.game-screenshots img {
  width: 180px;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  background: #181f1c;
  object-fit: cover;
}

.milestone {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  min-width: 350px;
  max-width: 350px;
  scroll-snap-align: center;
  flex-shrink: 0;
}
/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .about-ecosystem-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }
  
  .about-ecosystem-container section {
    padding: 2rem 1.5rem;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .title {
    font-size: 2.2rem;
  }
  
  /* Responsive font sizes */
  p {
    font-size: 0.95rem;
  }
  
  .description {
    font-size: 1.2rem;
  }
  
  .ecosystem-token-container {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .ecosystem-section,
  .token-section {
    width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  
  .img-nft {
    width: 100px; 
    height: 100px;
  }
  
  .game-media-container {
    margin: 0 auto 1.5rem auto;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }
  
  .game-video-wrapper,
  .screenshots-carousel {
    height: 250px;
    width: 100%;
  }
  
  .tab-btn {
    font-size: 1.1rem;
    padding: 1rem;
    min-height: 50px;
  }
  
  .game-tabs {
    border-radius: 8px 8px 0 0;
  }
  
  .game-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .game-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .screenshot-nav {
    padding: 0.5rem;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .nav-dots {
    gap: 0.3rem;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .game-layout {
    width: 100%;
    max-width: 100%;
  }
  
  .game-info {
    width: 100%;
    max-width: 100%;
  }
  
  /* Roadmap mobile */
  .roadmap-carousel {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: none;
  }
  
  .roadmap-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .milestone {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
    padding: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .milestone:last-child {
    margin-right: 0;
  }
  
  .milestone-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: center;
  }
  
  .milestone-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .milestone-quarter {
    font-size: 1rem;
  }
  
  .milestone-year {
    font-size: 0.8rem;
  }
  
  .milestone-content {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  /* Roadmap Navigation Dots */
  .roadmap-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  
  .roadmap-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .roadmap-dot.active {
    background: var(--accent);
    transform: scale(1.2);
  }
  
  .roadmap-dot:hover {
    background: var(--active);
  }
  
  .roadmap-dot.clicked {
    background: var(--accent);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
}
/* Small Mobile (≤ 600px) */
@media (max-width: 600px) {
  .logo-img {
    width: 30px;
    height: 30px;
  }
  .img-nft {
    width: 80px; height: 80px;
  } 
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 1rem 0.3rem;
    border-radius: 12px;
    max-width: 95vw;
  }
  
  .navbar {
    padding: 0.5rem 0.2rem;
  }
  
  section {
    padding: 4rem 0.5rem 2rem 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .parallax-layer {
    background-position: center top;
  }
  
  .parallax-mid { 
    background-image: url('images/boneyard-mobile.png');
  }
  
  .title {
    font-size: 2.2rem;
  }
  
  /* Responsive font sizes */
  p {
    font-size: 0.9rem;
  }
  
  .description {
    font-size: 1.1rem;
  }
  
  .slogan-section {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    max-width: 100%;
    padding: 0.5rem 0.5rem;
  }
  
  .game-breakout {
    min-height: 350px;
  }
  
  .game-content {
    padding: 1.5rem 0.5rem;
    margin: 1rem 0 1rem 0;
    box-sizing: border-box;
  }
  
  .game-header {
    flex-direction: column;
  }
  
  .game-header .title {
    font-size: 1.8rem;
  }
  
  .game-video-wrapper,
  .screenshots-carousel {
    height: 200px;
  }
  
  .tab-btn {
    font-size: 1rem;
    padding: 0.8rem;
    min-height: 45px;
  }
  
  .game-screenshots img {
    width: 90px;
  }
  
  .game-features {
    gap: 1rem;
  }
  
  .game-features h3 {
    font-size: 1.1rem;
  }
  
  .game-features p {
    font-size: 0.9rem;
  }
  
  .ecosystem-token-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .ecosystem-section,
  .token-section {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  
  .nfts-section,
  .roadmap-section,
  .faq-section {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  
  /* Roadmap mobile adjustments */
  .roadmap-carousel {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: none;
  }
  
  .milestone {
    min-width: 200px;
    max-width: 90%;
    scroll-snap-align: center;
    padding: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  /* Token section adjustments */
  .token-header {
    flex-direction: column;
    text-align: center;
  }
  
  .token-header .title {
    margin-bottom: 0;
  }
  
  .token-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .token-supply,
  .token-uses {
    padding: 1rem;
  }
  
  .btn-secondary {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    margin: 0.8rem 0;
  }
  
  /* Button adjustments */
  .btn-play {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
  }
  
  .btn-play::after {
    display: none;
  }
}

.game-img-placeholder {
  width: 320px; height: 200px;
  background: #222a26;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nft-gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.nft-intro {
  text-align: center;
  color: var(--text-muted);
}

.nfts-section, .roadmap-section, .faq-section {
  margin: 0 auto 1.5rem auto;
}
#pandaShow {
  background-image: url('images/nft-tba.png');
}
#pandaShow.fadein {
  background-image: url('images/dead_panda_original-face.png');
  transition: background-image 1.5s;
}
/***** TOKEN SECTION *****/
.token-uses {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

/* Token Header Layout */
.token-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.token-header .title, .game-header .title {
  margin: 0;
  flex-shrink: 0;
}

.btn-secondary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Simple Buy $BONES Button */
.btn-secondary {
  background: var(--accent);
  color: var(--bg-main);
  border: 2px solid var(--accent);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'Way Come', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: visible;
}

.btn-secondary:hover {
  background: var(--bg-main);
  color: var(--accent);
}

/* Bone Particle Explosion Effect */
.bone-particle {
  position: absolute;
  font-size: 1.5rem;
  pointer-events: none;
  z-index: 1000;
  animation: bone-explosion 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes bone-explosion {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    opacity: 1;
    transform: translate(var(--x), var(--y)) scale(1.2) rotate(90deg);
  }
  50% {
    opacity: 0.8;
    transform: translate(calc(var(--x) * 1.5), calc(var(--y) * 1.5)) scale(1) rotate(180deg);
  }
  75% {
    opacity: 0.8;
    transform: translate(calc(var(--x) * 2), calc(var(--y) * 2)) scale(0.8) rotate(270deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--x) * 2.5), calc(var(--y) * 2.5)) scale(0.5) rotate(360deg);
  }
}

@keyframes bone-pulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(97, 97, 97, 0.5),
      0 0 40px rgba(43, 43, 43, 0.3),
      0 8px 32px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(97, 97, 97, 0.8),
      0 0 60px rgba(43, 43, 43, 0.5),
      0 12px 40px rgba(0, 0, 0, 0.4);
  }
}

@keyframes bone-pulse-fast {
  0%, 100% {
    box-shadow: 
      0 0 30px rgba(97, 97, 97, 0.8),
      0 0 60px rgba(43, 43, 43, 0.5),
      0 12px 40px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 
      0 0 40px rgba(97, 97, 97, 1),
      0 0 80px rgba(97, 97, 97, 0.7),
      0 16px 50px rgba(0, 0, 0, 0.5);
  }
}

@keyframes bone-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(-50%) scale(1);
  }
  40% {
    transform: translateY(-60%) scale(1.2);
  }
  60% {
    transform: translateY(-55%) scale(1.1);
  }
}

@keyframes bone-spin {
  0% {
    transform: translateY(-50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-50%) rotate(180deg) scale(1.3);
  }
  100% {
    transform: translateY(-50%) rotate(360deg) scale(1);
  }
}




.token-supply,
.token-uses {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.token-supply h3,
.token-uses h3 {
  color: var(--accent);
  font-family: 'Way Come', sans-serif;
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.token-supply p,
.token-uses p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-secondary);
}

.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.game-header .title {
  margin: 0;
}
.game-features {
  background: var(--bg-secondary);
  padding: 1.2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.game-features h3 {
  color: var(--accent);
  font-family: 'Way Come', sans-serif;
  font-size: 1.3rem;
  margin: 0px 0 15px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.game-features p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-secondary);
}



/***** ROADMAP *****/
/* Enhanced Roadmap Design */
.roadmap-section {
  background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.roadmap-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.roadmap-carousel::-webkit-scrollbar {
  display: none;
}



.milestone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--active) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.milestone:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.milestone:hover::before {
  transform: scaleX(1);
}

.milestone-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.milestone-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(230, 59, 59, 0.76);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.milestone-quarter {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.milestone-year {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 1px;
}

.milestone-content {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.milestone-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.milestone-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--active) 100%);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.milestone.completed .milestone-progress-bar {
  transform: scaleX(1);
}

.milestone.in-progress .milestone-progress-bar {
  transform: scaleX(0.6);
}

.milestone-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-family: 'Orbitron', sans-serif;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-dot.completed {
  background: var(--accent);
}

.status-dot.in-progress {
  background: var(--active);
}

.status-dot.pending {
  background: var(--text-muted);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Roadmap Navigation Dots - Base */
.roadmap-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 0 2rem;
}

.roadmap-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.roadmap-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.roadmap-dot:hover {
  background: var(--active);
  transform: scale(1.1);
}

.roadmap-dot.clicked {
  background: var(--accent);
  transform: scale(1.5);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}



/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .roadmap-carousel {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .milestone {
    min-width: 320px;
    max-width: 320px;
    padding: 1.5rem;
  }
}

/***** FAQ ACCORDION *****/
.faq-item {
  margin-bottom: 1.2rem;
  border-radius: 8px;
  background: #232b27;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
  padding: 1rem;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #181f1c;
}
.faq-answer {
  display: none;
  padding: 1rem;
  color: var(--text-main);
  border-top: 1px solid #333;
  background: #232b27;
  border-radius: 0 0 8px 8px;
}
.faq-item.active .faq-answer {
  display: block;
}




.game-section {
  position: relative;
  overflow: hidden;
  width: 100%;  
  display: inline-block;
  height: 100vh;
  max-width: none;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

/* Mobile adjustments for game section */
@media (max-width: 768px) {
  .game-section {
    height: auto;
    min-height: 80vh;
  }
  
  .game-content {
    padding: 2rem 1rem;
    margin: 1rem 0 1rem 0;
    box-sizing: border-box;
  }
  
  .game-header {
    text-align: center;
    margin-bottom: 2rem;
    flex-direction: column;
  }
  
  .game-header .title {
    font-size: 2rem;
  }
  
  .game-layout {
    flex-direction: column;
    gap: 2rem;
  }
  
  .game-media-container {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .game-info {
    order: 2;
  }
}


.parallax-game-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('images/bg-game3.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  opacity: 0.95;
  transition: filter 1.3s, background-image 2.5s ease-in-out;
}

.parallax-game-layer.bg-transition {
  background-image: url('images/bg-game.jpg');
}
.game-section > *:not(.parallax-game-layer) {
  position: relative;
  z-index: 2;
}

/* Game Media Container */
.game-media-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-tabs {
  display: flex;
  background: var(--bg-main);
  border-bottom: 2px solid var(--accent);
}

.tab-btn {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  color: var(--accent);
  background: rgba(206, 57, 57, 0.829);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--active);
}

.tab-content {
  display: none;
  min-height: 400px;
}

.tab-content.active {
  display: block;
}

/* Video Tab */
.game-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.game-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0 0 12px 12px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-video-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-indicator {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-main);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-indicator:hover {
  transform: scale(1.1);
}

/* Screenshots Tab */
.screenshots-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.screenshot-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.screenshot-item.active {
  opacity: 1;
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0 0 12px 12px;
}

.screenshot-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.nav-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Game Info */
.game-info {
  text-align: justify;
  max-width: 100%;
  margin: 0;
  flex: 1;
}

.game-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.game-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}



/* Ecosystem and Token Container */
.ecosystem-token-container {
  display: flex;
  width: 100%;
  gap: 2rem;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.ecosystem-section,
.token-section {
  flex: 1;
  width: 50%;
  max-width: none;
  margin: 0;
  padding: 2rem;
  box-sizing: border-box;
}




/* Game Layout */
.game-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.game-media-container {
  flex: 1;
  max-width: 600px;
  margin: 0;
}



/* Professional Button Styles */
.btn-play {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, var(--active) 50%, var(--accent) 100%);
  color: var(--bg-main);
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: 'Way Come', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 8px 32px rgba(255, 255, 255, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  overflow: hidden;
  z-index: 1;
}

.btn-play::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-play::after {
  content: '▶';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-play:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 16px 48px rgba(255, 255, 255, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, var(--active) 0%, var(--accent) 50%, var(--active) 100%);
}

.btn-play:hover::before {
  left: 100%;
}

.btn-play:hover::after {
  opacity: 1;
  right: 25px;
}

.btn-play:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 24px rgba(255, 255, 255, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Enhanced Buy $BONES Button */
.btn-secondary {
  background: var(--accent);
  color: var(--bg-main);
  border: 2px solid var(--accent);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'Way Come', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: var(--bg-main);
  color: var(--accent);
}

/* Animations */
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradient-shift-fast {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes bone-float {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-60%) scale(1.1);
  }
}

@keyframes bone-spin {
  0% {
    transform: translateY(-50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-50%) rotate(180deg) scale(1.2);
  }
  100% {
    transform: translateY(-50%) rotate(360deg) scale(1);
  }
}

