/* style.css */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafbfc;
    color: #1a1a1a;
}

header {
    background: #16191b;
    color: #fff;
    position: relative;
    overflow: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
}

.logo {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
}
nav li {
    margin-left: 1.5rem;
}
nav a {
    color: #67e7a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #fff;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5%;
    background: linear-gradient(90deg, #13161a 60%, #222b2f 100%);
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #67e7a0;
    animation: fadeInDown 1.2s;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.cta-btn {
    background: #41b967;
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(38, 211, 93, 0.08);
    transition: background 0.2s, transform 0.2s;
    animation: fadeInUp 1.5s;
}
.cta-btn:hover {
    background: #67e7a0;
    transform: translateY(-2px) scale(1.01);
}

.hero-animation {
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wallet-anim {
    width: 120px; height: 120px;
    border-radius: 22% 78% 70% 30%/35% 30% 70% 65%;
    background: linear-gradient(130deg, #fff 55%, #67e7a0 100%);
    box-shadow: 0 8px 36px #67e7a035, 0 1.5px 14px #41b96735;
    animation: blobFloat 4.5s ease-in-out infinite alternate;
}

@keyframes blobFloat {
    0% { border-radius: 22% 78% 70% 30%/35% 30% 70% 65%; }
    60% { border-radius: 60% 30% 50% 50%/45% 60% 40% 55%; }
    100% { border-radius: 15% 85% 35% 65%/65% 40% 60% 35%; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px);}
    to   { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px);}
    to   { opacity: 1; transform: translateY(0);}
}

main { padding: 3rem 5%; }

section h2 {
    color: #41b967;
    font-size: 1.7rem;
}
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin: 1.3rem 0 2.2rem 0;
    padding: 0;
    list-style: disc inside;
}
.features-list li {
    background: #f5fdf9;
    color: #212;
    padding: 1rem 1.4rem;
    border-radius: 9px;
    box-shadow: 0 2px 10px #67e7a021;
    min-width: 210px;
    font-size: 1rem;
}

footer {
    background: #181a1d;
    color: #73fcb4;
    text-align: center;
    padding: 1.2rem 4vw;
    font-size: 0.98rem;
}
footer a {
    color: #73fcb4;
    text-decoration: underline;
}

@media (max-width: 800px) {
    .hero { flex-direction: column; text-align: center;}
    .hero-content, .hero-animation { margin: 0 auto; }
    nav { flex-direction: column; align-items: flex-start;}
    nav ul { margin-top: 1rem; }
}
