#whale-stat {
    display: flex;
    justify-content: center;
    padding: 0px 0px 40px 0px;
}
.stat-header {
    float: left;
}

/* 부모 컨테이너를 기준점으로 설정 */
.stat-total {
    position: relative;
    width: 600px;
    height: 300px; /* 캔버스와 이미지 높이에 맞게 설정 */
}

/* 두 스팬을 공통으로 절대 위치 설정 */
.stat-total > span {
    position: absolute;
    top: 20px;
    left: 0;
    width: 500px;  /* 필요에 따라 크기 조절 */
    height: 500px;
}
.stat-total .stat-img{
    top: 150px;
    left: 80px;
}

/* 이미지가 있는 첫 번째 스팬 (아래에 깔림) */
.stat-total > span:nth-child(2) {
    z-index: 1;
}

/* 차트가 있는 두 번째 스팬 (위에 얹어짐) */
.stat-total > span:nth-child(1) {
    z-index: 2;
    /* 캔버스 배경을 투명하게 유지해야 아래 이미지가 보입니다 */
}

.stat-body {
    float: left;
    widtgh: 100vw;
    background:#1a1f3a;
    border: 1px solid #2a3458;
    border-radius: 5px;
    font-size: 20px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.stat-body-box {
    background: #040b1b;
    border: 1px solid #2a3458;
    border-radius: 5px;
    color: #dfdfdf;
    padding: 20px;
}
.stat-body .stat-row {
    border-bottom: 1px solid #162445;
    padding: 10px 20px 10px 10px;
    
}
.stat-body .stat-row img {
    width: 67px;
    margin-right: 20px;
    
}
.stat-body .stat-name {
    display: inline-block;
    width: 250px;
    font-weight: 700;    
}
.stat-body .stat-cnt {
    display: inline-block;
    width: 150px;
    text-align: right;
    margin-right: 20px;  
}
.stat-body .stat-pct {
    display: inline-block;
    width: 120px;
    text-align: right;
    margin-right: 50px;  
}
.stat-body .stat-last {
    font-size: 17px; 
}
.stat-last-label {
    color: #2b507c;
    font-size: 12px !important;
    margin-right: 10px;
}

.whale-help {
    border-top: 1px solid #2a3458;
    border-bottom: 1px solid #2a3458;
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 40px 20px;
    display: flex;          /* 가로로 나란히 배치 */
    align-items: center;    /* ★ 핵심: 높이가 달라도 세로 가운데 정렬 */
    justify-content: center;
    gap: 5px;               /* 두 상자 사이의 간격 (원하는 만큼 조절) */
}
.whale-help img {
    width: 80px;
}
.whale-help-money {
    font-size: 22px;
    font-weight: 700;
    margin-right:20px;
}

.whale-chart {
    color: #dfdfdf;
    text-align: right;
    padding: 10px 15px;
}
.whale-rotate {
    display: inline-block;
    background: #040b1b;
    border: 1px solid #2a3458;
    border-radius: 4px;
    color: #dfdfdf;
    margin: 0px 80px;
    padding: 10px 25px;
}