/* root */
:root {
  --black: #000;
  --white: #fff;
  --yellow: #ffa500;
  --creamy: #FFFBF5;
  --primary-gradient: linear-gradient(135deg, #ffff00 0%, #ffa500 100%);
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 12px 25px rgba(0, 0, 0, 0.15), 0 8px 10px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Stopbuck";
  src: url("../fonts/Stopbuck.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Stopbuck", sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #57c6ed;
  overflow-x: hidden;
}

/* LOADING SCREEN */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #070802 0%, #1a1a1a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: #fff;
}

.loading-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #ffa500;
  margin-bottom: 20px;
  animation: logoSpin 2s linear infinite;
}

@keyframes logoSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 2rem;
  font-weight: bold;
  color: #ffff00;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% { text-shadow: 0 0 20px rgba(255, 255, 0, 0.5); }
  100% { text-shadow: 0 0 30px rgba(255, 255, 0, 0.8), 0 0 40px rgba(255, 165, 0, 0.3); }
}

.loading-spinner {
  display: flex;
  justify-content: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 165, 0, 0.3);
  border-left-color: #ffa500;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* NAVBAR */
.topnav {
  background: linear-gradient(135deg, #FFFBF5 0%, #FFF5E6 100%);
  backdrop-filter: blur(10px);
  border: 2px solid #000;
  padding: 15px 30px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(90%, 1200px);
  border-radius: 25px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 165, 0, 0.1);
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.topnav:hover {
  box-shadow: 
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 165, 0, 0.2);
  transform: translateX(-50%) translateY(-2px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #000;
  transition: all 0.3s ease;
  object-fit: cover;
}

.logo:hover img {
  border-color: #ffa500;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.2), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background-color: rgba(255, 165, 0, 0.1);
  color: #ffa500;
  transform: translateY(-2px);
}

.nav-link i {
  font-size: 1.1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.button-buy {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffff00 0%, #ffa500 100%);
  border: 2px solid #000;
  padding: 12px 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-buy::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.5s;
}

.button-buy:hover::before {
  left: 100%;
}

.button-buy:hover {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 
    0 8px 15px rgba(255, 165, 0, 0.3),
    0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-buy:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 165, 0, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Scroll effect untuk navbar */
.topnav.scrolled {
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(15px);
  padding: 10px 30px;
}

.topnav.scrolled .logo img {
  width: 35px;
  height: 35px;
}

.topnav.scrolled .logo-text {
  font-size: 1.3rem;
}
/* NAVBAR */

/* HERO */
.hero {
  background-image: url("../images/banner1.png");
  height: 900px;
  image-rendering: -webkit-optimize-contrast;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text {
  color: #fff;
  margin-bottom: 30px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  margin: 0 0 20px 0;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(255, 165, 0, 0.3);
  line-height: 1.1;
  animation: heroTitleAnimation 1s ease-out;
}

@keyframes heroTitleAnimation {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title .highlight {
  color: #ffff00;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 255, 0, 0.6);
}

.hero-title .subtitle {
  display: block;
  font-size: 0.4em;
  color: #ffa500;
  margin-top: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin: 0 auto 30px;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  animation: heroDescAnimation 1s ease-out 0.3s both;
}

@keyframes heroDescAnimation {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroButtonsAnimation 1s ease-out 0.6s both;
}

@keyframes heroButtonsAnimation {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

.hero-btn.primary {
  background: linear-gradient(135deg, #ffff00 0%, #ffa500 100%);
  color: #000;
  border-color: #000;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #fff;
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
  backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: heroStatsAnimation 1s ease-out 0.9s both;
}

@keyframes heroStatsAnimation {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 165, 0, 0.2);
  border-color: rgba(255, 165, 0, 0.4);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #ffff00;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  margin-top: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-social-media {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  background: rgba(255, 251, 245, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 3;
  animation: socialMediaFloat 3s ease-in-out infinite;
}

@keyframes socialMediaFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.social-item:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-item.telegram:hover {
  border-color: #0088cc;
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.social-item.twitter:hover {
  border-color: #1da1f2;
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.social-item.dexscreener:hover {
  border-color: #ff6b35;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-item.birdeye:hover {
  border-color: #8b5cf6;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.social-item img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* HERO END */

/* SECTIONS */
.box-moving {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #070802;
}
.box {
  display: flex;
  align-items:center;
}
.box .text-box{
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  padding: 10px;
}

/* ABOUT */
.about {
  background-image: url("../images/banner2.png");
  height: 900px;
  image-rendering: -webkit-optimize-contrast;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
/* ABOUT */
/* BANNER */
.how_to_buy {
  background-image: url("../images/banner3.png");
  height: 900px;
  image-rendering: -webkit-optimize-contrast;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
/* BANNER */
.how_to_use {
  background-image: url("../images/banner4.png");
  height: 900px;
  image-rendering: -webkit-optimize-contrast;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
.social-media{
  display: flex;
  justify-content: center;
  align-items: center;
  top: 70%;
  position: relative;
}
.social-media-item {
  background-color: transparent;
  border-radius: 10px;
  padding: 20px;
  margin-right: 20px;
  box-shadow: rgba(2, 2, 2, 0) 5px 5px, rgba(0, 0, 0, 0.3) 10px 10px,
    rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px,
    rgba(240, 46, 170, 0.05) 25px 25px;
}

/* FOOTER */

.floating-social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(255, 251, 245, 0.95) 0%, rgba(255, 245, 230, 0.95) 100%);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 165, 0, 0.1);
  width: auto;
  max-width: 400px;
  z-index: 1000;
  animation: floatingPulse 3s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-social-media:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 165, 0, 0.2);
}

@keyframes floatingPulse {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 165, 0, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.1);
  }
}

.floating-social-media .icon {
  margin: 0 8px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.floating-social-media .icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.floating-social-media .icon:hover::before {
  left: 100%;
}

.floating-social-media .icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-social-media .icon:nth-child(1):hover {
  border-color: #0088cc;
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.floating-social-media .icon:nth-child(2):hover {
  border-color: #ff6b35;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.floating-social-media .icon:nth-child(3):hover {
  border-color: #1da1f2;
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.floating-social-media .icon:nth-child(4):hover {
  border-color: #8b5cf6;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.floating-social-media .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.floating-social-media .icon:hover img {
  transform: scale(1.1);
}
.item-social{
    margin: 0 10px;
    box-shadow: rgba(240, 46, 170, 0.2);
    color : #FFFBF5;
    background-color: var(--yellow);
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;

}

