.daily-body {
    background: #e0f7fa;
    padding: 13px;
}

.daily-info {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: #555;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.8;
}

.dtabs {
    display: flex;
    margin-bottom: -2px;
    position: relative;
    z-index: 1;
    gap: 3px;
}

.dtab {
    padding: 5px 12px;
    border: 2px solid var(--dark);
    border-bottom: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    cursor: pointer;
    border-radius: 7px 7px 0 0;
    background: var(--blue);
    color: var(--dark);
}

.dtab.on {
    background: var(--lime);
}

.dstars {
    background: white;
    border: 2px solid var(--dark);
    border-radius: 0 8px 8px 8px;
    padding: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.dstar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.dstar {
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.dstar svg {
    width: 42px;
    height: 42px;
    transition: transform .2s;
    display: block;
}

.dstar:hover:not(.locked):not(.future) svg {
    transform: scale(1.15);
}

.dstar.locked {
    opacity: .45;
    cursor: not-allowed;
}

.dstar.future {
    opacity: .25;
    cursor: not-allowed;
}

.dstar-pts {
    font-family: 'Press Start 2P', monospace;
    font-size: 5px;
    color: var(--dark);
}

.dstar-day {
    font-family: 'Press Start 2P', monospace;
    font-size: 4px;
    color: #999;
}

.week-prize {
    background: linear-gradient(135deg, var(--pink), #ff9ee5);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
    border: 2px solid var(--dark);
}

.week-prize-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: white;
    margin-bottom: 4px;
}

.week-prize-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    color: white;
    font-weight: 700;
}

.week-prize-btn {
    margin-top: 6px;
    background: white;
    color: var(--pink);
    border: 2px solid var(--dark);
    border-radius: 8px;
    padding: 4px 10px;
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    cursor: pointer;
}

.week-prize-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}
