#WHALE_GRID {
    background: #0d1425;
    color: #e5e7eb;
    padding: 30px;
    min-height: 100vh;
    font-family: 'Pretendard', sans-serif;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0b0e22;
    margin-bottom: 20px;
    border: 1px solid #2a3458;
    border-radius: 5px;
    padding-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
 }

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    padding: 20px 0px 0px 30px;;
}

.whale_kind {
    display: flex;
    font-size: 18px;
}
.whale_kind div {
    overflow: hidden;
    border: 1px solid #2a3458;
    background: #040b1b;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-right: 10px;
    padding: 6px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.whale_kind div:hover {
    border: 1px solid #58cdff;
    transition: 1s;
    box-shadow: 0 10px 20px rgba(19, 161, 255, 0.5);
}

.whale_Reload {
    text-align: right;
    margin: 0px 10px 10px 0px;
}

.Whale_Title {
    font-size: 80px;
    padding-left: 30px;
}

.reload-btn {
    background: linear-gradient(00deg, #0090ce, #50a4ca);
    border: 1px solid #58cdff;
    color: #fff;
    padding: 5px 18px;
    border-radius: 4px; font-weight: 500; 
    cursor: pointer;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.reload-btn:hover {
    background: linear-gradient(00deg, #00b3ff, #65ceff);
    border: 1px solid #55c2f5;
    box-shadow: 0 10px 20px rgba(34, 121, 252, 0.3);
}

.whale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.whale-block {
    background: #061329;
    border: 1px solid #2a3458;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.block-header {
    background: #040b1b;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2a3458;
}

.block-symbol {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #38bdf8;
}

.block-count {
    font-size: 11px;
    color: #555;
    font-family: 'JetBrains Mono';
}

.block-body {
    height: 175px;
    overflow-y: auto;
    padding: 8px 0;
}

.block-body::-webkit-scrollbar {
    width: 4px;
}
.block-body::-webkit-scrollbar-track {
    background: #061329;
}
.block-body::-webkit-scrollbar-thumb {
    background: #4882ff;
    border-radius: 5px;
}
.block-body::-webkit-scrollbar-thumb:hover {
    background: #0051ff;
}

.whale-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 12px;
}

.whale-row:last-child { border-bottom: none; }

.badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    min-width: 36px;
    text-align: center;
}
.bid  { background: rgba(74,222,128,0.15); color: #4ade80; }
.ask  { background: rgba(248,113,113,0.15); color: #f87171; }

.grade-tag {
    font-size: 11px;
    font-weight: 700;
    min-width: 55px;
    text-align: center;
}

.amount {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: #e5e7eb;
    text-align: right;
}
.amount.big  { color: #98ffb5; }
.amount.huge { color: #caa1ff; }
