.dashboard-panel {
    margin: 26px auto 30px;
    max-width: 860px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(0, 234, 255, 0.16), rgba(255, 217, 61, 0.10)),
        rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.22),
        inset 0 0 20px rgba(255, 255, 255, 0.04);
    text-align: left;
}

.dashboard-main {
    min-width: 0;
}

.dashboard-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--space-1);
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 217, 61, 0.16);
    color: #ffd93d;
    font-weight: 900;
    font-size: 0.82rem;
}

.dashboard-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: #ffffff;
    text-shadow: 0 0 14px rgba(0, 234, 255, 0.35);
}

.dashboard-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    line-height: 1.45;
}

.dashboard-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 180px;
}

.dashboard-play-btn,
.dashboard-profile-link {
    border: none;
    border-radius: 18px;
    padding: 14px 18px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
}

.dashboard-play-btn {
    color: #07243a;
    background: linear-gradient(180deg, #fff3a6, #ffd93d);
    box-shadow: 0 10px 22px rgba(255, 217, 61, 0.28);
}

.dashboard-profile-link {
    color: #07344a;
    background: linear-gradient(180deg, #e8fbff, #bafcff);
    box-shadow: 0 10px 22px rgba(0, 234, 255, 0.18);
}

.dashboard-play-btn:hover,
.dashboard-profile-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

@media (max-width: 768px) {
    .dashboard-panel {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: var(--space-4);
        border-radius: 22px;
    }

    .dashboard-kicker {
        justify-content: center;
    }

    .dashboard-actions {
        width: 100%;
        min-width: 0;
    }
}