:root {
    --bg-dark: #080a0f;
    --bg-card: rgba(20, 25, 35, 0.7);
    --primary-blue: #4dabf7;
    --neon-glow: 0 0 10px rgba(77, 171, 247, 0.4), 0 0 20px rgba(77, 171, 247, 0.2);
    --text-main: #ffffff;
    --text-dim: #b0b8c4;
}

@font-face {
    font-family: 'estedad';
    src: url(/font/estedad.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'estedad';
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(77, 171, 247, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 171, 247, 0.035) 1px, transparent 1px);
    background-size: 30px 30px;
}

header {
    background: rgba(8, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(77, 171, 247, 0.2);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(77, 171, 247, 0.5);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--text-main);
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none;
}

nav a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 5px var(--primary-blue);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-blue);
    text-shadow: 0 0 15px rgba(77, 171, 247, 0.6);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 700px;
    margin-bottom: 40px;
}

.btn-neon {
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 0 10px rgba(77, 171, 247, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-neon:hover {
    background: var(--primary-blue);
    color: #000;
    box-shadow: var(--neon-glow);
    transform: scale(1.05);
}

section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-main);
}

.section-title span {
    color: var(--primary-blue);
    text-shadow: 0 0 8px rgba(77, 171, 247, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 171, 247, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 25px rgba(77, 171, 247, 0.15);
}

.product-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(77, 171, 247, 0.4);
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.project-status {
    margin-top: 15px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.yellow {
    color: #ffc118;
}

.green {
    color: #36be00;
}

.product-card .description {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 0.95rem;
}

.support-box {
    background: linear-gradient(135deg, rgba(77, 171, 247, 0.05), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(77, 171, 247, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wallet-address {
    background: #050608;
    border: 1px solid #333;
    padding: 20px;
    margin: 25px auto;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    color: var(--primary-blue);
    font-size: 1.1rem;
    max-width: 90%;
    word-break: break-all;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.wallet-address a {
    text-decoration: none;
    color: var(--primary-blue);
}

.wallet-address:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(77, 171, 247, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.member-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 40px 20px;
    border-top: 3px solid var(--primary-blue);
    transition: 0.3s;
}

.member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(77, 171, 247, 0.15);
}

.avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: #000;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(77, 171, 247, 0.2);
}

.avatar img {
    border-radius: 100%;
}

.role {
    color: var(--primary-blue);
    font-size: 0.85rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #030406;
    border-top: 1px solid #1a1f2e;
    color: #555;
}

.flex-box {
    display: flex;
}

.flex-space{
    margin: 0 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    nav ul {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
}