.nav-links a:hover,
body {
    color: #fff;
}
.nav-links a,
.nav-whitepaper,
.news-box a {
    text-decoration: none;
}
#FinFooter,
#FinHead {
    font-weight: 900;
    color: #fff;
    font-family: Lexend, sans-serif;
}
.btn-black,
.btn-yellow-outline,
.icon-btn {
    box-shadow: 4px 4px 6px #fff;
}
.hero,
.wave-banner {
    overflow: hidden;
}
.hero button,
.logo,
.scrolling-text,
body {
    font-family: Inter, "Open Sans", Montserrat, sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #000;
}
.site-header {
    background: #fdd700;
    padding: 12px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero {
    position: relative;
}
.hero-owl-container {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 350px;
    max-width: 35%;
    animation: 4s ease-in-out infinite floatOwl;
    z-index: 1;
}
.hero-owl-container img {
    width: 110%;
    height: auto;
}
@keyframes floatOwl {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.left-group {
    display: flex;
    align-items: center;
    gap: 30px;
}
.logo {
    font-size: 20px;
    font-weight: 800;
    color: #000;
}
.logo img {
    height: 75px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}
.hero .buttons,
.hero p {
    margin: 20px 0;
}
.nav-links {
    display: flex;
    gap: 25px;
}
.nav-links a {
    color: #000;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s;
}
.menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}
@media (max-width: 768px) {
    .hero-owl-container {
        position: static;
        margin: 30px auto 0;
        display: block;
        width: 200px;
        animation: none;
    }
    .hero {
        padding-bottom: 40px;
        text-align: center;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        background: #fdd700;
        padding: 20px 30px;
        border-radius: 12px;
        box-shadow: 4px 4px 6px #fff;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .container {
        position: relative;
    }
    .hero h1 {
        font-size: 40px;
    }
    .section-box {
        padding: 20px;
    }
}
.right-icons {
    display: flex;
    gap: 10px;
}
.copy-box,
.icon-btn {
    display: inline-flex;
}
.icon-btn {
    background: #000;
    padding: 6px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}
.hero,
section {
    padding: 60px 20px;
}
.icon-btn img {
    filter: invert(1);
    width: 16px;
    height: 16px;
}
.hero {
    background: #fdd700;
    text-align: center;
    color: #000;
}
#FinHead {
    font-size: 90px;
    text-shadow: 7px 6px 0 #000;
}
#FinFooter {
    font-size: 120px;
    text-shadow: 5px 5px 0 #fdd700;
}
.hero p {
    font-size: 18px;
}
.hero button {
    padding: 15px 25px;
    margin: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 8px;
}
.btn-black,
.btn-yellow-outline,
.copy-box {
    border: 2px solid #fff;
    color: #fff;
}
.btn-black {
    background-color: #000;
}
.btn-yellow-outline,
.copy-box {
  background: transparent;
}

.copy-box {
  position: relative;
  padding: 10px 20px;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 20px 4px #A17800;
  animation: 1.2s infinite alternate flicker;
}

@keyframes flicker {
  0% {
    box-shadow: 
      0 0 8px 2px #A17800,
      0 0 16px 4px rgba(161, 120, 0, 0.4);
  }
  100% {
    box-shadow: 
      0 0 20px 6px #A17800,
      0 0 30px 10px rgba(161, 120, 0, 0.7);
  }
}



.wallet-wrapper,
.whitepaper-wrapper {
    position: relative;
    display: inline-block;
}
.wallet-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: #fff;
    color: #000;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 10px;
}
.about-grid-box,
.copy-box2 {
    box-shadow: 6px 6px 0 #fff;
    background: #fdd700;
}
.wallet-menu button {
    background: 0 0;
    border: none;
    font-weight: 700;
    cursor: pointer;
    color: #000;
}
.wallet-menu button:hover {
    color: red;
}
.copy-box code,
.copy-box2 code {
    overflow-x: auto;
    font-size: 14px;
    margin-right: 10px;
    color: #000;
    font-weight: 700;
}
.copy-box button,
.copy-box2 button {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    border: 2px solid #fff;
    box-shadow: 4px 4px 6px #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    cursor: pointer;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.about-grid-box {
    color: #000;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}
.about-grid-box:hover {
    transform: translateY(-6px);
    box-shadow: 10px 10px 0 #fff;
}
.about-grid-box h3 {
    margin-bottom: 10px;
}
.about-grid-box ul {
    padding-left: 18px;
    margin-top: 8px;
}
.about-grid-box ul li,
.roadmap-box li {
    margin-bottom: 6px;
}
.copy-box2-wrapper {
    position: relative;
    height: 0;
    z-index: 3;
}
.copy-box2 {
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    z-index: 4;
}
.wave-banner,
.wave-top-border {
    position: relative;
    background: #fff;
}
.wave-top-border {
    height: 40px;
}
.wave-top-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fdd700;
    clip-path: polygon(0 100%, 6.25% 80%, 12.5% 100%, 18.75% 80%, 25% 100%, 31.25% 80%, 37.5% 100%, 43.75% 80%, 50% 100%, 56.25% 80%, 62.5% 100%, 68.75% 80%, 75% 100%, 81.25% 80%, 87.5% 100%, 93.75% 80%, 100% 100%, 100% 0%, 0 0);
}
.wave-bottom-border {
    height: 40px;
    background: #000;
    clip-path: polygon(0 20%, 6.25% 0%, 12.5% 20%, 18.75% 0%, 25% 20%, 31.25% 0%, 37.5% 20%, 43.75% 0%, 50% 20%, 56.25% 0%, 62.5% 20%, 68.75% 0%, 75% 20%, 81.25% 0%, 87.5% 20%, 93.75% 0%, 100% 20%, 100% 100%, 0 100%);
    margin-top: -10px;
}
.scrolling-wrapper {
    display: flex;
    width: 200%;
    animation: 20s linear infinite scroll-left;
    background: #fff;
}
.scrolling-text {
    display: flex;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    color: #fdd700;
    padding: 10px 0;
    flex: 1;
}
.feature,
.news-box,
.roadmap-box,
.step-box,
.token-box,
.token-box2,
.tokeninfo {
    color: #000;
    padding: 20px;
    background: #fdd700;
}

.step-box2{
    color: #000;
    padding: 20px;
    background: #7C7A77;
}
.scrolling-text span {
    padding: 0 30px;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.section-box.about-card,
.section-box.card-style {
    background: 0 0;
    border-radius: 12px;
    padding: 0;
    margin: 60px auto 40px;
    max-width: 1000px;
    position: relative;
    border: none;
}
.section-box.about-card .section-title,
.section-box.card-style .section-title {
    background: #fff;
    padding: 14px 40px;
    font-weight: 700;
    color: #1e90ff;
    font-size: 28px;
    border-radius: 12px;
    display: inline-block;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    box-shadow: 6px 6px 0 #fdd700;
}
.section-box.about-card .section-content,
.section-box.card-style .section-content {
    background: #f16402;
    padding: 80px 30px;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    box-shadow: 6px 6px 0 #fff;
}
.buy-steps,
.tokeninfo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hiring-roles,
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.roadmap-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.news-box,
.roadmap-box {
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 4px 4px 6px #fff;
}
.news-box a {
    color: #000;
    font-weight: 700;
}
.news-box a:hover {
    text-decoration: underline;
}
.roadmap-box ul {
    padding-left: 20px;
    margin: 10px 0 20px;
}
.step-box,
.step-box2,
.token-box2 {
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    box-shadow: 6px 6px 0 #fff;
    transition: transform 0.2s;
}
.step-box:hover {
    transform: translateY(-4px);
}

.step-box2:hover {
    transform: translateY(-4px);
}

.feature,
.step-box,
.step-box2,
.token-box,
.tokeninfo {
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}
.feature span,
.token-box span,
.token-box2 span,
.tokeninfo span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}
.announcements {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    width: 100%;
}
.announcements img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.socials a {
    display: inline-block;
    transition: transform 0.3s;
}
.socials a:hover {
    transform: scale(1.1);
}
.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.footer {
    background: #f16402;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}
.footer h1 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 20px;
}
.footer .socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer .socials button {
    background: #fdd700;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}
.whitepaper-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-weight: 700;
    white-space: nowrap;
}
.nav-whitepaper {
    color: #fff;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
}
.disclaimer-box {
    background: #fdd700;
    color: #000;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 6px 6px 0 #000;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14.5px;
    line-height: 1.7;
    text-align: left;
}
.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 900;
    color: #000;
}
.disclaimer-box ul {
    margin: 10px 0 15px 20px;
    list-style: disc;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background-color: #FDD700; /* Yellow-orange tone */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px #F16402;
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: #000;
  font-family: 'Lexend', sans-serif;
}

.popup-box h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.popup-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.popup-box button {
  padding: 10px 20px;
  background-color: #F16402;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.tools-dropdown {
  position: relative;
  display: inline-block;
}

.tools-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #FDD700;
  z-index: 1000;
  min-width: 160px;
}

.tools-dropdown:hover .tools-menu {
  display: block;
}

.tools-menu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
}

.tools-menu a:hover {
  background-color: #FDD700;
  color: #000;
}

.submenu-wrapper {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 6px;
  background: #111;
  border: 2px solid #FDD700;
  border-radius: 10px;
  padding: 8px 0;
  z-index: 1001;
  min-width: 160px;
}

.submenu-wrapper:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #fff;
}

.submenu a:hover {
  background-color: #FDD700;
  color: #000;
}
