/* ===== Dark & Gold Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Keyframes ---------- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

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

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #020617;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(234, 179, 8, 0.3);
    color: #fbbf24;
}

/* ---------- Scrollbar (Webkit) ---------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0f1c;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #eab308, #ca8a04);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fbbf24, #eab308);
}

/* ---------- Utility Animations ---------- */
.animate-float {
    animation: float 5s ease-in-out infinite;
}

.animate-fadeIn {
    animation: fadeIn 1.2s ease forwards;
}

.animate-scroll {
    animation: scroll 25s linear infinite;
}

/* ---------- No-scrollbar ---------- */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ---------- Legacy Layout Classes ---------- */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background: #020617;
    border-bottom: 1px solid rgba(234, 179, 8, 0.15);
}

nav a {
    color: #e2e8f0;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #eab308;
}

.hero {
    display: flex;
    align-items: center;
    padding: 80px 10%;
}
.hero h1 {
    font-size: 45px;
}
.hero span {
    color: #eab308;
}

.hero-btn button {
    margin: 10px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #020617;
}
.btn-primary:hover {
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #eab308 !important;
    color: #eab308;
}
.btn-outline:hover {
    background: rgba(234, 179, 8, 0.1);
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.2);
}

.trusted {
    text-align: center;
    padding: 50px;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.box {
    background: linear-gradient(180deg, #0b0f1c, #020617);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(234, 179, 8, 0.1);
    transition: all 0.4s ease;
}
.box:hover {
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.08);
    transform: translateY(-4px);
}

.tokenomics {
    padding: 50px 10%;
}

.token-grid {
    display: flex;
    gap: 40px;
}

.earn {
    padding: 50px 10%;
    text-align: center;
}

.earn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.earn-box {
    background: linear-gradient(180deg, #0b0f1c, #020617);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(234, 179, 8, 0.1);
    transition: all 0.4s ease;
}
.earn-box:hover {
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.1);
}

.roadmap {
    padding: 50px 10%;
    text-align: center;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.road-box {
    background: linear-gradient(180deg, #0b0f1c, #020617);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(234, 179, 8, 0.1);
}

.team {
    padding: 50px 10%;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-box img {
    width: 100%;
    border-radius: 16px;
}

.app {
    padding: 50px 10%;
}

.app-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.testimonials {
    padding: 50px 10%;
    text-align: center;
}

.test-grid {
    display: flex;
    gap: 20px;
}

.test-box {
    background: linear-gradient(180deg, #0b0f1c, #020617);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(234, 179, 8, 0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    border-top: 1px solid rgba(234, 179, 8, 0.15);
}

/* ---------- Gold Accent Helpers ---------- */
.gold-text {
    background: linear-gradient(135deg, #fbbf24, #eab308, #ca8a04);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-border {
    border: 1px solid rgba(234, 179, 8, 0.25);
}

.gold-glow {
    box-shadow: 0 0 40px rgba(234, 179, 8, 0.12);
}

/* ---------- Scroll Reveal ---------- */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Slow Pulse (Background Orbs) ---------- */
@keyframes pulseSlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(1.08); }
}

.animate-pulse-slow {
    animation: pulseSlow 6s ease-in-out infinite;
}

/* ---------- Particles Canvas ---------- */
#particles-canvas {
    opacity: 0.6;
}

/* ---------- Roadmap Equal-Height Cards ---------- */
#roadmap-slider {
    align-items: stretch;
    padding-top: 16px;
    margin-top: -16px;
}
#roadmap-slider > div {
    display: flex;
    flex-direction: column;
}
#roadmap-slider > div > .group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
#roadmap-slider > div > .group > div.mt-12 {
    flex: 1;
}