.eat-trend-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 35px;
    margin: 35px 0;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.12);
    border: 1px solid #e0e7ff;
    position: relative;
    overflow: hidden;
}

.eat-trend-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, #4f46e5, #7c3aed);
}

.eat-trend-box h2 {
    margin: 0 0 18px 0;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e2937;
}

.eat-trend-box .rating-value {
    font-size: 3.8rem;
    font-weight: 800;
    color: #4f46e5;
    line-height: 1;
}

.eat-trend-box p {
    font-size: 1.08rem;
    color: #475569;
    line-height: 1.65;
    margin: 14px 0;
}

.eat-leaderboard {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.eat-leaderboard th {
    background: #f1f5f9;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #334155;
    font-size: 1.05rem;
}

.eat-leaderboard td {
    padding: 22px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.eat-leaderboard tr:hover {
    background: #f8fafc;
    transition: background 0.2s;
}

.eat-leaderboard .rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
    width: 70px;
}

.eat-leaderboard .artist-name a {
    font-weight: 600;
    color: #1e2937;
    text-decoration: none;
}

.eat-leaderboard .artist-name a:hover {
    color: #4f46e5;
}

.eat-leaderboard .rating {
    font-size: 1.6rem;
    font-weight: 800;
    color: #4f46e5;
    text-align: center;
}

@media (max-width: 768px) {
    .eat-trend-box h2 { font-size: 1.9rem; }
    .eat-trend-box .rating-value { font-size: 3rem; }
}