@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #000;
    color: white;
    overflow-x: hidden;
}

.hero-screen {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 12px;
}


/* NAVBAR */
.navbar {
    width: 100%;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #111;
}

.navbar img {
    height: 45px;
    animation: fadeInDown 1s ease forwards;
}

.nav-btn {
    background: #0af;
    padding: 10px 18px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #09c;
}

/* HERO SECTION */
.hero {
    padding: 140px 20px 80px;
    text-align: center;
    animation: fadeIn 1.5s ease;
}

.hero {
    padding: 80px 20px 60px;
}

.stat-box.decentralized {
    color: #007bff; /* Blue theme */
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px;
    margin-top: 10px;
}



.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00d4ff, #0078ff);
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 650px;
    margin: auto;
}

.cta-btn {
    background: #0078ff;
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 25px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #0099ff;
}


/* ⭐ NEW STATS SECTION (BELOW DOWNLOAD BUTTON) */
.stats-container {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    animation: fadeIn 1.5s ease forwards;
}

.stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 22px 30px;
    border-radius: 14px;
    text-align: center;
    width: 170px;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: #0078ff;
    box-shadow: 0 0 18px rgba(0,118,255,0.25);
}

.stat-box .counter {
    font-size: 34px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #00d4ff, #0078ff);
    -webkit-background-clip: text;
    color: transparent;
}

.stat-box p {
    margin-top: 5px;
    font-size: 15px;
    color: #ccc;
}



/* SECTIONS */
.section {
    padding: 60px 25px;
    text-align: center;
    margin-top: 30px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background: #0a0a0a;
    border: 1px solid #151515;
    padding: 25px;
    border-radius: 15px;
    transition: 0.4s;
    transform: translateY(10px);
    opacity: 0;
    animation: fadeUp 1s forwards;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #0078ff;
    box-shadow: 0 0 20px rgba(0,118,255,0.25);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #050505;
    color: #666;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
