@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Orbitron:wght@600&display=swap');

html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 0;
  pointer-events: none;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000 url('vault-bg.png') center center / cover no-repeat;
  color: gold;
  min-height: 100vh;
}

a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

a.button-style {
  display: inline-block;
  padding: 12px 24px;
  background: gold;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  border: 2px solid gold;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  text-shadow: none;
  z-index: 2;
  position: relative;
}

a.button-style:hover {
  background: #fff16a;
  color: #000;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 20px;
}

.section,
.vault-box,
.side-box {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid gold;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 60px auto;
  max-width: 800px;
  color: gold;
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.community-box {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 30px 20px; /* keep spacing */
  margin: 60px auto;
  max-width: 800px;
}

.section h2,
.vault-box h2,
.side-box h2 {
  font-size: 32px;
  color: gold;
  margin-top: 5px;
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  text-shadow: none;
}

.section p,
.vault-box p,
.side-box p {
  font-size: 18px;
  color: gold;
  line-height: 1.6;
  text-shadow: none;
}

.vault-header {
  width: 100%;
  text-align: center;
  padding: 30px 20px 0;
}

.header-button {
  background: gold;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  border: 2px solid gold;
  display: inline-block;
  margin-top: 10px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 30px;
  border-bottom: 2px solid gold;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}


.top-left {
  font-size: 28px;
  font-family: 'Orbitron', sans-serif;
  color: gold;
  font-weight: bold;
  letter-spacing: 1px;
}

.top-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.top-right .header-button {
  background: gold;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  border: 2px solid gold;
  text-decoration: none;
  font-size: 16px;
}

.row-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.side-box {
  flex: 1 1 500px;
}

.welcome-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.welcome-text {
  flex: 1 1 500px;
  color: gold;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.welcome-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: gold;
  font-family: 'Orbitron', sans-serif;
  text-shadow: none;
}

.welcome-text p {
  font-size: 18px;
  color: gold;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  text-shadow: none;
}

.coin-graphic {
  flex: 1 1 500px;
  text-align: center;
}

.coin-graphic img {
  max-width: 100%;
  height: auto;
  animation: floatCoin 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px gold);
}

@keyframes floatCoin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.icon-button {
  width: 35px;
  height: 35px;
  margin-left: 12px;
  vertical-align: middle;
  filter: brightness(1.2);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.icon-button:hover {
  transform: scale(1.15);
  filter: brightness(1.6);
}

.top-left a {
  display: inline-block;
}

.roadmap-section {
  text-align: center;
  padding: 60px 20px;
}

.roadmap-title {
  font-size: 40px;
  color: gold;
  margin-bottom: 40px;
  font-family: 'Orbitron', sans-serif;
}

.roadmap-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.roadmap-box {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid gold;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  color: gold;
  font-family: 'Inter', sans-serif;
  text-align: left;
  box-shadow: none;
}

.roadmap-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  color: gold;
  font-family: 'Orbitron', sans-serif;
}

.roadmap-box ul {
  list-style: none;
  padding-left: 0;
}

.roadmap-box li {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.contract-box {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid gold;
  border-radius: 10px;
  color: gold;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
  word-break: break-all;
  box-shadow: 0 0 10px gold;
}

.buy-button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: gold;
  color: black;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  border-radius: 6px;
  border: 2px solid gold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #fff16a;
  color: black;
}
.community-box {
  text-align: center;
  margin: 40px auto;
  font-family: 'Orbitron', sans-serif;
  color: gold;
}

.community-box h2 {
  font-size: 32px;
  color: gold;
  margin-bottom: 10px;
  text-shadow: none;
}

.community-box p {
  font-size: 18px;
  color: gold;
  margin-bottom: 20px;
  text-shadow: none;
}

.community-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

.community-icons img.icon-button {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.community-icons img.icon-button:hover {
  transform: scale(1.15);
  filter: brightness(1.5);
}
.tokenomics-section {
  text-align: center;
}

.tokenomics-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.tokenomics-breakdown ul {
  list-style: none;
  padding: 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: gold;
}

.tokenomics-breakdown li {
  margin-bottom: 10px;
}

.tokenomics-chart img {
  width: 100%;
  max-width: 600px; 
  height: auto;
}
.site-footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-top: 2px solid gold;
  padding: 20px;
  margin-top: 60px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: gold;
  box-shadow: 0 -2px 10px gold;
  position: relative;
  z-index: 2;
}

.site-footer p {
  margin: 0 auto;
  display: inline-block;
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .top-bar {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 15px 10px;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

  .top-left {
    font-size: 24px;
    justify-content: center;
  }

  .top-right {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .top-left {
    font-size: 24px;
    justify-content: center;
  }

  .top-right {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .header-button {
    font-size: 14px;
    padding: 8px 14px;
  }

  .welcome-hero {
    flex-direction: column;
    padding: 20px 10px;
    text-align: center;
  }

  .roadmap-container {
    flex-direction: column;
    align-items: center;
  }

  .roadmap-box {
    width: 90%;
  }

  .tokenomics-chart img {
    max-width: 90%;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
  .container,
  .section,
  .vault-box,
  .side-box,
  .contract-box {
    width: 100%;
    max-width: 100vw;
    margin: 20px auto;
    padding: 20px 10px;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}

  .coin-graphic img {
    max-width: 100%;
  }

  .site-footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
  }

  .site-footer p {
    margin: 0 auto;
    max-width: 90%;
  }
}

