*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
        linear-gradient(rgba(15,23,42,.65), rgba(30,41,59,.65)),
        url("../images/tenkai.webp") center/cover no-repeat fixed;
    color:white;
    font-family: "Comic Neue", cursive;   
}

.card{
    width:420px;
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.avatar{
    width:110px;
    height:110px;
    display:block;
    margin:0 auto 18px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #4fc3f7;
    box-shadow:0 0 20px rgba(79,195,247,.5);
}

h1{
    text-align:center;
    margin-bottom:8px;
    font-size:28px;
}

.username{
    text-align:center;
    color:#7dd3fc;
    margin-bottom:25px;
    word-break:break-all;
}

.info{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
    font-size:16px;
}

.stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin:25px 0;
}

.box{
    text-align:center;
    padding:18px;
    border-radius:14px;
    background:rgba(255,255,255,.06);
}

.box h2{
    font-size:34px;
    margin-bottom:8px;
}

.flop-box h2{
    color:#ff6b6b;
}

.viral-box h2{
    color:#4ade80;
}

.footer{
    margin-top:20px;
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

.cooldown-link{
    color:#7dd3fc;
    text-decoration:none;
    font-weight:bold;
    transition:all .2s ease;
    padding:2px 6px;
    border-radius:6px;
}

.cooldown-link:hover{
    color:#ffffff;
    background:rgba(125,211,252,.25);
    box-shadow:0 0 10px rgba(125,211,252,.4);
}

.cooldown-link:active{
    transform:scale(0.96);
}

.cooldown-link:focus{
    outline:2px solid #7dd3fc;
    outline-offset:2px;
}

.description{
    line-height:1.8;
    font-size:16px;
}

.description h2{
    margin-bottom:15px;
    text-align:center;
    color:#7dd3fc;
}

.description p{
    margin:16px 0;
    text-align:justify;
}

.sample-image{
    margin:20px 0;
    text-align:center;
}

.sample-image img{
    width:100%;
    max-width:350px;
    border-radius:12px;
    border:2px solid rgba(255,255,255,.15);
    box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.image-caption{
    margin-top:10px;
    font-size:14px;
    color:#b8c4d6;
    font-style:italic;
}

.description ul{
    margin:15px 0 20px 25px;
}

.description li{
    margin:8px 0;
    }

.menu{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:25px;
}

.menu-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:white;
    background:rgba(255,255,255,.06);
    padding:18px;
    border-radius:14px;
    transition:.25s;
    border:1px solid rgba(255,255,255,.08);
}

.menu-card:hover{
    background:rgba(125,211,252,.15);
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.25);
}

.menu-card h2{
    font-size:20px;
    margin-bottom:6px;
}

.menu-card p{
    color:#cbd5e1;
    font-size:14px;
}

.menu-card span{
    font-size:28px;
    color:#7dd3fc;
}
