 @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@400;700&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html,
 body {
     height: 100%;
     scroll-behavior: smooth;
 }
 

 body {
     font-family: 'Orbitron', sans-serif;
     color: #f5f5f5;
     background: #000;
     overflow-x: hidden;
     cursor: url('https://icons.iconarchive.com/icons/3xhumed/mega-games-pack-25/16/Trading-icon.png'), auto
 }

 canvas#bg-stars {
     position: fixed;
     inset: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     background: #000
 }

 header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 26px;
     background: rgba(0, 0, 0, .85);
     position: sticky;
     top: 0;
     z-index: 1000;
     backdrop-filter: blur(8px)
 }

 header img {
     height: 64px;
     border-radius: 10px;
 }

 nav {
     display: flex;
     align-items: center;
     gap: 16px;
     transition: .35s ease
 }

 nav a {
     color: #0f0;
     text-decoration: none;
     font-weight: bold;
     position: relative;
     padding: 6px 4px;
     transition: .25s
 }

 nav a::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -6px;
     width: 0;
     height: 2px;
     background: #f33;
     transition: .25s
 }

 nav a:hover {
     color: #f33;
     text-shadow: 0 0 12px #f33
 }

 nav a:hover::after {
     width: 100%
 }

 .menu-toggle {
     display: none;
     width: 36px;
     height: 28px;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer
 }

 .menu-toggle span {
     width: 26px;
     height: 3px;
     background: #0f0;
     border-radius: 2px;
     transition: .28s ease
 }

 .menu-toggle.open span:nth-child(1) {
     transform: translateY(6px)rotate(45deg)
 }

 .menu-toggle.open span:nth-child(2) {
     opacity: 0
 }

 .menu-toggle.open span:nth-child(3) {
     transform: translateY(-6px)rotate(-45deg)
 }

 section {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 60px 20px
 }

 h2 {
     font-size: 30px;
     color: #0f0;
     text-shadow: 0 0 8px #0f0;
     margin-bottom: 22px;
     letter-spacing: 1px
 }


 .hero img {
     width: 200px;
     animation: float 3s ease-in-out infinite;
     border-radius: 12px
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-15px)
     }
 }

 .hero h1 {
     font-size: 46px;
     color: #0f0;
     text-shadow: 0 0 15px #0f0, 0 0 30px #0f0;
     margin: 20px 0;
     letter-spacing: 2px
 }

 .hero p {
     font-size: 18px;
     max-width: 900px;
     margin: 0 auto;
     color: #bbb;
     line-height: 1.7
 }

 .mint-btn-container {
     margin-top: 30px;
     display: flex;
     justify-content: center;
     animation: fadeIn 1.2s ease;
 }

 .mint-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 18px;
     font-weight: bold;
     color: #fff;
     text-decoration: none;
     background: linear-gradient(90deg, #ff003c, #ff6f00);
     border: 2px solid #ff002b;
     padding: 14px 28px;
     border-radius: 12px;
     box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), inset 0 0 8px rgba(255, 255, 255, 0.2);
     transition: all 0.2s ease;
     position: relative;
 }

 .mint-btn:hover {
     transform: scale(1.08);
     background: linear-gradient(90deg, #ff6f00, #ff003c);
     box-shadow: 0 0 25px rgba(255, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.3);
 }

 .mint-btn:active {
     transform: scale(0.98);
 }

 .mint-arrow {
     animation: blinkArrow 1.2s infinite;
 }

 @keyframes blinkArrow {

     0%,
     100% {
         opacity: 1;
         transform: translateX(0)
     }

     50% {
         opacity: .5;
         transform: translateX(4px)
     }
 }


 #about {
     position: relative
 }

 .about {
     max-width: 900px;
     margin: 0 auto;
     color: #ccc;
     line-height: 1.8;
     font-size: 16px;
     text-align: left;
     background: rgba(10, 10, 10, 0.6);
     border-radius: 12px;
     padding: 28px 32px;
     border: 2px solid rgba(0, 255, 0, 0.08);
     animation: fadeIn 1.5s ease;
 }

 .about .highlight {
     color: #0f0;
     text-shadow: 0 0 8px #0f0;
     font-weight: bold
 }

 .about strong {
     color: #f33;
     text-shadow: 0 0 6px #f33
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }


 .carousel-container {
     overflow: hidden;
     width: 100%;
     padding: 30px 0;
     display: flex;
     flex-direction: column;
     gap: 30px
 }

 .carousel-track {
     display: inline-flex;
     align-items: center;
     gap: 30px;
     white-space: nowrap
 }

 .carousel-track img {
     height: 30vh;
     border-radius: 14px;
     border: 3px solid #0f0;
     box-shadow: 0 0 15px rgba(0, 255, 0, .1);
     transition: .25s
 }

 .carousel-track img:hover {
     transform: scale(1.07);
     box-shadow: 0 0 25px rgba(0, 255, 0, .2)
 }

 .scroll-left {
     animation: scroll-left 15s linear infinite
 }

 .scroll-right {
     animation: scroll-right 15s linear infinite
 }

 @keyframes scroll-left {
     0% {
         transform: translateX(0)
     }

     100% {
         transform: translateX(-50%)
     }
 }

 @keyframes scroll-right {
     0% {
         transform: translateX(-50%)
     }

     100% {
         transform: translateX(0)
     }
 }


 .markets {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 30px;
     margin-top: 26px
 }

 .markets a {
     background-color: rgba(0, 255, 0, 0.881);
     background-position: center;
     opacity: 0.7;
     width: 300px;
     height: 160px;
     border-radius: 12px;
     background-size: contain;
     background-repeat: no-repeat;
 }

 .markets a:hover {
     transform: scale(1.05) rotate(1deg);
     box-shadow: 0 0 25px rgba(0, 255, 0, 0.099);
     opacity: 1;
 }


 .creator img {
     width: 140px;
     height: 140px;
     object-fit: cover;
     border-radius: 50%;
     border: 3px solid #0f0;
     box-shadow: 0 0 12px rgba(0, 255, 0, .08)
 }

 .creator h3 {
     color: #0f0;
     font-size: 22px;
     text-shadow: 0 0 8px #0f0;
     margin-top: 12px
 }

 .creator p {
     max-width: 760px;
     color: #ccc;
     font-size: 15px;
     line-height: 1.6;
     margin: 10px 0
 }

 .creator a {
     color: #0f0;
     font-weight: bold;
     text-decoration: none
 }

 .creator a:hover {
     color: #f33;
     text-shadow: 0 0 8px #f33
 }


 .faq {
     width: 800px;
     max-width: 90%;
     margin: 20px auto;
     text-align: left
 }

 .faq details {
     background: rgba(18, 18, 18, .85);
     border-radius: 10px;
     padding: 14px 18px;
     margin-bottom: 12px;
     border: 2px solid rgba(15, 255, 0, .06);
     transition: .25s
 }

 .faq details:hover {
     transform: translateY(-4px);
     box-shadow: 0 0 18px rgba(0, 255, 0, .08)
 }

 .faq summary {
     font-size: 18px;
     color: #0f0;
     cursor: pointer;
     font-weight: bold;
     text-shadow: 0 0 6px #0f0;
     list-style: none
 }

 .faq summary::-webkit-details-marker {
     display: none
 }

 .faq p {
     color: #ccc;
     margin-top: 10px;
     line-height: 1.6;
     font-size: 15px
 }

 .cta {
     margin-top: 40px;
     display: inline-block;
     padding: 14px 30px;
     border: 2px solid #0f0;
     border-radius: 8px;
     color: #0f0;
     text-decoration: none;
     font-weight: bold;
     box-shadow: 0 0 12px rgba(0, 255, 0, .1);
     transition: .25s;
 }

 .cta:hover {
     background: #0f0;
     color: #000;
     box-shadow: 0 0 25px #0f0
 }

 footer {
     background: rgba(0, 0, 0, .85);
     padding: 22px;
     text-align: center;
     border-top: 2px solid #0f0;
     font-size: 15px
 }

 footer a {
     color: #0f0;
     text-decoration: none
 }

 footer a:hover {
     color: #f33;
     text-shadow: 0 0 8px #f33
 }

 @media(max-width:700px) {
     .menu-toggle {
         display: flex
     }

     nav {
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: rgba(0, 0, 0, .95);
         flex-direction: column;
         gap: 10px;
         overflow: hidden;
         max-height: 0;
         transition: .36s ease
     }

     nav.open {
         max-height: 320px;
         padding: 10px 0
     }

     nav a {
         width: 90%;
         text-align: center;
         border-radius: 8px;
         background: rgba(255, 255, 255, .03)
     }

     .hero h1 {
         font-size: 28px
     }

     .hero p {
         font-size: 15px;
         padding: 0 14px
     }

     .carousel-track img {
         height: 240px
     }

     section {
         padding: 40px 10px;
         height: auto;
         min-height: 100vh
     }
 }
