* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Malgun Gothic', sans-serif;
    min-height: 100vh;
}

.Menu_Title {
    display: flex;
    background: #040b1b;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #5d6488;
}
.Menu_Img {
    display: flex;
    align-items: center;
    
}
.Menu_Img img {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    border: 3px solid #5d6488;
}
.Menu_Name {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
}

/* ===== 헤더 ===== */
h1 {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid #5d6488;
    background: #09173a;
    padding: 10px;
    margin: 0px 0px 10px 0px;
}

#coin-list {
    padding: 10px;
    margin-bottom: 50px;
}

.Gimp-Legend {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.coin-block {
    background: #090b1b;
    border-radius: 5px;
    border: 1px solid #5d6488;
    margin-bottom: 10px;
}
.top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    gap: 8px;
}
.sym-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 90px;
}
.sym-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.sym-name {
    font-size: 35px;
    font-weight: 900;
    color: #fff;
}
.sym-kr {
    font-size: 11px;
    color: #9aa9be;
}
.kimp-wrap {
    text-align: center;
    flex: 1;
}
.kimp-int {
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
}
.kimp-dec {
    font-size: 25px;
    font-weight: 700;
}
.kimp-pct {
    font-size: 12px;
}
.pos { color: #10b981; }
.neg { color: #f43f5e; }
.prices {
    text-align: right;
    font-size: 11px;
    color: #cbd5e1;
    line-height: 2;
}
.prices span {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.bar-row {
    padding: 0 16px 12px;
}
.bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #cbd5e1;
    margin-bottom: 4px;
}
.bar-track {
    position: relative;
    height: 15px;
    background: #1a1f3a;
    border: 1px solid #5d6488;
    border-radius: 3px;
    overflow: hidden;
}
.bar-fill {
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.bar-zero {
    position: absolute;
    left: 20%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #334155;
}