* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}
body {
    background:radial-gradient(circle at top left, #06111f, #020814 65%);
    color:white;
    min-height:100vh;
    padding:40px 20px;
}
.dashboard {
    max-width:1100px;
    margin:auto;
}
.hero {
    margin-bottom:40px;
}
.brand {
    color:#00eaff;
    font-size:1.4rem;
    font-weight:700;
}
.hero h1 {
    font-size:clamp(2.5rem, 5vw, 4.5rem);
    line-height:1.1;
    margin:12px 0;
    font-weight:800;
}
.hero p {
    color:rgba(255, 255, 255, 0.75);
    font-size:1.1rem;
    max-width:700px;
    line-height:1.7;
}
.stats-container {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    margin-bottom:45px;
}
.stat-box {
    background:rgba(0, 20, 40, 0.45);
    border:1px solid rgba(0, 234, 255, 0.25);
    border-radius:28px;
    padding:30px 25px;
    backdrop-filter:blur(12px);
    box-shadow:0 0 25px rgba(0, 234, 255, 0.12);
    transition:0.3s ease;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
.stat-box:hover {
    transform:translateY(-6px);
    box-shadow:0 0 30px rgba(0, 234, 255, 0.25);
}
.icon {
    width:72px;
    height:72px;
    min-height:72px;
    border-radius:50%;
    border:2px solid #00eaff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00eaff;
    font-size:2rem;
    margin-bottom:22px;
    box-shadow:0 0 20px rgba(0, 234, 255, 0.25);
}
.stat-box h3 {
    color:#00eaff;
    font-size:1.1rem;
    margin-bottom:12px;
    font-weight:600;
}
.stat-box h2 {
    font-size:3rem;
    font-weight:800;
    margin-bottom:10px;
    line-height:1;
}
.stat-box p {
    color:rgba(255, 255, 255, 0.65);
    font-size:1rem;
    line-height:1.5;
}
.holdings-box {
    background:rgba(0, 20, 40, 0.4);
    border:1px solid rgba(0, 234, 255, 0.25);
    border-radius:28px;
    padding:30px;
    backdrop-filter:blur(12px);
    box-shadow:0 0 25px rgba(0, 234, 255, 0.12);
    margin-bottom:35px;
}
.holding-box h2 {
    font-size:2rem;
    margin-bottom:25px;
    font-weight:700;
}
.coin-list {
    display:flex;
    flex-direction:column;
    gap:14px;
}
.coint-item {
    display:flex;
    align-items:center;
    justify-content: space-between;
    border-bottom:1px solid rgba(255, 255, 255, 0.08);
    padding:18px 12px;
    width:100%;
}
.coin-item:hover {
    background:rgba(0, 234, 255, 0.06);
}
.coin-item:last-child {
    border-bottom:none;
}
.coin-left {
    display:flex;
    align-items:center;
    gap:15px;
}
.coin-left div {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
.coin-left span {
    font-size:1.15rem;
    font-weight:600;
    color:white;
}
.coin-left strong {
    margin-top:6px;
    justify-content: flex-end;
    color:#00eaff;
    font-size:1.2rem;
    font-weight:700;
}
.coin-left img {
    width:48px;
    height:48px;
    object-fit:contain;
}
.coin-left span {
    font-size:1.05rem;
    font-weight:500;
}
.footer-note {
    display:flex;
    align-items:center;
    gap:18px;
    background:rgba(0, 20, 40, 0.45);
    border:1px solid rgba(0, 234, 255, 0.25);
    border-radius:24px;
    padding:22px 24px;
    box-shadow:0 0 20px rgba(0, 234, 255, 0.08);
}
.shield {
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #00eaff;
    color:#00eaff;
    font-size:1.8rem;
}
.footer-note h3 {
    font-size:1.3rem;
    margin-bottom:4px;
}
.footer-note p {
    color:rgba(255, 255, 255, 0.75);
}
.footer-note small {
    color:rgba(255, 255, 255, 0.5);
}
@media(max-width:786px) {
    body {
        padding:25px 15px;
    }
    .hero h1 {
        font-size:2.5rem;
    }
    .holdings-box h2 {
        font-size:1.4rem;
    }
    .coin-left span {
        font-size:0.9rem;
    }
    .coin-item strong {
        font-size:1rem;
    }
    .footer-note {
        flex-direction:column;
        align-items:flex-start;
    }
}
.navbar {
   position:fixed;
   bottom:20px;
   left:50%;
   transform:translateX(-50%);
   width:88%;
   max-width:430px;
   z-index:9999;
   display:flex;
   justify-content:center;
   padding:12px;
   background:rgba(10, 10, 10, 0.70);
   backdrop-filter:blur(14px);
   border-radius:30px;
   border:1px solid rba(255, 255, 255, 0.05);
   box-shadow:0 10px 35px rgba(0, 0, 0, 0.45);
}
.nav-links {
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    list-style:none;
    padding:0;
    margin:0;
}
.nav-links li {
    flex:1;
}
.nav-links li a {
    display:block;
    text-align:center;
    text-decoration:none;
    color:white;
    font-size:16px;
    font-weight:600;
    padding:15px 0;
    border-radius:20px;
    transition:0.3s ease;
}
.nav-links li a:hover {
    color:#19e3ff;
}
.nav-links li a::before {
    content:'';
    position:relative;
    inset:0;
    border-radius:14px;
    background:rgba(121, 247, 255, 0.08);
    opacity:0;
    transition:0.3s;
    z-index:-1;
}
.nav-links li a:hover::before {
    opacity:1;
    box-shadow:0 0 15px rgba(121, 247, 255, 0.5), 0 0 35px rgba(121, 247, 255, 0.3);
}
.nav-links .active {
    background:rgba(0, 255, 255, 0.14);
    color:#19e3ff;
    box-shadow:0 0 18px rgba(25, 227, 255, 0.35);
}
@media(max-width:900px) {
    .navbar {
        flex-direction:column;
        gap:25px;
    }
    .nav-links {
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }
    .nav-links li a {
        font-size:16px;
        padding:12px 20px;
    }
}