@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

:root {
    --neon: #facc15;
    --neon2: #22d3ee;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --bg: #020617;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    overflow-x: hidden;
    color: var(--text);
}

/* Background Glowing Gradient */
.bg-blur {
    position: fixed;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(250,204,21,0.4), transparent 70%);
    filter: blur(200px);
    z-index: -2;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--neon), var(--neon2));
    -webkit-background-clip: text;
    color: transparent;
    font-size: 26px;
}

.btn-outline {
    padding: 8px 18px;
    border: 1px solid var(--neon);
    border-radius: 20px;
    background: transparent;
    color: var(--neon);
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--neon);
    color: #111;
}

/* HERO SECTION */
.hero {
    text-align: center;
    margin-top: 80px;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
}

.hero-title span {
    background: linear-gradient(135deg, var(--neon), var(--neon2));
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 600px;
    margin: 20px auto;
    color: var(--muted);
    font-size: 16px;
}

/* Buttons */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary {
    padding: 14px 34px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    color: #000;
    background: linear-gradient(90deg, #f4d03f, #34e89e, #00c6ff);
    transition: 0.3s ease;
    box-shadow: 0px 0px 15px rgba(0, 198, 255, 0.4);
}

/* Hover Effect */
.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0px 0px 25px rgba(0, 198, 255, 0.8);
}

/* Click Animation */
.btn-primary:active {
    transform: scale(0.95);
    box-shadow: 0px 0px 10px rgba(0, 198, 255, 0.4);
}

/* Smooth floating animation (optional) */
.btn-primary {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}


.btn-secondary {
    padding: 12px 26px;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text);
    cursor: pointer;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

/* Stats Box */
.stats-box {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Premium Gradient Glass Box */
.stat {
    position: relative;
    width: 260px;
    padding: 26px 22px;
    border-radius: 18px;
    text-align: center;

    /* Gradient Glass Background */
    background:
        linear-gradient(
            135deg,
            rgba(0, 255, 213, 0.12),
            rgba(15, 23, 42, 0.85)
        );

    border: 1px solid rgba(0, 255, 213, 0.25);
    backdrop-filter: blur(12px);

    transition: all 0.35s ease;
    overflow: hidden;
}

/* Glow Border Effect */
.stat::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        #00ffd5,
        #22d3ee,
        #facc15
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    pointer-events: none;
}

/* Hover Animation */
.stat:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        0 0 25px rgba(0, 255, 213, 0.35),
        0 0 60px rgba(34, 211, 238, 0.15);
}

/* Title */
.stat h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;

    background: linear-gradient(135deg, #00ffd5, #facc15);
    -webkit-background-clip: text;
    color: transparent;
}

/* Description */
.stat p {
    font-size: 14px;
    line-height: 1.6;
    color: #b6c3d1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stat {
        width: 100%;
    }
}

/* Flash Tokens Section */
.tokens-section {
    margin-top: 80px;
    text-align: center;
    padding: 0 20px;
}

.tokens-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #7fffc6; /* Light green glow */
}

/* Wrapper for 2 cards */
.tokens-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Token Box */
.tokens-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Premium Token Card */
.token-card {
    position: relative;
    width: 420px;
    padding: 32px 30px;
    border-radius: 22px;
    text-align: center;

    /* Glass + Gradient background */
    background:
        linear-gradient(
            135deg,
            rgba(0, 255, 213, 0.12),
            rgba(15, 23, 42, 0.9)
        );

    border: 1px solid rgba(0, 255, 213, 0.25);
    backdrop-filter: blur(14px);

    transition: all 0.4s ease;
    overflow: hidden;
}

/* Gradient Glow Border */
.token-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;

    background: linear-gradient(
        135deg,
        #00ffd5,
        #22d3ee,
        #facc15
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0.45;
    pointer-events: none;
}

/* Hover Effect */
.token-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 0 30px rgba(0, 255, 213, 0.35),
        0 0 80px rgba(34, 211, 238, 0.18);
}

/* Token Titles */
.token-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
}

/* Green & Yellow Titles */
.green-title {
    background: linear-gradient(135deg, #00ffd5, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
}

.yellow-title {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    color: transparent;
}

/* Token Text */
.token-text {
    color: #b6c3d1;
    font-size: 15px;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .token-card {
        width: 100%;
    }
}

/* Footer Section */
.site-footer {
    margin-top: 60px;
    padding: 20px 30px;
    background: #031224;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 200, 0.3);
    margin-bottom: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b2c2d3;
    font-size: 14px;
}

/* Contact Button */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #00ffd5;
    color: #000;
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn .dot {
    width: 10px;
    height: 10px;
    background: black;
    border-radius: 50%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-btn {
        padding: 12px 26px;
    }
}
.stats-box {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    max-width: 200px;
}

.stat h3 {
    font-size: 22px;
    font-weight: 800;
    color: #00ffd5;
    margin-bottom: 8px;
}

.stat p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}
.stats-box {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Each stat as a box */
.stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.15);
    border-radius: 16px;
    padding: 20px 25px;
    width: 230px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: 0.3s ease-in-out;
}

/* Hover Animation */
.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.4);
    border-color: rgba(0, 255, 200, 0.5);
}

.stat h3 {
    font-size: 20px;
    font-weight: 700;
    color: #00ffd5;
    margin-bottom: 10px;
}

.stat p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .stat {
        width: 100%;
    }
}
.typewriter {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    animation: typing 5s steps(40, end) infinite;
}

/* Gradient text */
.typewriter span {
    background: linear-gradient(90deg, #f4d03f, #34e89e, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typing animation */
@keyframes typing {
    0% { width: 0; }
    60% { width: 100%; }
    80% { width: 100%; }
    100% { width: 0; }
}
@media (max-width: 768px) {
    .typewriter {
        font-size: 22px;       /* Mobile font size */
        white-space: normal;  /* Line break allow */
        text-align: center;
        animation: none;      /* Optional: smooth look */
        width: 100%;
    }
}

@media (max-width: 480px) {
    .typewriter {
        font-size: 18px;
        line-height: 1.4;
    }
}
