/* ===========================
   ARZ DIAMOND GOLD + CRYPTO PAGES
=========================== */

.page-shell{
    min-height:100vh;
    background:#07101f;
    color:#fff;
    overflow-x:hidden;
}

.page-shell:before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 12% 10%,rgba(37,99,235,.25),transparent 34%),
        radial-gradient(circle at 88% 76%,rgba(20,184,166,.16),transparent 35%);
    z-index:-1;
}

.page-main{
    padding:0 56px 80px;
    animation:pageFade .45s ease both;
}

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

.page-hero{
    padding:70px 0 42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
}

.page-hero h2{
    font-size:56px;
    line-height:1.05;
    margin:14px 0;
}

.page-hero p{
    color:#a7b4ca;
    max-width:680px;
    font-size:18px;
}

.page-pill{
    display:inline-block;
    background:#2563eb;
    padding:10px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
}

.back-link{
    display:inline-block;
    color:#9fb0ca;
    text-decoration:none;
    margin-bottom:14px;
    font-weight:700;
}

.back-link:hover{
    color:#48a6ff;
}

.page-panel{
    min-width:280px;
    border-radius:24px;
    padding:26px;
    background:linear-gradient(180deg,rgba(28,36,58,.95),rgba(19,27,45,.95));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.page-panel span{
    color:#9fb0ca;
}

.page-panel strong{
    display:block;
    font-size:34px;
    color:#48a6ff;
    margin:12px 0;
}

.market-page-section{
    padding:30px 0;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(245px,1fr));
    gap:20px;
}

.asset-card{
    position:relative;
    min-height:250px;
    border-radius:24px;
    padding:22px;
    background:linear-gradient(180deg,#1a2237,#151c2f);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.32);
    overflow:hidden;
    transition:.28s;
}

.asset-card:hover{
    transform:translateY(-7px);
    border-color:#48a6ff;
}

.asset-top{
    display:flex;
    align-items:center;
    gap:13px;
    padding-right:78px;
    margin-bottom:24px;
}

.asset-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#fff;
    font-size:28px;
    flex-shrink:0;
}

.asset-top h3{
    font-size:17px;
}

.asset-top span{
    color:#8d9bb4;
    font-size:12px;
    letter-spacing:.5px;
}

.asset-value{
    font-size:28px;
    font-weight:800;
    margin-bottom:52px;
    line-height:1.15;
}

.asset-change{
    position:absolute;
    top:18px;
    right:18px;
    font-size:12px;
    font-weight:800;
    padding:5px 8px;
    border-radius:8px;
    background:rgba(30,230,111,.14);
    color:#1ee66f;
}

.asset-change.down{
    background:rgba(239,68,68,.15);
    color:#ff6b6b;
}

.sparkline{
    position:absolute;
    left:18px;
    right:18px;
    bottom:12px;
    width:calc(100% - 36px);
    height:58px;
    background:linear-gradient(180deg,rgba(30,230,111,.16),transparent);
    border-radius:12px;
}

.sparkline polyline{
    fill:none;
    stroke:#1ee66f;
    stroke-width:3.5;
    stroke-linecap:round;
    stroke-linejoin:round;
    filter:drop-shadow(0 0 6px rgba(30,230,111,.55));
}

@media(max-width:900px){
    .page-main{padding:0 20px 60px}
    .page-hero{flex-direction:column;align-items:flex-start}
    .page-hero h2{font-size:40px}
    .page-panel{width:100%;min-width:0}
}
